openstamanager/modules/ddt/init.php

65 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';
use Modules\Anagrafiche\Anagrafica;
2019-02-14 17:49:58 +01:00
use Modules\DDT\DDT;
$azienda = Anagrafica::find(setting('Azienda predefinita'));
2024-03-26 17:22:40 +01:00
$module_name = $module ? $module->getTranslation('name') : '';
if ($module_name == 'Ddt di acquisto') {
2019-06-20 17:35:16 +02:00
$dir = 'uscita';
2024-03-26 17:22:40 +01:00
} else {
$dir = 'entrata';
2019-06-20 17:35:16 +02:00
}
if (isset($id_record)) {
2019-02-14 17:49:58 +01:00
$ddt = DDT::with('tipo', 'stato')->find($id_record);
2024-02-27 12:55:27 +01:00
$record = $dbo->fetchOne('SELECT `dt_ddt`.*,
`dt_ddt`.`id` AS idddt,
`dt_statiddt_lang`.`name` AS `stato`,
`dt_statiddt`.`completato` AS `flag_completato`,
2024-02-27 15:51:13 +01:00
`dt_tipiddt_lang`.`name` AS `descrizione_tipodoc`,
2024-02-27 12:55:27 +01:00
`an_anagrafiche`.`tipo` AS tipo_anagrafica
FROM `dt_ddt`
INNER JOIN `dt_statiddt` ON dt_ddt.idstatoddt=dt_statiddt.id
2024-03-22 15:52:24 +01:00
LEFT JOIN `dt_statiddt_lang` ON (`dt_statiddt_lang`.`id_record` = `dt_statiddt`.`id` AND `dt_statiddt_lang`.`id_lang` = '.prepare(Models\Locale::getDefault()->id).')
2024-02-27 12:55:27 +01:00
INNER JOIN `an_anagrafiche` ON `dt_ddt`.`idanagrafica`=`an_anagrafiche`.`idanagrafica`
INNER JOIN `dt_tipiddt` ON `dt_ddt`.`idtipoddt`=`dt_tipiddt`.`id`
2024-03-22 15:52:24 +01:00
LEFT JOIN `dt_tipiddt_lang` ON (`dt_tipiddt_lang`.`id_record` = `dt_tipiddt`.`id` AND `dt_tipiddt_lang`.`id_lang` = '.prepare(Models\Locale::getDefault()->id).')
2024-02-27 12:55:27 +01:00
WHERE
`dt_ddt`.`id`='.prepare($id_record));
2018-09-26 10:49:38 +02:00
2018-10-26 19:39:34 +02:00
if (!empty($record)) {
2024-02-27 11:29:48 +01:00
$record['idporto'] = $record['idporto'] ?: $dbo->fetchOne('SELECT `id` FROM `dt_porto` WHERE `predefined` = 1')['id'];
2024-02-27 11:10:40 +01:00
$record['idcausalet'] = $record['idcausalet'] ?: $dbo->fetchOne('SELECT `id` FROM `dt_causalet` WHERE `predefined` = 1')['id'];
2024-02-27 11:29:48 +01:00
$record['idspedizione'] = $record['idspedizione'] ?: $dbo->fetchOne('SELECT `id` FROM `dt_spedizione` WHERE `predefined` = 1')['id'];
2018-10-26 19:39:34 +02:00
}
// Se la sede del ddt non è di mia competenza, blocco il ddt in modifica
$field_name = ($dir == 'entrata') ? 'idsede_partenza' : 'idsede_destinazione';
if (!Auth::admin() && !in_array($record[$field_name], $user->sedi)) {
$record['flag_completato'] = 1;
}
}