openstamanager/templates/scadenzario/init.php

78 lines
2.8 KiB
PHP
Raw Normal View History

<?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/>.
*/
include_once __DIR__.'/../../core.php';
2022-06-10 11:25:02 +02:00
use Modules\Fatture\Fattura;
$module = Modules::get('Scadenzario');
$id_module = $module['id'];
$total = Util\Query::readQuery($module);
// Lettura parametri modulo
$module_query = $total['query'];
2023-05-09 11:53:55 +02:00
if (!empty(get('date_start'))) {
2023-02-09 18:14:17 +01:00
$module_query = str_replace('1=1', '1=1 AND DATE_FORMAT(`scadenza`, "%Y%m%d") >= "'.date('Ymd', strtotime(get('date_start'))).'"', $module_query);
2022-10-26 17:27:26 +02:00
$date_start = get('date_start');
}
2023-05-09 11:53:55 +02:00
if (!empty(get('date_end'))) {
2023-02-09 18:14:17 +01:00
$module_query = str_replace('1=1', '1=1 AND DATE_FORMAT(`scadenza`, "%Y%m%d") <= "'.date('Ymd', strtotime(get('date_end'))).'"', $module_query);
2022-07-29 15:44:36 +02:00
2022-10-26 17:27:26 +02:00
$date_end = get('date_end');
2022-07-29 15:44:36 +02:00
}
2023-11-17 10:15:02 +01:00
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');
}
2023-08-04 14:54:28 +02:00
if (get('is_pagata') == 'false') {
2022-07-29 15:44:36 +02:00
$module_query = str_replace('1=1', '1=1 AND ABS(`co_scadenziario`.`pagato`) < ABS(`co_scadenziario`.`da_pagare`) ', $module_query);
}
2023-08-04 14:54:28 +02:00
if (get('is_riba') == 'true') {
$module_query = str_replace('1=1', '1=1 AND co_pagamenti.codice_modalita_pagamento_fe="MP12"', $module_query);
}
2023-08-04 14:54:28 +02:00
if (get('is_cliente') == 'true') {
$module_query = str_replace('1=1', '1=1 AND co_tipidocumento.dir="entrata"', $module_query);
}
2023-08-04 14:54:28 +02:00
if (get('is_fornitore') == 'true') {
$module_query = str_replace('1=1', '1=1 AND co_tipidocumento.dir="uscita"', $module_query);
}
2019-08-26 10:11:04 +02:00
2022-06-10 11:25:02 +02:00
// 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);