From cbc5044fa0ae9450164bb326bef18dbc61b8eca1 Mon Sep 17 00:00:00 2001 From: MatteoPistorello Date: Thu, 17 Feb 2022 16:22:27 +0100 Subject: [PATCH] Fix generazione causale in fase di registrazione scadenze --- modules/primanota/add.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/primanota/add.php b/modules/primanota/add.php index e5189f35b..9948a3aeb 100755 --- a/modules/primanota/add.php +++ b/modules/primanota/add.php @@ -126,10 +126,10 @@ foreach ($id_documenti as $id_documento) { continue; } - if (empty($id_anagrafica_movimenti)) { + if ($id_anagrafica_movimenti == null) { $id_anagrafica_movimenti = $fattura->idanagrafica; } elseif ($fattura->idanagrafica != $id_anagrafica_movimenti) { - $id_anagrafica_movimenti = null; + $id_anagrafica_movimenti = 0; } $numeri_fatture[] = !empty($fattura['numero_esterno']) ? $fattura['numero_esterno'] : $fattura['numero']; @@ -204,7 +204,7 @@ if ($numero_documenti + $numero_scadenze > 1) { $descrizione = $is_ultimo_importo_avere ? tr('Inc. fatture _NAME_ num. _LIST_') : tr('Pag. fatture _NAME_ num. _LIST_'); $descrizione = replace($descrizione, [ - '_NAME_' => $anagrafica_movimenti->ragione_sociale, + '_NAME_' => $anagrafica_movimenti->ragione_sociale ?: '', '_LIST_' => implode(', ', $numeri_fatture), ]); } else {