1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-25 23:33:02 +01:00

Fix generazione numero in passaggio da Fattura pro-forma

This commit is contained in:
Thomas Zilio 2020-03-06 17:28:00 +01:00
parent 57160e8b6b
commit c432bc0fb7

View File

@ -158,7 +158,9 @@ class Fattura extends Document
$this->numero = static::getNextNumero($data, $direzione, $value);
if (!empty($previous)) {
if ($this->stato->descrizione == 'Bozza') {
$this->numero_esterno = null;
} elseif (!empty($previous)) {
$this->numero_esterno = static::getNextNumeroSecondario($data, $direzione, $value);
}
}