openstamanager/modules/tipi_documento/init.php

28 lines
1.2 KiB
PHP
Raw Normal View History

2020-12-29 00:39:30 +01:00
<?php
/*
* 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-12-29 00:39:30 +01: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/>.
*/
2024-03-13 17:32:07 +01:00
use Modules\Fatture\Tipo;
2020-12-29 00:39:30 +01:00
include_once __DIR__.'/../../core.php';
2024-03-22 15:52:24 +01:00
if ($id_record) {
2024-04-18 17:44:05 +02:00
$record = $dbo->fetchOne('SELECT `co_tipidocumento`.*, `co_tipidocumento_lang`.`title` FROM `co_tipidocumento` LEFT JOIN `co_tipidocumento_lang` ON (`co_tipidocumento_lang`.`id_record` = `co_tipidocumento`.`id` AND `co_tipidocumento_lang`.`id_lang` = '.prepare(Models\Locale::getDefault()->id).') WHERE `co_tipidocumento`.`id`='.prepare($id_record));
2024-03-07 10:10:42 +01:00
$tipo = Tipo::find($id_record);
2020-12-29 00:39:30 +01:00
}