Merge branch 'master' of https://github.com/devcode-it/openstamanager
This commit is contained in:
commit
9b583a7259
|
@ -0,0 +1,114 @@
|
|||
<?php
|
||||
/*
|
||||
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
||||
* Copyright (C) DevCode s.r.l.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
include_once __DIR__.'/../../../core.php';
|
||||
|
||||
use Carbon\Carbon;
|
||||
|
||||
// Trovo id_print della stampa
|
||||
$id_print = Prints::getPrints()['Stampa calendario settimanale'];
|
||||
|
||||
echo '
|
||||
<form action="" method="post" onsubmit="if($(this).parsley().validate()) { return stampa_calendario(); }" >
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
{[ "type": "text", "label": "'.tr('Settimana').'", "name": "date", "required": "1" ]}
|
||||
</div>
|
||||
|
||||
<div class="col-md-2">
|
||||
{[ "type": "select", "label": "'.tr('Formato').'", "name": "format", "required": "1", "values": "list=\"A4\": \"'.tr('A4').'\", \"A3\": \"'.tr('A3').'\"", "value": "'.$_SESSION['dashboard']['format'].'" ]}
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
{[ "type": "select", "label": "'.tr('Orientamento').'", "name": "orientation", "required": "1", "values": "list=\"L\": \"'.tr('Orizzontale').'\"", "value": "'.$_SESSION['dashboard']['orientation'].'" ]}
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-md-2">
|
||||
<p style="line-height:14px;"> </p>
|
||||
|
||||
<button type="submit" class="btn btn-primary btn-block">
|
||||
<i class="fa fa-print"></i> '.tr('Stampa').'
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
<script>$(document).ready(init)</script>';
|
||||
|
||||
echo '
|
||||
<script>
|
||||
function stampa_calendario (){
|
||||
window.open(globals.rootdir + "/pdfgen.php?id_print='.$id_print.'");
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
$("#format").change(function() {
|
||||
session_set("dashboard,format", $(this).val(), 0, 0);
|
||||
});
|
||||
|
||||
$("#orientation").change(function() {
|
||||
session_set("dashboard,orientation", $(this).val(), 0, 0);
|
||||
});
|
||||
</script>';
|
||||
|
||||
?>
|
||||
|
||||
<style>
|
||||
|
||||
.bootstrap-datetimepicker-widget tr:hover {
|
||||
background-color: #eeeeee;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
<script>
|
||||
|
||||
$(function() {
|
||||
|
||||
moment.updateLocale('en', {
|
||||
week: { dow: 1 } // Monday is the first day of the week
|
||||
});
|
||||
|
||||
moment.updateLocale('it', {
|
||||
week: { dow: 1 } // Monday is the first day of the week
|
||||
});
|
||||
|
||||
$("#date").datetimepicker({
|
||||
format: 'DD/MM/YYYY',
|
||||
});
|
||||
|
||||
//Get the value of Start and End of Week
|
||||
$('#date').on('dp.change', function (e) {
|
||||
value = $("#date").val();
|
||||
firstDate = moment(value, "DD/MM/YYYY").day(1).format("DD/MM/YYYY");
|
||||
lastDate = moment(value, "DD/MM/YYYY").day(7).format("DD/MM/YYYY");
|
||||
$("#date").val(firstDate + " - " + lastDate);
|
||||
|
||||
session_set("dashboard,date_week_start", moment(firstDate, "DD/MM/YYYY").format("YYYY-MM-DD"), 0, 0);
|
||||
session_set("dashboard,date_week_end", moment(lastDate, "DD/MM/YYYY").format("YYYY-MM-DD"), 0, 0);
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
|
@ -0,0 +1,155 @@
|
|||
<?php
|
||||
/*
|
||||
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
||||
* Copyright (C) DevCode s.r.l.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
use Carbon\Carbon;
|
||||
|
||||
?>
|
||||
<style type="text/css">
|
||||
.divTable
|
||||
{
|
||||
display: table;
|
||||
width:auto;
|
||||
background-color:#eee;
|
||||
border:1px solid #666666;
|
||||
border-spacing:5px;/*cellspacing:poor IE support for this*/
|
||||
/* border-collapse:separate;*/
|
||||
}
|
||||
|
||||
.divRow
|
||||
{
|
||||
display:table-row;
|
||||
width:auto;
|
||||
}
|
||||
|
||||
.divCell
|
||||
{
|
||||
float:left;/*fix for buggy browsers*/
|
||||
display:table-column;
|
||||
width:147px;
|
||||
background-color:#ccc;
|
||||
}
|
||||
</style>
|
||||
<?php
|
||||
|
||||
$calendar = $_SESSION['dashboard'];
|
||||
|
||||
$date_start = $calendar['date_week_start'];
|
||||
$date_end = date('Y-m-d', strtotime('+1 day', strtotime($calendar['date_week_end'])));
|
||||
|
||||
$title = date('d/m/Y', strtotime($date_start))." - ".date('d/m/Y', strtotime($date_end));
|
||||
|
||||
$min_date = new Carbon($date_start);
|
||||
$max_date = new Carbon($date_end);
|
||||
|
||||
$stati = (array) $calendar['idstatiintervento'];
|
||||
$tipi = (array) $calendar['idtipiintervento'];
|
||||
$tecnici = (array) $calendar['idtecnici'];
|
||||
|
||||
$query = "SELECT
|
||||
DATE(orario_inizio) AS data,
|
||||
in_interventi.richiesta AS richiesta,
|
||||
DATE_FORMAT(orario_inizio, '%H:%i') AS ora_inizio,
|
||||
DATE_FORMAT(orario_fine, '%H:%i') AS ora_fine,
|
||||
(SELECT ragione_sociale FROM an_anagrafiche WHERE idanagrafica=in_interventi.idanagrafica) AS anagrafica,
|
||||
GROUP_CONCAT((SELECT ragione_sociale FROM an_anagrafiche WHERE idanagrafica=in_interventi_tecnici.idtecnico) SEPARATOR ', ') AS tecnico,
|
||||
in_statiintervento.colore AS color
|
||||
FROM in_interventi_tecnici
|
||||
INNER JOIN in_interventi ON in_interventi_tecnici.idintervento=in_interventi.id
|
||||
LEFT OUTER JOIN in_statiintervento ON in_interventi.idstatointervento=in_statiintervento.idstatointervento
|
||||
WHERE ".$where.'
|
||||
idtecnico IN('.implode(',', $tecnici).') AND
|
||||
in_interventi.idstatointervento IN('.implode(',', $stati).') AND
|
||||
in_interventi_tecnici.idtipointervento IN('.implode(',', $tipi).') '.Modules::getAdditionalsQuery('Interventi').'
|
||||
GROUP BY in_interventi.id, data
|
||||
ORDER BY ora_inizio ASC';
|
||||
$sessioni = $dbo->fetchArray($query);
|
||||
|
||||
$sessioni = collect($sessioni)->groupBy('data');
|
||||
|
||||
// Intestazione tabella
|
||||
echo '
|
||||
<h3 class="text-bold">'.tr('Calendario _PERIOD_', [
|
||||
'_PERIOD_' => $title,
|
||||
], ['upper' => true]).'</h3>';
|
||||
|
||||
// Elenco per la gestione
|
||||
$list = [];
|
||||
|
||||
// Filler per i giorni non inclusi della settimana iniziale
|
||||
$current_day = $min_date;
|
||||
|
||||
// Elenco del periodo indicato
|
||||
while ($current_day->lessThan($max_date)) {
|
||||
$list[] = [
|
||||
'date' => $current_day->copy(),
|
||||
'contents' => $sessioni[$current_day->toDateString()] ?: [],
|
||||
];
|
||||
|
||||
$current_day->addDay();
|
||||
}
|
||||
|
||||
// Stampa della tabella
|
||||
echo '
|
||||
<div class="divTable">';
|
||||
|
||||
$count = count($list);
|
||||
for ($i = 0; $i < $count; $i = $i + 7) {
|
||||
echo '
|
||||
<div class="divRow">';
|
||||
|
||||
for ($c = 0; $c < 7; ++$c) {
|
||||
$element = $list[$i + $c];
|
||||
|
||||
echo '
|
||||
<div class="divCell" align="center">'.ucfirst($element['date']->formatLocalized('%A %d/%m')).'</div>';
|
||||
}
|
||||
|
||||
echo '
|
||||
</div>';
|
||||
|
||||
echo '
|
||||
<div class="divRow">';
|
||||
|
||||
for ($c = 0; $c < 7; ++$c) {
|
||||
$element = $list[$i + $c];
|
||||
|
||||
$clienti = '';
|
||||
foreach ($element['contents'] as $sessione) {
|
||||
$clienti .= '<table><tr><td style="background-color:'.$sessione['color'].';font-size:8pt;">'.$sessione['ora_inizio'].' - '.$sessione['ora_fine'].'</small><br><b>'.$sessione['anagrafica'].'</b><br>
|
||||
<i>'.$sessione['richiesta'].'</i><small>'.$sessione['tecnico'].'</td></tr></table>';
|
||||
}
|
||||
|
||||
$background = '#ffffff';
|
||||
|
||||
if (empty($clienti)) {
|
||||
$background = 'lightgray';
|
||||
}
|
||||
|
||||
echo '
|
||||
<div class="divCell" style="background:'.$background.'">'.(!empty($clienti)?$clienti:' ').'</div>';
|
||||
}
|
||||
|
||||
echo '
|
||||
</div>';
|
||||
}
|
||||
|
||||
echo '
|
||||
</div>';
|
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
/*
|
||||
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
||||
* Copyright (C) DevCode s.r.l.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
echo '
|
||||
<!-- Intestazione fornitore -->
|
||||
<div class="row">
|
||||
<div class="col-xs-6">
|
||||
<p><b>$f_ragionesociale$</b></p>
|
||||
<p>$f_indirizzo$ $f_citta_full$</p>
|
||||
<p>'.(!empty($f_piva) ? tr('P.Iva').': ' : '').'$f_piva$</p>
|
||||
<p>'.(!empty($f_codicefiscale) ? tr('C.F.').': ' : '').'$f_codicefiscale$</p>
|
||||
<p>'.(!empty($f_capsoc) ? tr('Cap.Soc.').': ' : '').'$f_capsoc$</p>
|
||||
<p>'.(!empty($f_telefono) ? tr('Tel').': ' : '').'$f_telefono$</p>
|
||||
</div>
|
||||
<div class="col-xs-6 text-right">
|
||||
<img src="$logo$" alt="Logo" border="0"/>
|
||||
</div>
|
||||
</div>';
|
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/*
|
||||
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
||||
* Copyright (C) DevCode s.r.l.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
$format = (isset($_SESSION['dashboard']['format'])) ? $_SESSION['dashboard']['format'] : 'A4';
|
||||
$orientation = (isset($_SESSION['dashboard']['orientation'])) ? $_SESSION['dashboard']['orientation'] : 'L';
|
||||
|
||||
return [
|
||||
'format' => $format,
|
||||
'orientation' => $orientation,
|
||||
];
|
|
@ -19,27 +19,27 @@
|
|||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
$totale_iva_vendite = sum(array_column($iva_vendite, 'iva'));
|
||||
$totale_subtotale_vendite = sum(array_column($iva_vendite, 'subtotale'));
|
||||
$totale_iva_acquisti = sum(array_column($iva_acquisti, 'iva'));
|
||||
$totale_subtotale_acquisti = sum(array_column($iva_acquisti, 'subtotale'));
|
||||
$totale_iva_vendite = sum(array_column($iva_vendite, 'iva'), null, 2);
|
||||
$totale_subtotale_vendite = sum(array_column($iva_vendite, 'subtotale'), null, 2);
|
||||
$totale_iva_acquisti = sum(array_column($iva_acquisti, 'iva'), null, 2);
|
||||
$totale_subtotale_acquisti = sum(array_column($iva_acquisti, 'subtotale'), null, 2);
|
||||
|
||||
$totale_iva_esigibile = sum(array_column($iva_vendite_esigibile, 'iva'));
|
||||
$totale_iva_nonesigibile = sum(array_column($iva_vendite_nonesigibile, 'iva'));
|
||||
$subtotale_iva_esigibile = sum(array_column($iva_vendite_esigibile, 'subtotale'));
|
||||
$subtotale_iva_nonesigibile = sum(array_column($iva_vendite_nonesigibile, 'subtotale'));
|
||||
$totale_iva_esigibile = sum(array_column($iva_vendite_esigibile, 'iva'), null, 2);
|
||||
$totale_iva_nonesigibile = sum(array_column($iva_vendite_nonesigibile, 'iva'), null, 2);
|
||||
$subtotale_iva_esigibile = sum(array_column($iva_vendite_esigibile, 'subtotale'), null, 2);
|
||||
$subtotale_iva_nonesigibile = sum(array_column($iva_vendite_nonesigibile, 'subtotale'), null, 2);
|
||||
|
||||
$totale_iva_detraibile = sum(array_column($iva_acquisti_detraibile, 'iva'));
|
||||
$totale_iva_nondetraibile = sum(array_column($iva_acquisti_nondetraibile, 'iva'));
|
||||
$subtotale_iva_detraibile = sum(array_column($iva_acquisti_detraibile, 'subtotale'));
|
||||
$subtotale_iva_nondetraibile = sum(array_column($iva_acquisti_nondetraibile, 'subtotale'));
|
||||
$totale_iva_detraibile = sum(array_column($iva_acquisti_detraibile, 'iva'), null, 2);
|
||||
$totale_iva_nondetraibile = sum(array_column($iva_acquisti_nondetraibile, 'iva'), null, 2);
|
||||
$subtotale_iva_detraibile = sum(array_column($iva_acquisti_detraibile, 'subtotale'), null, 2);
|
||||
$subtotale_iva_nondetraibile = sum(array_column($iva_acquisti_nondetraibile, 'subtotale'), null, 2);
|
||||
|
||||
$totale_iva_vendite_anno_precedente = sum(array_column($iva_vendite_anno_precedente, 'iva'));
|
||||
$totale_iva_acquisti_anno_precedente = sum(array_column($iva_acquisti_anno_precedente, 'iva'));
|
||||
$totale_iva_vendite_anno_precedente = sum(array_column($iva_vendite_anno_precedente, 'iva'), null, 2);
|
||||
$totale_iva_acquisti_anno_precedente = sum(array_column($iva_acquisti_anno_precedente, 'iva'), null, 2);
|
||||
$totale_iva_anno_precedente = $totale_iva_vendite_anno_precedente - $totale_iva_acquisti_anno_precedente;
|
||||
|
||||
$totale_iva_vendite_periodo_precedente = sum(array_column($iva_vendite_periodo_precedente, 'iva'));
|
||||
$totale_iva_acquisti_periodo_precedente = sum(array_column($iva_acquisti_periodo_precedente, 'iva'));
|
||||
$totale_iva_vendite_periodo_precedente = sum(array_column($iva_vendite_periodo_precedente, 'iva'), null, 2);
|
||||
$totale_iva_acquisti_periodo_precedente = sum(array_column($iva_acquisti_periodo_precedente, 'iva'), null, 2);
|
||||
$totale_iva_periodo_precedente = $totale_iva_vendite_periodo_precedente - $totale_iva_acquisti_periodo_precedente;
|
||||
|
||||
$totale_iva = $totale_iva_esigibile - $totale_iva_detraibile;
|
||||
|
@ -69,10 +69,20 @@ echo '
|
|||
<th class="text-center" colspan="5">IVA ESIGIBILE DEL PERIODO</th>
|
||||
</tr>';
|
||||
|
||||
// Somma importi arrotondati per fattura
|
||||
$aliquote=[];
|
||||
|
||||
foreach ($iva_vendite_esigibile as $record) {
|
||||
$aliquote[$record['aliquota']]['cod_iva'] = $record['cod_iva'];
|
||||
$aliquote[$record['aliquota']]['descrizione'] = $record['descrizione'];
|
||||
$aliquote[$record['aliquota']]['subtotale'] += sum($record['subtotale'], null, 2);
|
||||
$aliquote[$record['aliquota']]['iva'] += sum($record['iva'], null, 2);
|
||||
}
|
||||
|
||||
foreach ($aliquote as $aliquota=>$record) {
|
||||
echo '
|
||||
<tr>
|
||||
<td>'.round($record['aliquota']).'%</td>
|
||||
<td>'.round($aliquota).'%</td>
|
||||
<td>'.$record['cod_iva'].'</td>
|
||||
<td>'.$record['descrizione'].'</td>
|
||||
<td class=text-right>'.moneyFormat($record['subtotale'], 2).'</td>
|
||||
|
@ -91,10 +101,20 @@ echo '
|
|||
<th class="text-center" colspan="5">IVA NON ESIGIBILE DEL PERIODO</th>
|
||||
</tr>';
|
||||
|
||||
// Somma importi arrotondati per fattura
|
||||
$aliquote=[];
|
||||
|
||||
foreach ($iva_vendite_nonesigibile as $record) {
|
||||
$aliquote[$record['aliquota']]['cod_iva'] = $record['cod_iva'];
|
||||
$aliquote[$record['aliquota']]['descrizione'] = $record['descrizione'];
|
||||
$aliquote[$record['aliquota']]['subtotale'] += sum($record['subtotale'], null, 2);
|
||||
$aliquote[$record['aliquota']]['iva'] += sum($record['iva'], null, 2);
|
||||
}
|
||||
|
||||
foreach ($aliquote as $aliquota=>$record) {
|
||||
echo '
|
||||
<tr>
|
||||
<td>'.round($record['aliquota']).'%</td>
|
||||
<td>'.round($aliquota).'%</td>
|
||||
<td>'.$record['cod_iva'].'</td>
|
||||
<td>'.$record['descrizione'].'</td>
|
||||
<td class=text-right>'.moneyFormat($record['subtotale'], 2).'</td>
|
||||
|
@ -112,10 +132,21 @@ echo '
|
|||
<tr>
|
||||
<th class="text-center" colspan="5">RIEPILOGO GENERALE IVA VENDITE</th>
|
||||
</tr>';
|
||||
|
||||
// Somma importi arrotondati per fattura
|
||||
$aliquote=[];
|
||||
|
||||
foreach ($iva_vendite as $record) {
|
||||
$aliquote[$record['aliquota']]['cod_iva'] = $record['cod_iva'];
|
||||
$aliquote[$record['aliquota']]['descrizione'] = $record['descrizione'];
|
||||
$aliquote[$record['aliquota']]['subtotale'] += sum($record['subtotale'], null, 2);
|
||||
$aliquote[$record['aliquota']]['iva'] += sum($record['iva'], null, 2);
|
||||
}
|
||||
|
||||
foreach ($aliquote as $aliquota=>$record) {
|
||||
echo '
|
||||
<tr>
|
||||
<td>'.round($record['aliquota']).'%</td>
|
||||
<td>'.round($aliquota).'%</td>
|
||||
<td>'.$record['cod_iva'].'</td>
|
||||
<td>'.$record['descrizione'].'</td>
|
||||
<td class=text-right>'.moneyFormat($record['subtotale'], 2).'</td>
|
||||
|
@ -149,10 +180,20 @@ echo '
|
|||
<th class="text-center" colspan="5">IVA DETRAIBILE DEL PERIODO</th>
|
||||
</tr>';
|
||||
|
||||
// Somma importi arrotondati per fattura
|
||||
$aliquote=[];
|
||||
|
||||
foreach ($iva_acquisti_detraibile as $record) {
|
||||
$aliquote[$record['aliquota']]['cod_iva'] = $record['cod_iva'];
|
||||
$aliquote[$record['aliquota']]['descrizione'] = $record['descrizione'];
|
||||
$aliquote[$record['aliquota']]['subtotale'] += sum($record['subtotale'], null, 2);
|
||||
$aliquote[$record['aliquota']]['iva'] += sum($record['iva'], null, 2);
|
||||
}
|
||||
|
||||
foreach ($aliquote as $aliquota=>$record) {
|
||||
echo '
|
||||
<tr>
|
||||
<td>'.round($record['aliquota']).'%</td>
|
||||
<td>'.round($aliquota).'%</td>
|
||||
<td>'.$record['cod_iva'].'</td>
|
||||
<td>'.$record['descrizione'].'</td>
|
||||
<td class=text-right>'.moneyFormat($record['subtotale'], 2).'</td>
|
||||
|
@ -172,10 +213,20 @@ echo '
|
|||
<th class="text-center" colspan="5">IVA NON DETRAIBILE DEL PERIODO</th>
|
||||
</tr>';
|
||||
|
||||
// Somma importi arrotondati per fattura
|
||||
$aliquote=[];
|
||||
|
||||
foreach ($iva_acquisti_nondetraibile as $record) {
|
||||
$aliquote[$record['aliquota']]['cod_iva'] = $record['cod_iva'];
|
||||
$aliquote[$record['aliquota']]['descrizione'] = $record['descrizione'];
|
||||
$aliquote[$record['aliquota']]['subtotale'] += sum($record['subtotale'], null, 2);
|
||||
$aliquote[$record['aliquota']]['iva'] += sum($record['iva'], null, 2);
|
||||
}
|
||||
|
||||
foreach ($aliquote as $aliquota=>$record) {
|
||||
echo '
|
||||
<tr>
|
||||
<td>'.round($record['aliquota']).'%</td>
|
||||
<td>'.round($aliquota).'%</td>
|
||||
<td>'.$record['cod_iva'].'</td>
|
||||
<td>'.$record['descrizione'].'</td>
|
||||
<td class=text-right>'.moneyFormat($record['subtotale'], 2).'</td>
|
||||
|
@ -194,10 +245,21 @@ echo '
|
|||
<tr>
|
||||
<th class="text-center" colspan="5">RIEPILOGO GENERALE IVA ACQUISTI</th>
|
||||
</tr>';
|
||||
|
||||
// Somma importi arrotondati per fattura
|
||||
$aliquote=[];
|
||||
|
||||
foreach ($iva_acquisti as $record) {
|
||||
$aliquote[$record['aliquota']]['cod_iva'] = $record['cod_iva'];
|
||||
$aliquote[$record['aliquota']]['descrizione'] = $record['descrizione'];
|
||||
$aliquote[$record['aliquota']]['subtotale'] += sum($record['subtotale'], null, 2);
|
||||
$aliquote[$record['aliquota']]['iva'] += sum($record['iva'], null, 2);
|
||||
}
|
||||
|
||||
foreach ($aliquote as $aliquota=>$record) {
|
||||
echo '
|
||||
<tr>
|
||||
<td>'.round($record['aliquota']).'%</td>
|
||||
<td>'.round($aliquota).'%</td>
|
||||
<td>'.$record['cod_iva'].'</td>
|
||||
<td>'.$record['descrizione'].'</td>
|
||||
<td class=text-right>'.moneyFormat($record['subtotale'], 2).'</td>
|
||||
|
@ -220,7 +282,7 @@ echo '
|
|||
<table class="table table-condensed table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="text-center" colspan="2">PROSPETTO RIEPILOGATIVO DI LIQUIDAZIONE I.V.A.</th>
|
||||
<th class="text-center" colspan="2">PROSPETTO RIEPILOGATIVO DI LIQUIDAZIONE IVA</th>
|
||||
<tr>
|
||||
<th width="70%">DESCRIZIONE</th>
|
||||
<th class="text-right" width="30%">IMPORTO</th>
|
||||
|
|
|
@ -43,6 +43,7 @@ if (!empty($vendita_banco)){
|
|||
|
||||
$iva_vendite_esigibile = $dbo->fetchArray('
|
||||
SELECT
|
||||
id,
|
||||
cod_iva,
|
||||
aliquota,
|
||||
descrizione,
|
||||
|
@ -51,6 +52,7 @@ $iva_vendite_esigibile = $dbo->fetchArray('
|
|||
FROM
|
||||
(
|
||||
SELECT
|
||||
co_documenti.id AS id,
|
||||
co_iva.codice_natura_fe AS cod_iva,
|
||||
co_iva.percentuale AS aliquota,
|
||||
co_iva.descrizione AS descrizione,
|
||||
|
@ -64,9 +66,10 @@ $iva_vendite_esigibile = $dbo->fetchArray('
|
|||
WHERE
|
||||
co_tipidocumento.dir = "entrata" AND co_righe_documenti.is_descrizione = 0 AND co_documenti.split_payment = 0 AND idstatodocumento NOT IN(SELECT id FROM co_statidocumento WHERE descrizione = "Bozza" OR descrizione = "Annullata") AND co_documenti.data_competenza >= '.prepare($date_start).' AND co_documenti.data_competenza <= '.prepare($date_end).'
|
||||
GROUP BY
|
||||
cod_iva, aliquota, descrizione
|
||||
cod_iva, aliquota, descrizione, co_documenti.id
|
||||
UNION
|
||||
SELECT
|
||||
vb_venditabanco.id AS id,
|
||||
co_iva.codice_natura_fe AS cod_iva,
|
||||
co_iva.percentuale AS aliquota,
|
||||
co_iva.descrizione AS descrizione,
|
||||
|
@ -82,16 +85,18 @@ $iva_vendite_esigibile = $dbo->fetchArray('
|
|||
WHERE
|
||||
vb_venditabanco.data >= '.prepare($date_start).' AND vb_venditabanco.data <= '.prepare($date_end).' AND vb_righe_venditabanco.is_descrizione = 0 AND vb_stati_vendita.descrizione = "Pagato"
|
||||
GROUP BY
|
||||
cod_iva, aliquota, descrizione
|
||||
cod_iva, aliquota, descrizione, vb_venditabanco.id
|
||||
) AS tabella
|
||||
GROUP BY
|
||||
cod_iva,
|
||||
aliquota,
|
||||
descrizione;');
|
||||
descrizione,
|
||||
id');
|
||||
|
||||
|
||||
$iva_vendite = $dbo->fetchArray('
|
||||
SELECT
|
||||
id,
|
||||
cod_iva,
|
||||
aliquota,
|
||||
descrizione,
|
||||
|
@ -100,6 +105,7 @@ $iva_vendite = $dbo->fetchArray('
|
|||
FROM
|
||||
(
|
||||
SELECT
|
||||
co_documenti.id AS id,
|
||||
co_iva.codice_natura_fe AS cod_iva,
|
||||
co_iva.percentuale AS aliquota,
|
||||
co_iva.descrizione AS descrizione,
|
||||
|
@ -113,9 +119,10 @@ $iva_vendite = $dbo->fetchArray('
|
|||
WHERE
|
||||
co_tipidocumento.dir = "entrata" AND co_righe_documenti.is_descrizione = 0 AND idstatodocumento NOT IN(SELECT id FROM co_statidocumento WHERE descrizione = "Bozza" OR descrizione = "Annullata") AND co_documenti.data_competenza >= '.prepare($date_start).' AND co_documenti.data_competenza <= '.prepare($date_end).'
|
||||
GROUP BY
|
||||
cod_iva, aliquota, descrizione
|
||||
cod_iva, aliquota, descrizione, co_documenti.id
|
||||
UNION
|
||||
SELECT
|
||||
vb_venditabanco.id AS id,
|
||||
co_iva.codice_natura_fe AS cod_iva,
|
||||
co_iva.percentuale AS aliquota,
|
||||
co_iva.descrizione AS descrizione,
|
||||
|
@ -131,15 +138,17 @@ $iva_vendite = $dbo->fetchArray('
|
|||
WHERE
|
||||
vb_venditabanco.data >= '.prepare($date_start).' AND vb_venditabanco.data <= '.prepare($date_end).' AND vb_righe_venditabanco.is_descrizione = 0 AND vb_stati_vendita.descrizione = "Pagato"
|
||||
GROUP BY
|
||||
cod_iva, aliquota, descrizione
|
||||
cod_iva, aliquota, descrizione, vb_venditabanco.id
|
||||
) AS tabella
|
||||
GROUP BY
|
||||
cod_iva,
|
||||
aliquota,
|
||||
descrizione;');
|
||||
descrizione,
|
||||
id');
|
||||
|
||||
$iva_vendite_anno_precedente = $dbo->fetchArray('
|
||||
SELECT
|
||||
id,
|
||||
cod_iva,
|
||||
aliquota,
|
||||
descrizione,
|
||||
|
@ -148,6 +157,7 @@ $iva_vendite_anno_precedente = $dbo->fetchArray('
|
|||
FROM
|
||||
(
|
||||
SELECT
|
||||
co_documenti.id AS id,
|
||||
co_iva.codice_natura_fe AS cod_iva,
|
||||
co_iva.percentuale AS aliquota,
|
||||
co_iva.descrizione AS descrizione,
|
||||
|
@ -161,9 +171,10 @@ $iva_vendite_anno_precedente = $dbo->fetchArray('
|
|||
WHERE
|
||||
co_tipidocumento.dir = "entrata" AND co_righe_documenti.is_descrizione = 0 AND idstatodocumento NOT IN(SELECT id FROM co_statidocumento WHERE descrizione = "Bozza" OR descrizione = "Annullata") AND co_documenti.data_competenza >= '.prepare($anno_precedente_start).' AND co_documenti.data_competenza <= '.prepare($anno_precedente_end).'
|
||||
GROUP BY
|
||||
cod_iva, aliquota, descrizione
|
||||
cod_iva, aliquota, descrizione, co_documenti.id
|
||||
UNION
|
||||
SELECT
|
||||
vb_venditabanco.id AS id,
|
||||
co_iva.codice_natura_fe AS cod_iva,
|
||||
co_iva.percentuale AS aliquota,
|
||||
co_iva.descrizione AS descrizione,
|
||||
|
@ -179,15 +190,17 @@ $iva_vendite_anno_precedente = $dbo->fetchArray('
|
|||
WHERE
|
||||
vb_venditabanco.data >= '.prepare($anno_precedente_start).' AND vb_venditabanco.data <= '.prepare($anno_precedente_end).' AND vb_righe_venditabanco.is_descrizione = 0 AND vb_stati_vendita.descrizione = "Pagato"
|
||||
GROUP BY
|
||||
cod_iva, aliquota, descrizione
|
||||
cod_iva, aliquota, descrizione, vb_venditabanco.id
|
||||
) AS tabella
|
||||
GROUP BY
|
||||
cod_iva,
|
||||
aliquota,
|
||||
descrizione;');
|
||||
descrizione,
|
||||
id');
|
||||
|
||||
$iva_vendite_periodo_precedente = $dbo->fetchArray('
|
||||
SELECT
|
||||
id,
|
||||
cod_iva,
|
||||
aliquota,
|
||||
descrizione,
|
||||
|
@ -196,6 +209,7 @@ $iva_vendite_periodo_precedente = $dbo->fetchArray('
|
|||
FROM
|
||||
(
|
||||
SELECT
|
||||
co_documenti.id AS id,
|
||||
co_iva.codice_natura_fe AS cod_iva,
|
||||
co_iva.percentuale AS aliquota,
|
||||
co_iva.descrizione AS descrizione,
|
||||
|
@ -209,9 +223,10 @@ $iva_vendite_periodo_precedente = $dbo->fetchArray('
|
|||
WHERE
|
||||
co_tipidocumento.dir = "entrata" AND co_righe_documenti.is_descrizione = 0 AND idstatodocumento NOT IN(SELECT id FROM co_statidocumento WHERE descrizione = "Bozza" OR descrizione = "Annullata") AND co_documenti.data_competenza >= '.prepare($periodo_precedente_start).' AND co_documenti.data_competenza <= '.prepare($periodo_precedente_end).'
|
||||
GROUP BY
|
||||
cod_iva, aliquota, descrizione
|
||||
cod_iva, aliquota, descrizione, co_documenti.id
|
||||
UNION
|
||||
SELECT
|
||||
vb_venditabanco.id AS id,
|
||||
co_iva.codice_natura_fe AS cod_iva,
|
||||
co_iva.percentuale AS aliquota,
|
||||
co_iva.descrizione AS descrizione,
|
||||
|
@ -227,12 +242,13 @@ $iva_vendite_periodo_precedente = $dbo->fetchArray('
|
|||
WHERE
|
||||
vb_venditabanco.data >= '.prepare($periodo_precedente_start).' AND vb_venditabanco.data <= '.prepare($periodo_precedente_end).' AND vb_righe_venditabanco.is_descrizione = 0 AND vb_stati_vendita.descrizione = "Pagato"
|
||||
GROUP BY
|
||||
cod_iva, aliquota, descrizione
|
||||
cod_iva, aliquota, descrizione, vb_venditabanco.id
|
||||
) AS tabella
|
||||
GROUP BY
|
||||
cod_iva,
|
||||
aliquota,
|
||||
descrizione;');
|
||||
descrizione,
|
||||
id');
|
||||
|
||||
}
|
||||
|
||||
|
@ -253,7 +269,7 @@ $iva_vendite_esigibile = $dbo->fetchArray('
|
|||
WHERE
|
||||
co_tipidocumento.dir = "entrata" AND co_righe_documenti.is_descrizione = 0 AND co_documenti.split_payment = 0 AND idstatodocumento NOT IN(SELECT id FROM co_statidocumento WHERE descrizione = "Bozza" OR descrizione = "Annullata") AND co_documenti.data_competenza >= '.prepare($date_start).' AND co_documenti.data_competenza <= '.prepare($date_end).'
|
||||
GROUP BY
|
||||
co_iva.id;');
|
||||
co_iva.id, co_documenti.id');
|
||||
|
||||
$iva_vendite = $dbo->fetchArray('
|
||||
SELECT
|
||||
|
@ -270,7 +286,7 @@ $iva_vendite = $dbo->fetchArray('
|
|||
WHERE
|
||||
co_tipidocumento.dir = "entrata" AND co_righe_documenti.is_descrizione = 0 AND idstatodocumento NOT IN(SELECT id FROM co_statidocumento WHERE descrizione = "Bozza" OR descrizione = "Annullata") AND co_documenti.data_competenza >= '.prepare($date_start).' AND co_documenti.data_competenza <= '.prepare($date_end).'
|
||||
GROUP BY
|
||||
co_iva.id;');
|
||||
co_iva.id, co_documenti.id');
|
||||
|
||||
$iva_vendite_anno_precedente = $dbo->fetchArray('
|
||||
SELECT
|
||||
|
@ -287,7 +303,7 @@ $iva_vendite_anno_precedente = $dbo->fetchArray('
|
|||
WHERE
|
||||
co_tipidocumento.dir = "entrata" AND co_righe_documenti.is_descrizione = 0 AND idstatodocumento NOT IN(SELECT id FROM co_statidocumento WHERE descrizione = "Bozza" OR descrizione = "Annullata") AND co_documenti.data_competenza >= '.prepare($anno_precedente_start).' AND co_documenti.data_competenza <= '.prepare($anno_precedente_end).'
|
||||
GROUP BY
|
||||
co_iva.id;');
|
||||
co_iva.id, co_documenti.id');
|
||||
|
||||
$iva_vendite_periodo_precedente = $dbo->fetchArray('
|
||||
SELECT
|
||||
|
@ -304,7 +320,7 @@ $iva_vendite_periodo_precedente = $dbo->fetchArray('
|
|||
WHERE
|
||||
co_tipidocumento.dir = "entrata" AND co_righe_documenti.is_descrizione = 0 AND idstatodocumento NOT IN(SELECT id FROM co_statidocumento WHERE descrizione = "Bozza" OR descrizione = "Annullata") AND co_documenti.data_competenza >= '.prepare($periodo_precedente_start).' AND co_documenti.data_competenza <= '.prepare($periodo_precedente_end).'
|
||||
GROUP BY
|
||||
co_iva.id;');
|
||||
co_iva.id, co_documenti.id');
|
||||
}
|
||||
|
||||
$iva_vendite_nonesigibile = $dbo->fetchArray('
|
||||
|
@ -322,7 +338,7 @@ $iva_vendite_nonesigibile = $dbo->fetchArray('
|
|||
WHERE
|
||||
co_tipidocumento.dir = "entrata" AND co_righe_documenti.is_descrizione = 0 AND co_documenti.split_payment = 1 AND idstatodocumento NOT IN(SELECT id FROM co_statidocumento WHERE descrizione = "Bozza" OR descrizione = "Annullata") AND co_documenti.data_competenza >= '.prepare($date_start).' AND co_documenti.data_competenza <= '.prepare($date_end).'
|
||||
GROUP BY
|
||||
co_iva.id;');
|
||||
co_iva.id, co_documenti.id');
|
||||
|
||||
$iva_acquisti_detraibile = $dbo->fetchArray('
|
||||
SELECT
|
||||
|
@ -339,7 +355,7 @@ $iva_acquisti_detraibile = $dbo->fetchArray('
|
|||
WHERE
|
||||
co_tipidocumento.dir = "uscita" AND co_righe_documenti.is_descrizione = 0 AND co_documenti.split_payment = 0 AND idstatodocumento NOT IN(SELECT id FROM co_statidocumento WHERE descrizione = "Bozza" OR descrizione = "Annullata") AND co_documenti.data_competenza >= '.prepare($date_start).' AND co_documenti.data_competenza <= '.prepare($date_end).' AND co_iva.indetraibile != 100
|
||||
GROUP BY
|
||||
co_iva.id;');
|
||||
co_iva.id, co_documenti.id');
|
||||
|
||||
$iva_acquisti_nondetraibile = $dbo->fetchArray('
|
||||
SELECT
|
||||
|
@ -356,7 +372,7 @@ $iva_acquisti_nondetraibile = $dbo->fetchArray('
|
|||
WHERE
|
||||
co_tipidocumento.dir = "uscita" AND co_righe_documenti.is_descrizione = 0 AND idstatodocumento NOT IN(SELECT id FROM co_statidocumento WHERE descrizione = "Bozza" OR descrizione = "Annullata") AND co_documenti.data_competenza >= ' . prepare($date_start) . ' AND co_documenti.data_competenza <= ' . prepare($date_end) . ' AND co_iva.indetraibile != 0
|
||||
GROUP BY
|
||||
co_iva.id;');
|
||||
co_iva.id, co_documenti.id');
|
||||
|
||||
$iva_acquisti = $dbo->fetchArray('
|
||||
SELECT
|
||||
|
@ -373,7 +389,7 @@ $iva_acquisti = $dbo->fetchArray('
|
|||
WHERE
|
||||
co_tipidocumento.dir = "uscita" AND co_righe_documenti.is_descrizione = 0 AND idstatodocumento NOT IN(SELECT id FROM co_statidocumento WHERE descrizione = "Bozza" OR descrizione = "Annullata") AND co_documenti.data_competenza >= '.prepare($date_start).' AND co_documenti.data_competenza <= '.prepare($date_end).'
|
||||
GROUP BY
|
||||
co_iva.id;');
|
||||
co_iva.id, co_documenti.id');
|
||||
|
||||
$iva_acquisti_anno_precedente = $dbo->fetchArray('
|
||||
SELECT
|
||||
|
@ -390,7 +406,7 @@ $iva_acquisti_anno_precedente = $dbo->fetchArray('
|
|||
WHERE
|
||||
co_tipidocumento.dir = "uscita" AND co_righe_documenti.is_descrizione = 0 AND idstatodocumento NOT IN(SELECT id FROM co_statidocumento WHERE descrizione = "Bozza" OR descrizione = "Annullata") AND co_documenti.data_competenza >= '.prepare($anno_precedente_start).' AND co_documenti.data_competenza <= '.prepare($anno_precedente_end).'
|
||||
GROUP BY
|
||||
co_iva.id;');
|
||||
co_iva.id, co_documenti.id');
|
||||
|
||||
$iva_acquisti_periodo_precedente = $dbo->fetchArray('
|
||||
SELECT
|
||||
|
@ -407,4 +423,4 @@ $iva_acquisti_periodo_precedente = $dbo->fetchArray('
|
|||
WHERE
|
||||
co_tipidocumento.dir = "uscita" AND co_righe_documenti.is_descrizione = 0 AND idstatodocumento NOT IN(SELECT id FROM co_statidocumento WHERE descrizione = "Bozza" OR descrizione = "Annullata") AND co_documenti.data_competenza >= '.prepare($periodo_precedente_start).' AND co_documenti.data_competenza <= '.prepare($periodo_precedente_end).'
|
||||
GROUP BY
|
||||
co_iva.id;');
|
||||
co_iva.id, co_documenti.id');
|
|
@ -19,8 +19,8 @@
|
|||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
$totale_iva = sum(array_column($records, 'iva'));
|
||||
$totale_subtotale = sum(array_column($records, 'subtotale'));
|
||||
$totale_iva = sum(array_column($records, 'iva'), null, 2);
|
||||
$totale_subtotale = sum(array_column($records, 'subtotale'), null, 2);
|
||||
|
||||
echo '
|
||||
</tbody>
|
||||
|
@ -42,8 +42,8 @@ echo '
|
|||
|
||||
foreach ($iva as $descrizione => $tot_iva) {
|
||||
if (!empty($descrizione)) {
|
||||
$somma_iva = sum($iva[$descrizione]);
|
||||
$somma_totale = sum($totale[$descrizione]);
|
||||
$somma_iva = sum($iva[$descrizione], null, 2);
|
||||
$somma_totale = sum($totale[$descrizione], null, 2);
|
||||
|
||||
echo '
|
||||
<tr>
|
||||
|
|
|
@ -28,4 +28,11 @@ DELETE FROM `zz_prints` WHERE `name` = 'Spesometro';
|
|||
INSERT INTO `zz_prints` (`id`, `id_module`, `is_record`, `name`, `title`, `filename`, `directory`, `previous`, `options`, `icon`, `version`, `compatibility`, `order`, `predefined`, `default`, `enabled`) VALUES (NULL, (SELECT `id` FROM `zz_modules` WHERE `name` = 'Ddt di acquisto'), '1', 'Ddt di acquisto', 'Ddt in entrata', 'DDT num. {numero} del {data}', 'ddt', 'idddt', '{\"pricing\":true}', 'fa fa-print', '', '', '0', '1', '1', '1');
|
||||
|
||||
-- Aggiunte note checklist
|
||||
ALTER TABLE `zz_checks` ADD `note` TEXT NOT NULL AFTER `content`;
|
||||
ALTER TABLE `zz_checks` ADD `note` TEXT NOT NULL AFTER `content`;
|
||||
|
||||
-- Aggiunto widget per la stampa settimanale del calendario
|
||||
INSERT INTO `zz_widgets` (`id`, `name`, `type`, `id_module`, `location`, `class`, `query`, `bgcolor`, `icon`, `print_link`, `more_link`, `more_link_type`, `php_include`, `text`, `enabled`, `order`, `help`) VALUES
|
||||
(NULL, 'Stampa calendario settimanale', 'print', (SELECT id FROM zz_modules WHERE name = 'Dashboard'), 'controller_top', NULL, NULL, '#4ccc4c', 'fa fa-print', '', './modules/dashboard/widgets/stampa_calendario_settimanale.dashboard.php', 'popup', '', 'Stampa calendario settimanale', 1, 7, NULL);
|
||||
|
||||
INSERT INTO `zz_prints` (`id`, `id_module`, `is_record`, `name`, `title`, `filename`, `directory`, `previous`, `options`, `icon`, `version`, `compatibility`, `order`, `predefined`, `default`, `enabled`, `available_options`) VALUES
|
||||
(NULL, (SELECT id FROM zz_modules WHERE name = 'Dashboard'), 1, 'Stampa calendario settimanale', 'Stampa calendario settimanale', 'Calendario settimanale', 'dashboard_settimanale', '', '', 'fa fa-print', '', '', 0, 1, 1, 1, NULL);
|
||||
|
|
Loading…
Reference in New Issue