openstamanager/modules/ordini/row-edit.php

69 lines
2.0 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/>.
*/
2019-03-29 12:46:17 +01:00
use Modules\Ordini\Ordine;
include_once __DIR__.'/../../core.php';
// Info contratto
2019-03-29 12:46:17 +01:00
$documento = Ordine::find($id_record);
// Impostazioni per la gestione
$options = [
'op' => 'manage_riga',
'action' => 'edit',
2019-03-29 12:46:17 +01:00
'dir' => $documento->direzione,
'idanagrafica' => $documento['idanagrafica'],
'totale_imponibile_documento' => $documento->totale_imponibile,
'totale_documento' => $documento->totale,
2020-08-17 16:25:01 +02:00
'select-options' => [
'articoli' => [
'idanagrafica' => $documento->idanagrafica,
'dir' => $documento->direzione,
'permetti_movimento_a_zero' => 1,
2020-08-17 16:25:01 +02:00
],
],
];
// Dati della riga
$id_riga = get('riga_id');
$type = get('riga_type');
2020-01-17 17:31:07 +01:00
$riga = $documento->getRiga($type, $id_riga);
2019-03-29 12:46:17 +01:00
$result = $riga->toArray();
2020-02-14 17:43:39 +01:00
$result['prezzo'] = $riga->prezzo_unitario;
// Importazione della gestione dedicata
$file = 'riga';
2019-03-29 12:46:17 +01:00
if ($riga->isDescrizione()) {
$file = 'descrizione';
$options['op'] = 'manage_descrizione';
2019-03-29 12:46:17 +01:00
} elseif ($riga->isArticolo()) {
$file = 'articolo';
$options['op'] = 'manage_articolo';
2019-03-29 12:46:17 +01:00
} elseif ($riga->isSconto()) {
$file = 'sconto';
$options['op'] = 'manage_sconto';
}
echo App::load($file.'.php', $result, $options);