1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-27 00:06:14 +01:00

Fix emissione fatture non fiscali da bulk

This commit is contained in:
MatteoPistorello 2022-09-14 16:22:35 +02:00
parent 8254ade2a1
commit 97189c42ab

View File

@ -464,7 +464,7 @@ switch (post('op')) {
$fattura = Fattura::find($id);
$stato_precedente = Stato::find($fattura->idstatodocumento);
if ($stato_precedente->descrizione == 'Bozza') {
if ($stato_precedente->descrizione == 'Bozza' && $fattura->isFiscale()) {
$fattura->stato()->associate($new_stato);
$results = $fattura->save();
$message = '';