From 4d49a5229604bbe21f084bc01ca4169c8cdbf7e0 Mon Sep 17 00:00:00 2001 From: Pek5892 Date: Mon, 25 Mar 2024 15:29:25 +0100 Subject: [PATCH] Fix minore --- plugins/exportFE/src/FatturaElettronica.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/exportFE/src/FatturaElettronica.php b/plugins/exportFE/src/FatturaElettronica.php index b2d51bf95..30508c65b 100755 --- a/plugins/exportFE/src/FatturaElettronica.php +++ b/plugins/exportFE/src/FatturaElettronica.php @@ -68,8 +68,10 @@ class FatturaElettronica // Controllo sulla possibilità di creare la fattura elettronica // Posso fatturare ai privati utilizzando il codice fiscale - if ($this->documento->stato->getTranslation('name') == 'Bozza') { - throw new \UnexpectedValueException(); + if ($this->documento->stato) { + if ($this->documento->stato->getTranslation('name') == 'Bozza') { + throw new \UnexpectedValueException(); + } } }