2017-08-04 16:28:16 +02:00
|
|
|
<?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/>.
|
|
|
|
*/
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-07-08 09:15:14 +02:00
|
|
|
use Modules\Ordini\Ordine;
|
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
|
|
|
if (isset($id_record)) {
|
2020-07-08 09:15:14 +02:00
|
|
|
$ordine = Ordine::with('tipo', 'stato')->find($id_record);
|
2018-05-11 15:56:08 +02:00
|
|
|
|
2018-11-23 12:43:45 +01:00
|
|
|
$record = $dbo->fetchOne('SELECT *,
|
|
|
|
or_ordini.note,
|
|
|
|
or_ordini.idpagamento,
|
|
|
|
or_ordini.id AS idordine,
|
|
|
|
or_statiordine.descrizione AS `stato`,
|
|
|
|
or_tipiordine.descrizione AS `descrizione_tipodoc`,
|
|
|
|
(SELECT tipo FROM an_anagrafiche WHERE idanagrafica = or_ordini.idanagrafica) AS tipo_anagrafica,
|
|
|
|
(SELECT completato FROM or_statiordine WHERE or_statiordine.id=or_ordini.idstatoordine) AS flag_completato
|
|
|
|
FROM or_ordini LEFT OUTER JOIN or_statiordine ON or_ordini.idstatoordine=or_statiordine.id
|
|
|
|
INNER JOIN an_anagrafiche ON or_ordini.idanagrafica=an_anagrafiche.idanagrafica
|
|
|
|
INNER JOIN or_tipiordine ON or_ordini.idtipoordine=or_tipiordine.id
|
|
|
|
WHERE or_ordini.id='.prepare($id_record));
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|