1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-19 02:31:22 +01:00

Fix minore

This commit is contained in:
Pek5892 2024-03-25 15:29:25 +01:00
parent 0091fca368
commit 4d49a52296

View File

@ -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();
}
}
}