2019-07-09 16:43:08 +02:00
|
|
|
<?php
|
2020-09-07 15:04:06 +02:00
|
|
|
/*
|
|
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
2021-01-20 15:08:51 +01:00
|
|
|
* Copyright (C) DevCode s.r.l.
|
2020-09-07 15:04:06 +02:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2019-07-09 16:43:08 +02:00
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
2023-02-09 18:14:17 +01:00
|
|
|
$text = [];
|
|
|
|
|
2023-08-04 14:54:28 +02:00
|
|
|
if (get('is_pagata') == 'true') {
|
|
|
|
$text[] = 'Scadenze pagate';
|
2023-02-09 18:14:17 +01:00
|
|
|
}
|
2023-08-04 14:54:28 +02:00
|
|
|
if (get('is_riba') == 'true') {
|
|
|
|
$text[] = 'Ri.Ba';
|
2023-02-09 18:14:17 +01:00
|
|
|
}
|
2023-08-04 14:54:28 +02:00
|
|
|
if (get('is_cliente') == 'true') {
|
|
|
|
$text[] = 'Solo scadenze clienti';
|
2023-02-09 18:14:17 +01:00
|
|
|
}
|
2023-08-04 14:54:28 +02:00
|
|
|
if (get('is_fornitore') == 'true') {
|
|
|
|
$text[] = 'Solo scadenze fornitori';
|
2023-02-09 18:14:17 +01:00
|
|
|
}
|
|
|
|
|
2024-04-12 16:59:19 +02:00
|
|
|
if (!empty($id_record)) {
|
2022-06-10 11:25:02 +02:00
|
|
|
echo '
|
|
|
|
<h4><b>'.tr('Scadenza _ANAG_', [
|
|
|
|
'_ANAG_' => $records[0]['Anagrafica'],
|
|
|
|
], ['upper' => true]).'</b></h4>';
|
2023-08-04 14:54:28 +02:00
|
|
|
} elseif (!empty($date_start) and !empty($date_end)) {
|
2022-06-10 11:25:02 +02:00
|
|
|
echo '
|
|
|
|
<h4><b>'.tr('Scadenze dal _START_ al _END_', [
|
|
|
|
'_START_' => Translator::dateToLocale($date_start),
|
|
|
|
'_END_' => Translator::dateToLocale($date_end),
|
2024-03-22 15:52:24 +01:00
|
|
|
], ['upper' => true]).'</b>
|
2023-02-09 18:14:17 +01:00
|
|
|
</h4>
|
|
|
|
<p style="color:#aaa; font-size:10px;" class="text-right">
|
2023-08-04 14:54:28 +02:00
|
|
|
'.tr('_TEXT_',
|
2024-03-22 15:52:24 +01:00
|
|
|
[
|
|
|
|
'_TEXT_' => (!empty($text) ? 'Include: '.implode(', ', $text) : ''),
|
|
|
|
]).'
|
2023-02-09 18:14:17 +01:00
|
|
|
</p>';
|
2023-08-04 14:54:28 +02:00
|
|
|
} else {
|
2022-07-27 15:09:10 +02:00
|
|
|
echo '
|
|
|
|
<h4><b>'.tr('Scadenze').'</b>
|
|
|
|
</h4>';
|
2022-06-10 11:25:02 +02:00
|
|
|
}
|
2019-07-09 16:43:08 +02:00
|
|
|
|
2022-06-10 11:25:02 +02:00
|
|
|
echo '
|
2019-07-09 16:43:08 +02:00
|
|
|
<table class="table table-striped table-bordered" id="contents">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th width="10%">'.tr('Documento', [], ['upper' => true]).'</th>
|
|
|
|
<th width="30%">'.tr('Anagrafica', [], ['upper' => true]).'</th>
|
|
|
|
<th width="30%">'.tr('Tipo di pagamento', [], ['upper' => true]).'</th>
|
|
|
|
<th width="10%" class="text-center">'.tr('Data scadenza', [], ['upper' => true]).'</th>
|
|
|
|
<th width="10%" class="text-center">'.tr('Importo', [], ['upper' => true]).'</th>
|
|
|
|
<th width="10%" class="text-center">'.tr('Già pagato', [], ['upper' => true]).'</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>';
|
2019-07-12 18:37:58 +02:00
|
|
|
|
|
|
|
$somma_imponibile = [];
|
|
|
|
$somma_sconto = [];
|
|
|
|
$somma_totale_imponibile = [];
|