From 4f4502f981fe43e0140f5b1db5930c74f414f9eb Mon Sep 17 00:00:00 2001 From: MatteoPistorello Date: Thu, 12 May 2022 15:44:30 +0200 Subject: [PATCH] =?UTF-8?q?Aggiunto=20controllo=20su=20fattura=20gi=C3=A0?= =?UTF-8?q?=20importata?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/importFE/src/FatturaElettronica.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/importFE/src/FatturaElettronica.php b/plugins/importFE/src/FatturaElettronica.php index 67eed3b4f..265f2c51b 100755 --- a/plugins/importFE/src/FatturaElettronica.php +++ b/plugins/importFE/src/FatturaElettronica.php @@ -77,7 +77,7 @@ class FatturaElettronica 'data' => $data, ])->first(); - if (!empty($fattura)) { + if (!empty($fattura) && $fattura->tipo->dir == 'uscita') { throw new UnexpectedValueException(); } }