1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-23 12:29:58 +01:00

Migliorie minori

This commit is contained in:
Luca 2020-10-29 13:23:47 +01:00
parent f17324dd39
commit 5fe1a5cf59
2 changed files with 5 additions and 3 deletions

View File

@ -119,13 +119,14 @@ if (empty($record) || !$has_access) {
$( document ).ready(function() {'; $( document ).ready(function() {';
if (!empty($hide_left_sidebar)){ if (!empty($hide_left_sidebar)){
echo ' $(".control-sidebar").removeClass("control-sidebar-shown"); $("aside.content-wrapper").toggleClass("with-control-sidebar");'; echo ' $(".control-sidebar").removeClass("control-sidebar-shown"); $("aside.content-wrapper, .main-footer").toggleClass("with-control-sidebar");';
} }
echo ' echo '
$(".control-sidebar-toggle").bind("click", function() { $(".control-sidebar-toggle").bind("click", function() {
$("aside.content-wrapper").toggleClass("with-control-sidebar"); $("aside.content-wrapper, .main-footer").toggleClass("with-control-sidebar");
$(".control-sidebar").toggleClass("control-sidebar-shown"); $(".control-sidebar").toggleClass("control-sidebar-shown");
}); });
}); });

View File

@ -80,7 +80,8 @@ foreach ($righe as $riga) {
'_RIVALSA_' => $riga->rivalsa_inps ? '<br>Rivalsa: '.moneyFormat(abs($riga->rivalsa_inps)) : null, '_RIVALSA_' => $riga->rivalsa_inps ? '<br>Rivalsa: '.moneyFormat(abs($riga->rivalsa_inps)) : null,
'_RITENUTA_ACCONTO_' => $riga->ritenuta_acconto ? '<br>Ritenuta acconto: '.moneyFormat(abs($riga->ritenuta_acconto)) : null, '_RITENUTA_ACCONTO_' => $riga->ritenuta_acconto ? '<br>Ritenuta acconto: '.moneyFormat(abs($riga->ritenuta_acconto)) : null,
'_RITENUTA_CONTRIBUTI_' => $riga->ritenuta_contributi ? '<br>Ritenuta contributi: '.moneyFormat(abs($riga->ritenuta_contributi)) : null, '_RITENUTA_CONTRIBUTI_' => $riga->ritenuta_contributi ? '<br>Ritenuta contributi: '.moneyFormat(abs($riga->ritenuta_contributi)) : null,
'_DESCRIZIONE_CONTO_' => $descrizione_conto ?: null, '_DESCRIZIONE_CONTO_' => $descrizione_conto ?: '<span class="label label-danger" ><i class="fa fa-exclamation-triangle"></i>
'.tr("Conto mancante").'</span>',
'_ID_DOCUMENTO_' => $id_documento_fe ? ' - DOC: '.$id_documento_fe : null, '_ID_DOCUMENTO_' => $id_documento_fe ? ' - DOC: '.$id_documento_fe : null,
'_NUMERO_RIGA_' => $num_item ? ', NRI: '.$num_item : null, '_NUMERO_RIGA_' => $num_item ? ', NRI: '.$num_item : null,
'_CODICE_CIG_' => $codice_cig ? ', CIG: '.$codice_cig : null, '_CODICE_CIG_' => $codice_cig ? ', CIG: '.$codice_cig : null,