openstamanager/modules/anagrafiche/init.php

59 lines
2.4 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';
2018-09-26 09:23:42 +02:00
use Modules\Anagrafiche\Anagrafica;
2024-03-13 09:47:05 +01:00
use Modules\Anagrafiche\Tipo;
$rs = Tipo::get();
2018-09-26 09:23:42 +02:00
2020-02-05 14:51:39 +01:00
foreach ($rs as $riga) {
2024-03-28 16:38:03 +01:00
${'id_'.strtolower($riga->getTranslation('name', \Models\Locale::getPredefined()->id))} = $riga->id;
}
2018-11-23 16:48:30 +01:00
2024-03-13 17:32:07 +01:00
if (!empty($id_record)) {
2019-07-05 18:29:14 +02:00
$anagrafica = Anagrafica::withTrashed()->find($id_record);
2024-03-13 09:47:05 +01:00
$record = $dbo->fetchOne('SELECT
2024-03-13 12:24:26 +01:00
`an_anagrafiche`.*,
2024-03-13 09:47:05 +01:00
GROUP_CONCAT(`an_tipianagrafiche`.`id`) AS idtipianagrafica,
GROUP_CONCAT(`an_anagrafiche_agenti`.`idagente`) AS idagenti,
GROUP_CONCAT(`an_tipianagrafiche_lang`.`name`) AS tipianagrafica
FROM
`an_anagrafiche`
INNER JOIN `an_tipianagrafiche_anagrafiche` ON `an_anagrafiche`.`idanagrafica`=`an_tipianagrafiche_anagrafiche`.`idanagrafica`
INNER JOIN `an_tipianagrafiche` ON `an_tipianagrafiche`.`id`=`an_tipianagrafiche_anagrafiche`.`idtipoanagrafica`
2024-03-22 15:52:24 +01:00
LEFT JOIN `an_tipianagrafiche_lang` ON (`an_tipianagrafiche`.`id`=`an_tipianagrafiche_lang`.`id_record` AND `an_tipianagrafiche_lang`.`id_lang`='.prepare(Models\Locale::getDefault()->id).')
2024-03-13 09:47:05 +01:00
LEFT JOIN `an_anagrafiche_agenti` ON `an_anagrafiche`.`idanagrafica`=`an_anagrafiche_agenti`.`idanagrafica`
WHERE
`an_anagrafiche`.`idanagrafica`='.prepare($id_record));
// Cast per latitudine e longitudine
2018-07-18 15:20:10 +02:00
if (!empty($record)) {
$record['lat'] = floatval($record['lat']);
$record['lng'] = floatval($record['lng']);
}
2018-07-03 11:37:15 +02:00
2024-03-22 16:11:17 +01:00
if (!empty($anagrafica)) {
$tipi_anagrafica = $anagrafica->tipi->toArray();
2024-03-22 16:33:17 +01:00
$tipi_anagrafica = array_column($tipi_anagrafica, 'id');
2024-03-22 16:11:17 +01:00
}
}