diff --git a/templates/fatture/footer.php b/templates/fatture/footer.php
old mode 100644
new mode 100755
index 1eae9dc10..21512e1e7
--- a/templates/fatture/footer.php
+++ b/templates/fatture/footer.php
@@ -157,6 +157,34 @@ if (!empty($sconto)) {
';
+ // Rivalsa INPS
+ if ($records[0]['rivalsainps'] != 0) {
+ $rs2 = $dbo->fetchArray('SELECT percentuale FROM co_rivalsainps WHERE id=(SELECT idrivalsainps FROM co_righe_documenti WHERE iddocumento='.prepare($iddocumento).' AND idrivalsainps!=0 LIMIT 0,1)');
+
+ echo "
+
+
+ ".tr("Rivalsa INPS _PRC_%", [
+ '_PRC_' => Translator::numberToLocale($rs2[0]['percentuale'], 0),
+ ], ['upper' => true])."
+ |
+
+
+ ".tr('Totale documento', [], ['upper' => true])."
+ |
+
+
+
+
+ ".Translator::numberToLocale($records[0]['rivalsainps'])." €
+ |
+
+
+ ".Translator::numberToLocale($totale + $records[0]['rivalsainps']).' €
+ |
+
';
+ }
+
// Ritenuta d'acconto
if ($records[0]['ritenutaacconto'] != 0) {
$rs2 = $dbo->fetchArray('SELECT percentuale FROM co_ritenutaacconto WHERE id=(SELECT idritenutaacconto FROM co_righe_documenti WHERE iddocumento='.prepare($iddocumento).' AND idritenutaacconto!=0 LIMIT 0,1)');