2017-08-04 16:28:16 +02:00
< ? php
include_once __DIR__ . '/../../core.php' ;
// Mostro le righe dell'ordine
echo '
< table class = " table table-striped table-hover table-condensed table-bordered " >
< tr >
2017-09-04 12:02:29 +02:00
< th > '.tr(' Descrizione ').' </ th >
< th width = " 120 " > '.tr(' Q . tà ').' </ th >
< th width = " 80 " > '.tr(' U . m . ').' </ th >
< th width = " 120 " > '.tr(' Costo unitario ').' </ th >
< th width = " 120 " > '.tr(' Iva ').' </ th >
< th width = " 120 " > '.tr(' Imponibile ').' </ th >
2017-08-04 16:28:16 +02:00
< th width = " 60 " ></ th >
</ tr >
< tbody class = " sortable " > ' ;
2017-09-05 17:31:58 +02:00
$q = 'SELECT *, (SELECT codice FROM mg_articoli WHERE mg_articoli.id=`or_righe_ordini`.`idarticolo`) AS codice FROM `or_righe_ordini` WHERE idordine=' . prepare ( $id_record ) . ' ORDER BY `order`' ;
2017-08-04 16:28:16 +02:00
$rs = $dbo -> fetchArray ( $q );
if ( ! empty ( $rs )) {
foreach ( $rs as $r ) {
$delete = ! empty ( $r [ 'idarticolo' ]) ? 'unlink_articolo' : 'unlink_riga' ;
2017-09-05 17:31:58 +02:00
// Individuazione dei seriali
if ( ! empty ( $r [ 'idarticolo' ]) && ! empty ( $r [ 'abilita_serial' ])) {
$serials = array_column ( $dbo -> fetchArray ( 'SELECT serial FROM mg_prodotti WHERE serial IS NOT NULL AND id_riga_ordine=' . prepare ( $r [ 'id' ])), 'serial' );
$mancanti = $r [ 'qta' ] - count ( $serials );
2017-08-04 16:28:16 +02:00
if ( $mancanti > 0 ) {
$extra = 'class="warning"' ;
2017-09-05 17:31:58 +02:00
} else {
$mancanti = 0 ;
2017-08-04 16:28:16 +02:00
}
}
echo '
< tr data - id = " '. $r['id'] .' " '.$extra.' >
< td > ' ;
if ( ! empty ( $r [ 'idarticolo' ])) {
echo '
'.Modules::link(' Articoli ', $r[' idarticolo '], $r[' codice '].' - '.$r[' descrizione ' ]);
if ( ! empty ( $r [ 'abilita_serial' ])) {
if ( ! empty ( $mancanti )) {
echo '
2017-09-04 12:02:29 +02:00
< br >< b >< small class = " text-danger " > '.str_replace(' _NUM_ ', $mancanti, tr(' _NUM_ serial mancanti ')).' </ small ></ b > ' ;
2017-08-04 16:28:16 +02:00
}
if ( ! empty ( $serials )) {
echo '
2017-09-04 12:02:29 +02:00
< br > '.tr(' SN ').' : '.implode(' , ' , $serials );
2017-08-04 16:28:16 +02:00
}
} else {
if ( $r [ 'lotto' ] != '' ) {
echo '<br>Lotto: ' . $r [ 'lotto' ];
}
if ( $r [ 'serial' ] != '' ) {
echo '<br>SN: ' . $r [ 'serial' ];
}
if ( $r [ 'altro' ] != '' ) {
echo '<br>' . $r [ 'altro' ];
}
}
} else {
echo nl2br ( $r [ 'descrizione' ]);
}
echo '
</ td > ' ;
echo '
< td class = " text-center " > ' ;
2017-08-28 15:29:03 +02:00
if ( ! str_contains ( $r [ 'descrizione' ], 'SCONTO' )) {
2017-08-04 16:28:16 +02:00
echo '
< big > '.Translator::numberToLocale($r[' qta '] - $r[' qta_evasa ']).' </ big >
2017-09-04 12:02:29 +02:00
< br >< small > ( '.tr(' Q . tà iniziale ').' : '.Translator::numberToLocale($r[' qta ']).' ) </ small > ' ;
2017-08-04 16:28:16 +02:00
} else {
echo '1' ;
}
echo '
</ td > ' ;
// Unità di misura
echo '
< td class = " text-center " >
'.$r[' um '].'
</ td > ' ;
// Costo unitario
echo '
< td class = " text-right " >
'.Translator::numberToLocale($r[' subtotale '] / $r[' qta ']).' & euro ; ' ;
if ( $r [ 'sconto_unitario' ] > 0 ) {
echo '
< br >< small class = " label label-danger " >- sconto '.Translator::numberToLocale($r[' sconto_unitario ']).($r[' tipo_sconto '] == ' PRC ' ? ' % ' : ' & euro ; ').' </ small > ' ;
}
echo '
</ td > ' ;
// Iva
echo '
< td class = " text-right " >
'.Translator::numberToLocale($r[' iva ']).' & euro ;
< br >< small class = " help-block " > '.$r[' desc_iva '].' </ small >
</ td > ' ;
// Imponibile
echo '
< td class = " text-right " >
'.Translator::numberToLocale($r[' subtotale '] - $r[' sconto ']).' & euro ;
</ td > ' ;
// Possibilità di rimuovere una riga solo se l'ordine non è evaso
echo '
< td class = " text-center " > ' ;
2017-08-28 15:29:03 +02:00
if ( $records [ 0 ][ 'stato' ] != 'Evaso' && ! str_contains ( $r [ 'descrizione' ], 'SCONTO' )) {
2017-08-04 16:28:16 +02:00
echo "
< form action = '".$rootdir.' / editor . php ? id_module = '.Modules::getModule($name)[' id '].' & id_record = '.$id_record."' method = 'post' id = 'delete-form-".$r[' id ']."' role = 'form' >
< input type = 'hidden' name = 'backto' value = 'record-edit' >
< input type = 'hidden' name = 'id_record' value = '".$id_record."' >
< input type = 'hidden' name = 'idriga' value = '".$r[' id ']."' >
< input type = 'hidden' name = 'dir' value = '".$dir."' >
< input type = 'hidden' name = 'op' value = '".$delete."' > " ;
if ( ! empty ( $r [ 'idarticolo' ])) {
echo "
< input type = 'hidden' name = 'idarticolo' value = '".$r[' idarticolo ']."' > " ;
}
echo "
< div class = 'input-group-btn' > " ;
if ( ! empty ( $r [ 'idarticolo' ]) && $r [ 'abilita_serial' ]) {
echo "
2017-09-05 17:31:58 +02:00
< a class = 'btn btn-primary btn-xs' data - toggle = 'tooltip' title = 'Aggiorna SN...' onclick = \ " launch_modal( 'Aggiorna SN', ' " . $rootdir . '/modules/fatture/add_serial.php?id_module=' . $id_module . '&id_record=' . $id_record . '&idriga=' . $r [ 'id' ] . '&idarticolo=' . $r [ 'idarticolo' ] . " ', 1 ); \" ><i class='fa fa-barcode' aria-hidden='true'></i></a> " ;
2017-08-04 16:28:16 +02:00
}
echo "
< a class = 'btn btn-xs btn-warning' title = 'Modifica questa riga...' onclick = \ " launch_modal( 'Modifica riga', ' " . $rootdir . '/modules/ordini/add_riga.php?id_module=' . $id_module . '&id_record=' . $id_record . '&idriga=' . $r [ 'id' ] . '&dir=' . $dir . " ', 1 ); \" ><i class='fa fa-edit'></i></a>
2017-08-28 09:50:25 +02:00
< a class = 'btn btn-xs btn-danger' title = 'Rimuovi questa riga...' onclick = \ " if( confirm('Rimuovere questa riga dall \\ 'ordine?') ) { $ ('#delete-form- " . $r [ 'id' ] . " ').submit(); } \" ><i class='fa fa-trash'></i></a>
2017-08-04 16:28:16 +02:00
</ div >
</ form > " ;
}
2017-08-28 15:29:03 +02:00
if ( ! str_contains ( $r [ 'descrizione' ], 'SCONTO' )) {
2017-08-04 16:28:16 +02:00
echo '
< div class = " handle clickable " style = " padding:10px " >
< i class = " fa fa-sort " ></ i >
</ div > ' ;
}
echo '
</ td >
</ tr > ' ;
}
}
echo '
</ tbody > ' ;
// Calcoli
$imponibile = sum ( array_column ( $rs , 'subtotale' ));
$sconto = sum ( array_column ( $rs , 'sconto' ));
$iva = sum ( array_column ( $rs , 'iva' ));
$imponibile_scontato = sum ( $imponibile , - $sconto );
$totale_iva = sum ( $iva , $records [ 0 ][ 'iva_rivalsainps' ]);
$totale = sum ([
$imponibile_scontato ,
$records [ 0 ][ 'rivalsainps' ],
$totale_iva ,
]);
$netto_a_pagare = sum ([
$totale ,
$marca_da_bollo ,
- $records [ 0 ][ 'ritenutaacconto' ],
]);
// IMPONIBILE
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Imponibile ')).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($imponibile).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
// SCONTO
if ( abs ( $sconto ) > 0 ) {
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Sconto ')).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($sconto).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
// IMPONIBILE SCONTATO
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Imponibile scontato ')).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($imponibile_scontato).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
$totale -= $sconto ;
}
// RIVALSA INPS
if ( abs ( $records [ 0 ][ 'rivalsainps' ]) > 0 ) {
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Rivalsa INPS ')).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($records[0][' rivalsainps ']).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
}
// IVA
if ( abs ( $totale_iva ) > 0 ) {
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Iva ')).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($totale_iva).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
}
// TOTALE
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Totale ')).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($totale).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
// Mostra marca da bollo se c'è
if ( abs ( $records [ 0 ][ 'bollo' ]) > 0 ) {
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Marca da bollo ')).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($records[0][' bollo ']).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
}
// RITENUTA D'ACCONTO
if ( abs ( $records [ 0 ][ 'ritenutaacconto' ]) > 0 ) {
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr("Ritenuta d' acconto " )).':</b>
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($records[0][' ritenutaacconto ']).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
}
// NETTO A PAGARE
if ( $totale != $netto_a_pagare ) {
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Netto a pagare ')).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($netto_a_pagare).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
}
echo '
</ table > ' ;
echo '
< script >
$ ( document ) . ready ( function (){
$ ( " .sortable " ) . each ( function () {
$ ( this ) . sortable ({
axis : " y " ,
handle : " .handle " ,
cursor : " move " ,
dropOnEmpty : true ,
scroll : true ,
start : function ( event , ui ) {
ui . item . data ( " start " , ui . item . index ());
},
update : function ( event , ui ) {
$ . post ( " '. $rootdir .'/actions.php " , {
id : ui . item . data ( " id " ),
id_module : '.$id_module.' ,
id_record : '.$id_record.' ,
op : " update_position " ,
start : ui . item . data ( " start " ),
end : ui . item . index ()
});
}
});
});
});
</ script > ' ;