diff --git a/editor.php b/editor.php
index fe815d71c..324deb236 100755
--- a/editor.php
+++ b/editor.php
@@ -119,13 +119,14 @@ if (empty($record) || !$has_access) {
$( document ).ready(function() {';
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 '
$(".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");
+
});
});
diff --git a/modules/fatture/row-list.php b/modules/fatture/row-list.php
index e7b5e7b53..03a7513a3 100755
--- a/modules/fatture/row-list.php
+++ b/modules/fatture/row-list.php
@@ -80,7 +80,8 @@ foreach ($righe as $riga) {
'_RIVALSA_' => $riga->rivalsa_inps ? '
Rivalsa: '.moneyFormat(abs($riga->rivalsa_inps)) : null,
'_RITENUTA_ACCONTO_' => $riga->ritenuta_acconto ? '
Ritenuta acconto: '.moneyFormat(abs($riga->ritenuta_acconto)) : null,
'_RITENUTA_CONTRIBUTI_' => $riga->ritenuta_contributi ? '
Ritenuta contributi: '.moneyFormat(abs($riga->ritenuta_contributi)) : null,
- '_DESCRIZIONE_CONTO_' => $descrizione_conto ?: null,
+ '_DESCRIZIONE_CONTO_' => $descrizione_conto ?: '
+ '.tr("Conto mancante").'',
'_ID_DOCUMENTO_' => $id_documento_fe ? ' - DOC: '.$id_documento_fe : null,
'_NUMERO_RIGA_' => $num_item ? ', NRI: '.$num_item : null,
'_CODICE_CIG_' => $codice_cig ? ', CIG: '.$codice_cig : null,