Aggiunta colonna scalare su piano dei conti

This commit is contained in:
Matteo 2021-01-26 10:46:01 +01:00
parent bb346c9318
commit ba0d9fcedf
2 changed files with 11 additions and 1 deletions

View File

@ -44,8 +44,11 @@ if (!empty($movimenti)) {
<th width="100">'.tr('Data').'</th>
<th width="100">'.tr('Dare').'</th>
<th width="100">'.tr('Avere').'</th>
<th width="100">'.tr('Scalare').'</th>
</tr>';
$scalare = 0;
// Elenco righe del partitario
foreach ($movimenti as $movimento) {
echo '
@ -87,6 +90,13 @@ if (!empty($movimenti)) {
</td>';
}
$scalare += $movimento['totale'];
echo '
<td class="text-right">
'.moneyFormat($scalare, 2).'
</td>';
echo '
</tr>';
}

View File

@ -9,7 +9,7 @@ UPDATE `dt_causalet` SET `reversed`=1 WHERE `descrizione`='Reso';
ALTER TABLE `mg_movimenti` ADD INDEX(`idarticolo`);
-- Aggiunta possibilità di scegliere uno stato dopo la firma anche se non ha il flag completato
UPDATE `zz_settings` SET `tipo`='query=SELECT idstatointervento AS id, descrizione AS text FROM in_statiintervento' WHERE `nome`='Stato dell''attività dopo la firma'
UPDATE `zz_settings` SET `tipo`='query=SELECT idstatointervento AS id, descrizione AS text FROM in_statiintervento' WHERE `nome`='Stato dell''attività dopo la firma';
-- Aggiunto filtro N3.% nella scelta aliquota per le dichiarazioni d'intento
UPDATE `zz_settings` SET `tipo` = 'query=SELECT id, descrizione FROM `co_iva` WHERE codice_natura_fe LIKE \'N3.%\' AND deleted_at IS NULL ORDER BY descrizione ASC' WHERE `zz_settings`.`nome` = 'Iva per lettere d''intento';