2017-08-04 16:28:16 +02:00
|
|
|
<?php
|
|
|
|
|
2020-09-23 13:36:37 +02:00
|
|
|
if (file_exists(base_dir().'/lib/jscripts/fullcalendar.min.js')) {
|
|
|
|
delete(base_dir().'/lib/jscripts/fullcalendar.min.js');
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
2017-08-30 14:43:38 +02:00
|
|
|
// Riporto su ogni riga della fattura la relativa rivalsa inps e ritenuta d'acconto se impostate
|
2018-07-09 10:44:54 +02:00
|
|
|
$rivalsainps = $dbo->fetchArray("SELECT valore FROM zz_impostazioni WHERE nome='Percentuale rivalsa INPS'")[0]['valore'];
|
|
|
|
$ritenuta = $dbo->fetchArray("SELECT valore FROM zz_impostazioni WHERE nome='Percentuale ritenuta d''acconto'")[0]['valore'];
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
$rs = $dbo->fetchArray('SELECT id FROM co_documenti');
|
|
|
|
|
|
|
|
for ($i = 0; $i < sizeof($rs); ++$i) {
|
|
|
|
if ($rivalsainps != '') {
|
2018-07-09 10:44:54 +02:00
|
|
|
$dbo->query('UPDATE co_righe_documenti SET idrivalsainps="'.$rivalsainps.'", rivalsainps=( (subtotale-sconto) /100 * 4 ) WHERE iddocumento="'.$rs[$i]['id'].'"');
|
2017-08-04 16:28:16 +02:00
|
|
|
} else {
|
|
|
|
$dbo->query('UPDATE co_righe_documenti SET idrivalsainps="0", rivalsainps=0 WHERE iddocumento="'.$rs[$i]['id'].'"');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($ritenuta != '') {
|
2018-07-09 10:44:54 +02:00
|
|
|
$dbo->query('UPDATE co_righe_documenti SET idritenutaacconto="'.$ritenuta.'", ritenutaacconto=( (subtotale+rivalsainps-sconto) /100 * 20 ) WHERE iddocumento="'.$rs[$i]['id'].'"');
|
2017-08-04 16:28:16 +02:00
|
|
|
} else {
|
|
|
|
$dbo->query('UPDATE co_righe_documenti SET idritenutaacconto="0", ritenutaacconto=0 WHERE iddocumento="'.$rs[$i]['id'].'"');
|
|
|
|
}
|
|
|
|
}
|