78 lines
2.8 KiB
PHP
Executable File
78 lines
2.8 KiB
PHP
Executable File
<?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 Modules\Fatture\Fattura;
|
|
|
|
$module = Modules::get('Scadenzario');
|
|
$id_module = $module['id'];
|
|
|
|
$total = Util\Query::readQuery($module);
|
|
|
|
// Lettura parametri modulo
|
|
$module_query = $total['query'];
|
|
|
|
if (!empty(get('date_start'))) {
|
|
$module_query = str_replace('1=1', '1=1 AND DATE_FORMAT(`scadenza`, "%Y%m%d") >= "'.date('Ymd', strtotime(get('date_start'))).'"', $module_query);
|
|
|
|
$date_start = get('date_start');
|
|
}
|
|
|
|
if (!empty(get('date_end'))) {
|
|
$module_query = str_replace('1=1', '1=1 AND DATE_FORMAT(`scadenza`, "%Y%m%d") <= "'.date('Ymd', strtotime(get('date_end'))).'"', $module_query);
|
|
|
|
$date_end = get('date_end');
|
|
}
|
|
|
|
if (get('id_anagrafica') && get('id_anagrafica') != 'null') {
|
|
$module_query = str_replace('1=1', '1=1 AND `co_scadenziario`.`idanagrafica`="'.get('id_anagrafica').'"', $module_query);
|
|
$id_anagrafica = get('id_anagrafica');
|
|
}
|
|
|
|
if (get('is_pagata') == 'false') {
|
|
$module_query = str_replace('1=1', '1=1 AND ABS(`co_scadenziario`.`pagato`) < ABS(`co_scadenziario`.`da_pagare`) ', $module_query);
|
|
}
|
|
|
|
if (get('is_riba') == 'true') {
|
|
$module_query = str_replace('1=1', '1=1 AND `co_pagamenti`.`codice_modalita_pagamento_fe`="MP12"', $module_query);
|
|
}
|
|
|
|
if (get('is_cliente') == 'true') {
|
|
$module_query = str_replace('1=1', '1=1 AND `co_tipidocumento`.`dir`="entrata"', $module_query);
|
|
}
|
|
|
|
if (get('is_fornitore') == 'true') {
|
|
$module_query = str_replace('1=1', '1=1 AND `co_tipidocumento`.`dir`="uscita"', $module_query);
|
|
}
|
|
|
|
// Scelgo la query in base alla scadenza
|
|
if (isset($id_record)) {
|
|
$record = $dbo->fetchOne('SELECT * FROM `co_scadenziario` WHERE `id` = '.prepare($id_record));
|
|
$documento = Fattura::find($record['iddocumento']);
|
|
if (!empty($documento)) {
|
|
$module_query = str_replace('1=1', '1=1 AND `co_scadenziario`.`iddocumento`='.prepare($documento->id), $module_query);
|
|
} else {
|
|
$module_query = str_replace('1=1', '1=1 AND `co_scadenziario`.`id`='.prepare($id_record), $module_query);
|
|
}
|
|
}
|
|
|
|
// Scadenze
|
|
$records = $dbo->fetchArray($module_query);
|