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
include_once __DIR__ . '/../../core.php' ;
2021-02-20 13:31:05 +01:00
$module = module ( $id_module );
2017-08-04 16:28:16 +02:00
2017-09-05 17:31:58 +02:00
// Controllo sulla direzione monetaria
2017-09-05 18:20:02 +02:00
$uscite = [
'Fatture di acquisto' ,
'Ddt di acquisto' ,
'Ordini fornitore' ,
2017-09-05 17:31:58 +02:00
];
2017-09-05 18:20:02 +02:00
if ( in_array ( $module [ 'name' ], $uscite )) {
2017-08-04 16:28:16 +02:00
$dir = 'uscita' ;
2017-09-05 18:20:02 +02:00
} else {
$dir = 'entrata' ;
2017-08-04 16:28:16 +02:00
}
2017-09-05 17:31:58 +02:00
$data = [
'fat' => [
'table' => 'co_righe_documenti' ,
'id' => 'iddocumento' ,
],
'ddt' => [
'table' => 'dt_righe_ddt' ,
'id' => 'idddt' ,
],
'ord' => [
'table' => 'or_righe_ordini' ,
'id' => 'idordine' ,
],
'int' => [
2020-02-14 17:02:16 +01:00
'table' => 'in_righe_interventi' ,
2017-09-05 17:31:58 +02:00
'id' => 'idintervento' ,
],
];
// Individuazione delle tabelle interessate
if ( in_array ( $module [ 'name' ], [ 'Fatture di vendita' , 'Fatture di acquisto' ])) {
$modulo = 'fat' ;
} elseif ( in_array ( $module [ 'name' ], [ 'Ddt di vendita' , 'Ddt di acquisto' ])) {
$modulo = 'ddt' ;
} elseif ( in_array ( $module [ 'name' ], [ 'Ordini cliente' , 'Ordini fornitore' ])) {
$modulo = 'ord' ;
} else {
$modulo = 'int' ;
}
$table = $data [ $modulo ][ 'table' ];
$id = $data [ $modulo ][ 'id' ];
$riga = str_replace ( 'id' , 'id_riga_' , $id );
2020-07-06 13:19:20 +02:00
$idriga = get ( 'idriga' ) ? : get ( 'riga_id' );
2017-08-04 16:28:16 +02:00
2017-09-05 18:20:02 +02:00
$rs = $dbo -> fetchArray ( 'SELECT mg_articoli.id AS idarticolo, mg_articoli.codice, mg_articoli.descrizione, ' . $table . '.qta FROM ' . $table . ' INNER JOIN mg_articoli ON ' . $table . '.idarticolo=mg_articoli.id WHERE ' . $table . '.' . $id . '=' . prepare ( $id_record ) . ' AND ' . $table . '.id=' . prepare ( $idriga ));
2017-08-04 16:28:16 +02:00
echo '
2017-09-05 17:31:58 +02:00
< p > '.tr(' Articolo ').' : '.$rs[0][' codice '].' - '.$rs[0][' descrizione '].' </ p >
2017-08-04 16:28:16 +02:00
2021-10-23 16:37:21 +02:00
< form action = " '.base_path().'/editor.php?id_module='. $id_module .'&id_record='. $id_record .' " method = " post " >
2017-08-04 16:28:16 +02:00
< input type = " hidden " name = " op " value = " add_serial " >
< input type = " hidden " name = " backto " value = " record-edit " >
2017-09-05 17:31:58 +02:00
< input type = " hidden " name = " idriga " value = " '. $idriga .' " >
2017-09-05 18:20:02 +02:00
< input type = " hidden " name = " idarticolo " value = " '. $rs[0] ['idarticolo'].' " >
2017-08-04 16:28:16 +02:00
< input type = " hidden " name = " dir " value = " '. $dir .' " > ' ;
2017-09-05 17:31:58 +02:00
$info = $dbo -> fetchArray ( 'SELECT * FROM mg_prodotti WHERE serial IS NOT NULL AND ' . $riga . '=' . prepare ( $idriga ));
$serials = array_column ( $info , 'serial' );
2017-08-04 16:28:16 +02:00
if ( $dir == 'entrata' ) {
echo '
< div class = " row " >
< div class = " col-md-12 " >
2021-08-30 12:23:41 +02:00
{[ " type " : " select " , " label " : " '.tr('Serial').' " , " name " : " serial[] " , " multiple " : 1 , " value " : " '.implode(',', $serials ).' " , " values " : " query=SELECT serial AS id, serial AS descrizione FROM mg_prodotti WHERE id_articolo = '.prepare( $rs[0] ['idarticolo']).' AND mg_prodotti.dir= \ 'uscita \ ' AND id=(SELECT MAX(id) FROM mg_prodotti AS prodotti WHERE prodotti.id_articolo=mg_prodotti.id_articolo AND prodotti.serial=mg_prodotti.serial) " , " extra " : " data-maximum= \" '.intval( $rs[0] ['qta']).' \" " ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div > ' ;
} else {
echo '
2017-09-04 12:02:29 +02:00
< p > '.tr(' Inserisci i numeri seriali degli articoli aggiunti : ').' </ p > ' ;
2017-09-05 17:31:58 +02:00
for ( $i = 0 ; $i < $rs [ 0 ][ 'qta' ]; ++ $i ) {
if ( $i % 3 == 0 ) {
2017-08-04 16:28:16 +02:00
echo '
< div class = " row " > ' ;
}
2017-09-06 10:48:59 +02:00
$res = [];
2018-02-18 19:53:23 +01:00
if ( ! empty ( $serials [ $i ])) {
2017-09-06 10:48:59 +02:00
$res = $dbo -> fetchArray ( " SELECT * FROM mg_prodotti WHERE dir='entrata' AND serial = " . prepare ( $serials [ $i ]));
}
2017-08-04 16:28:16 +02:00
echo '
< div class = " col-md-4 " >
2017-09-05 17:31:58 +02:00
{[ " type " : " text " , " name " : " serial[] " , " value " : " '. $serials[$i] .' " '.(!empty($res) ? ' , " readonly " : 1 ' : ' ').' ]} ' ;
if ( ! empty ( $res )) {
if ( ! empty ( $res [ 0 ][ 'id_riga_intervento' ])) {
$modulo = 'Interventi' ;
$pos = 'int' ;
} elseif ( ! empty ( $res [ 0 ][ 'id_riga_ddt' ])) {
$modulo = 'Ddt di vendita' ;
$pos = 'ddt' ;
} elseif ( ! empty ( $res [ 0 ][ 'id_riga_documento' ])) {
$modulo = 'Fatture di vendita' ;
$pos = 'fat' ;
} elseif ( ! empty ( $res [ 0 ][ 'id_riga_ordine' ])) {
$modulo = 'Ordini cliente' ;
$pos = 'ord' ;
2017-08-04 16:28:16 +02:00
}
2017-09-05 17:31:58 +02:00
$r = $dbo -> select ( $data [ $pos ][ 'table' ], $data [ $pos ][ 'id' ], [ 'id' => $res [ 0 ][ str_replace ( 'id' , 'id_riga_' , $data [ $pos ][ 'id' ])]]);
2017-08-04 16:28:16 +02:00
echo '
2017-09-14 10:27:49 +02:00
'.Modules::link($modulo, $r[0][$data[$pos][' id ']], tr(' Visualizza vendita ' ), null );
2017-08-04 16:28:16 +02:00
}
echo '
</ div > ' ;
2017-09-05 17:31:58 +02:00
if (( $i + 1 ) % 3 == 0 ) {
2017-08-04 16:28:16 +02:00
echo '
</ div >
< br > ' ;
}
}
2017-09-05 17:31:58 +02:00
if ( $i % 3 != 0 ) {
2017-08-04 16:28:16 +02:00
echo '
</ div > ' ;
}
}
echo '
<!-- PULSANTI -->
< div class = " row " >
< div class = " col-md-12 text-right " >
2017-09-04 12:02:29 +02:00
< button type = " submit " class = " btn btn-primary pull-right " >< i class = " fa fa-barcode " ></ i > '.tr(' Aggiorna ').' </ button >
2017-08-04 16:28:16 +02:00
</ div >
</ div >
</ form > ' ;
echo '
2019-07-26 17:40:52 +02:00
< script > $ ( document ) . ready ( init ) </ script > ' ;