openstamanager/modules/pagamenti/actions.php

133 lines
4.9 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';
2024-02-16 16:32:19 +01:00
use Modules\Pagamenti\Pagamento;
switch (filter('op')) {
case 'update':
$descrizione = filter('descrizione');
if (isset($descrizione)) {
2018-07-19 15:33:32 +02:00
foreach (post('id') as $key => $id) {
// Data fatturazione
$giorno = 0;
$pagamento = Pagamento::find($id);
// Data fatturazione fine mese
2018-07-19 15:33:32 +02:00
if (post('scadenza')[$key] == 2) {
$giorno = -1;
}
// Data fatturazione giorno fisso
2018-07-19 15:33:32 +02:00
if (post('scadenza')[$key] == 3) {
$giorno = post('giorno')[$key];
}
// Data fatturazione fine mese (giorno fisso)
2018-07-19 15:33:32 +02:00
elseif (post('scadenza')[$key] == 4) {
$giorno = -post('giorno')[$key] - 1;
}
2024-04-19 16:44:08 +02:00
if (empty($id)) {
$pagamento = Pagamento::build(post('codice_modalita_pagamento_fe'));
}
2024-04-19 16:44:08 +02:00
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
$pagamento->name = $descrizione;
2024-04-23 09:56:36 +02:00
}
2024-04-19 16:44:08 +02:00
$pagamento->num_giorni = post('distanza')[$key];
$pagamento->giorno = $giorno;
$pagamento->prc = post('percentuale')[$key];
$pagamento->idconto_vendite = post('idconto_vendite') ?: null;
$pagamento->idconto_acquisti = post('idconto_acquisti') ?: null;
$pagamento->setTranslation('title', $descrizione);
$pagamento->save();
}
2024-03-22 15:52:24 +01:00
2018-07-19 17:29:21 +02:00
flash()->info(tr('Salvataggio completato!'));
} else {
2018-07-19 17:29:21 +02:00
flash()->error(tr('Ci sono stati alcuni errori durante il salvataggio!'));
}
break;
case 'add':
$descrizione = filter('descrizione');
2018-10-25 16:57:39 +02:00
$codice_modalita_pagamento_fe = filter('codice_modalita_pagamento_fe');
if (isset($descrizione)) {
2024-04-18 17:44:05 +02:00
$id_pagamento = (new Pagamento())->getByField('title', $descrizione);
2024-02-22 17:03:48 +01:00
if ($id_pagamento) {
2024-02-16 16:32:19 +01:00
flash()->error(tr('Esiste già un metodo di pagamento con questo nome!'));
} else {
$pagamento = Pagamento::build($codice_modalita_pagamento_fe);
2024-04-19 16:44:08 +02:00
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
$pagamento->name = $descrizione;
2024-04-23 09:56:36 +02:00
}
2024-03-22 15:52:24 +01:00
$id_record = $dbo->lastInsertedID();
2024-04-18 17:44:05 +02:00
$pagamento->setTranslation('title', $descrizione);
$pagamento->save();
2024-02-16 16:32:19 +01:00
flash()->info(tr('Aggiunta nuova tipologia di _TYPE_', [
'_TYPE_' => 'pagamento',
]));
}
}
break;
case 'delete':
2018-03-28 17:04:10 +02:00
if (!empty($id_record)) {
$descrizione = filter('descrizione');
2024-04-18 17:44:05 +02:00
$dbo->query('DELETE FROM `co_pagamenti` WHERE `id` IN (SELECT `id_record` FROM `co_pagamenti_lang` WHERE `title` = '.prepare($descrizione).')');
$dbo->query('DELETE FROM `co_pagamenti_lang` WHERE `title` = '.prepare($descrizione));
2018-03-28 17:04:10 +02:00
$dbo->query('DELETE FROM `co_pagamenti` WHERE `id`='.prepare($id_record));
2018-07-19 17:29:21 +02:00
flash()->info(tr('Tipologia di _TYPE_ eliminata con successo!', [
'_TYPE_' => 'pagamento',
]));
}
break;
case 'delete_rata':
$id = filter('id');
if (isset($id)) {
$dbo->query('DELETE FROM `co_pagamenti` WHERE `id`='.prepare($id));
2018-07-19 17:29:21 +02:00
flash()->info(tr('Elemento eliminato con successo!'));
if ($id_record == $id) {
2024-04-18 17:44:05 +02:00
$res = $dbo->fetchArray('SELECT * FROM `co_pagamenti` LEFT JOIN `co_pagamenti_lang` WHERE `co_pagamenti`.`id`!='.prepare($id).' AND `title`='.prepare($record['descrizione']));
if (count($res) != 0) {
redirect(base_path().'/editor.php?id_module='.$id_module.'&id_record='.$res[0]['id']);
} else {
// $_POST['backto'] = 'record-list';
redirect(base_path().'/controller.php?id_module='.$id_module);
}
}
}
break;
}