2017-08-04 16:28:16 +02:00
< ? php
include_once __DIR__ . '/../../core.php' ;
2019-01-01 11:39:20 +01:00
use Modules\Fatture\Components\Articolo ;
use Modules\Fatture\Components\Descrizione ;
use Modules\Fatture\Components\Riga ;
2018-12-23 16:16:59 +01:00
// Righe fattura
$righe = $fattura -> getRighe ();
2017-08-04 16:28:16 +02:00
echo '
< table class = " table table-striped table-hover table-condensed table-bordered " >
2018-01-14 17:46:00 +01:00
< thead >
< tr >
< th > '.tr(' Descrizione ').' </ th >
< th width = " 120 " > '.tr(' Q . tà ').' </ th >
< th width = " 80 " > '.tr(' U . m . ').' </ th >
2018-12-23 16:16:59 +01:00
< th width = " 120 " > '.tr(' Prezzo unitario ').' </ th >
2018-01-14 17:46:00 +01:00
< th width = " 120 " > '.tr(' Iva ').' </ th >
2018-07-10 16:01:28 +02:00
< th width = " 120 " > '.tr(' Importo ').' </ th >
2018-01-14 17:46:00 +01:00
< th width = " 60 " ></ th >
</ tr >
</ thead >
2017-08-04 16:28:16 +02:00
< tbody class = " sortable " > ' ;
2018-12-23 16:16:59 +01:00
foreach ( $righe as $riga ) {
// Valori assoluti
$riga [ 'qta' ] = abs ( $riga [ 'qta' ]);
$riga [ 'prezzo_unitario_acquisto' ] = abs ( $riga [ 'prezzo_unitario_acquisto' ]);
$riga [ 'subtotale' ] = abs ( $riga [ 'subtotale' ]);
$riga [ 'sconto_unitario' ] = abs ( $riga [ 'sconto_unitario' ]);
$riga [ 'sconto' ] = abs ( $riga [ 'sconto' ]);
$riga [ 'iva' ] = abs ( $riga [ 'iva' ]);
2019-01-09 17:09:43 +01:00
2019-01-10 18:41:25 +01:00
if ( empty ( $riga [ 'is_descrizione' ])) {
$riga [ 'descrizione_conto' ] = $dbo -> fetchOne ( 'SELECT descrizione FROM co_pianodeiconti3 WHERE id = ' . prepare ( $riga [ 'idconto' ]))[ 'descrizione' ];
}
2018-12-23 16:16:59 +01:00
$extra = '' ;
2017-08-04 16:28:16 +02:00
2018-12-23 16:16:59 +01:00
$ref_modulo = null ;
$ref_id = null ;
2019-01-09 17:09:43 +01:00
2019-01-08 17:20:23 +01:00
// Articoli
2019-01-10 18:41:25 +01:00
if ( $riga instanceof Articolo ) {
2019-01-08 17:20:23 +01:00
$ref_modulo = Modules :: get ( 'Articoli' )[ 'id' ];
$ref_id = $riga [ 'idarticolo' ];
$riga [ 'descrizione' ] = ( ! empty ( $riga -> articolo ) ? $riga -> articolo -> codice . ' - ' : '' ) . $riga [ 'descrizione' ];
$delete = 'unlink_articolo' ;
$extra = '' ;
$mancanti = 0 ;
}
2019-01-10 18:41:25 +01:00
// Intervento
elseif ( ! empty ( $riga [ 'idintervento' ])) {
//$ref_modulo = Modules::get('Interventi')['id'];
//$ref_id = $riga['idintervento'];
$delete = 'unlink_intervento' ;
}
// Preventivi
elseif ( ! empty ( $riga [ 'idpreventivo' ])) {
//$ref_modulo = Modules::get('Preventivi')['id'];
//$ref_id = $riga['idpreventivo'];
$delete = 'unlink_preventivo' ;
}
// Contratti
elseif ( ! empty ( $riga [ 'idcontratto' ])) {
//$ref_modulo = Modules::get('Contratti')['id'];
//$ref_id = $riga['idcontratto'];
$contratto = $dbo -> fetchOne ( 'SELECT codice_cig,codice_cup,id_documento_fe FROM co_contratti WHERE id = ' . prepare ( $riga [ 'idcontratto' ]));
$riga [ 'codice_cig' ] = $contratto [ 'codice_cig' ];
$riga [ 'codice_cup' ] = $contratto [ 'codice_cup' ];
$riga [ 'id_documento_fe' ] = $contratto [ 'id_documento_fe' ];
$delete = 'unlink_contratto' ;
}
2018-12-23 16:16:59 +01:00
// Righe generiche
else {
$delete = 'unlink_riga' ;
}
2018-11-30 16:10:15 +01:00
2018-12-23 16:16:59 +01:00
// Individuazione dei seriali
if ( ! empty ( $riga [ 'abilita_serial' ])) {
2018-12-24 10:46:59 +01:00
$serials = $riga -> serials ;
2018-12-23 16:16:59 +01:00
$mancanti = $riga [ 'qta' ] - count ( $serials );
2018-11-30 16:10:15 +01:00
2018-12-23 16:16:59 +01:00
if ( $mancanti > 0 ) {
$extra = 'class="warning"' ;
} else {
$mancanti = 0 ;
2018-10-30 10:27:44 +01:00
}
2018-12-23 16:16:59 +01:00
}
2019-01-09 17:09:43 +01:00
2019-01-10 18:41:25 +01:00
$extra_riga = '' ;
$extra_riga = tr ( '_DESCRIZIONE_CONTO_ _CODICE_CIG_ _CODICE_CUP_ _ID_DOCUMENTO_' , [
'_DESCRIZIONE_CONTO_' => $riga [ 'descrizione_conto' ] ? : null ,
'_CODICE_CIG_' => $riga [ 'codice_cig' ] ? '<br>CIG: ' . $riga [ 'codice_cig' ] : null ,
'_CODICE_CUP_' => $riga [ 'codice_cup' ] ? '<br>CUP: ' . $riga [ 'codice_cup' ] : null ,
'_ID_DOCUMENTO_' => $riga [ 'id_documento_fe' ] ? '<br>DOC: ' . $riga [ 'id_documento_fe' ] : null ,
]);
2018-12-23 16:16:59 +01:00
echo '
< tr data - id = " '. $riga['id'] .' " '.$extra.' >
2017-08-04 16:28:16 +02:00
< td >
2018-12-23 16:16:59 +01:00
'.Modules::link($ref_modulo, $ref_id, $riga[' descrizione ']).'
2019-01-10 18:41:25 +01:00
< small class = " pull-right text-muted " > '.$extra_riga.' </ small > ' ;
2017-08-04 16:28:16 +02:00
2018-12-23 16:16:59 +01:00
if ( ! empty ( $riga [ 'abilita_serial' ])) {
if ( ! empty ( $mancanti )) {
echo '
2017-09-10 14:35:41 +02:00
< br >< b >< small class = " text-danger " > '.tr(' _NUM_ serial mancanti ' , [
'_NUM_' => $mancanti ,
]) . '</small></b>' ;
2018-12-23 16:16:59 +01: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
}
2018-12-23 16:16:59 +01:00
}
2017-08-04 16:28:16 +02:00
2018-12-23 16:16:59 +01:00
// Aggiunta dei riferimenti ai documenti
2018-12-24 10:46:59 +01:00
if ( $fattura -> isNotaDiAccredito ()) {
2018-12-23 16:16:59 +01:00
$data = $dbo -> fetchArray ( " SELECT IF(numero_esterno != '', numero_esterno, numero) AS numero, data FROM co_documenti WHERE id = " . prepare ( $record [ 'ref_documento' ]));
2018-07-04 12:57:53 +02:00
2018-12-23 16:16:59 +01:00
$text = tr ( 'Rif. fattura _NUM_ del _DATE_' , [
2018-07-04 12:57:53 +02:00
'_NUM_' => $data [ 0 ][ 'numero' ],
'_DATE_' => Translator :: dateToLocale ( $data [ 0 ][ 'data' ]),
]);
2018-12-23 16:16:59 +01:00
echo '
2018-07-18 15:20:10 +02:00
< br > '.Modules::link(' Fatture di vendita ', $record[' ref_documento ' ], $text , $text );
2018-12-23 16:16:59 +01:00
}
2017-09-05 17:31:58 +02:00
2019-01-10 18:41:25 +01:00
$ref = doc_references ( $riga , $dir , [ 'iddocumento' ]);
2018-12-23 16:16:59 +01:00
if ( ! empty ( $ref )) {
echo '
2018-06-22 17:52:51 +02:00
< br > '.Modules::link($ref[' module '], $ref[' id '], $ref[' description '], $ref[' description ' ]);
2018-12-23 16:16:59 +01:00
}
2017-08-04 16:28:16 +02:00
2018-12-23 16:16:59 +01:00
echo '
2017-08-04 16:28:16 +02:00
</ td > ' ;
2018-12-23 16:16:59 +01:00
echo '
< td class = " text-center " > ' ;
2018-02-15 16:44:16 +01:00
2018-12-23 16:16:59 +01:00
if ( ! $riga instanceof Descrizione ) {
2018-02-15 16:44:16 +01:00
echo '
2018-12-23 16:16:59 +01:00
'.Translator::numberToLocale($riga->qta, ' qta ' );
}
echo '
2017-08-04 16:28:16 +02:00
</ td > ' ;
2018-12-23 16:16:59 +01:00
// Unità di misura
echo '
2018-01-18 19:03:06 +01:00
< td class = " text-center " > ' ;
2018-02-15 16:44:16 +01:00
2018-12-23 16:16:59 +01:00
if ( ! $riga instanceof Descrizione ) {
2018-01-18 19:03:06 +01:00
echo '
2018-12-23 16:16:59 +01:00
'.$riga[' um ' ];
}
echo '
2017-08-04 16:28:16 +02:00
</ td > ' ;
2018-12-23 16:16:59 +01:00
// Prezzi unitari
echo '
2018-12-23 14:25:20 +01:00
< td class = " text-right " > ' ;
2018-12-23 16:16:59 +01:00
if ( ! $riga instanceof Descrizione ) {
2017-08-04 16:28:16 +02:00
echo '
2018-12-24 10:46:59 +01:00
'.Translator::numberToLocale($riga->prezzo_unitario_vendita).' & euro ; ' ;
if ( $dir == 'entrata' ) {
echo '
2018-12-23 16:16:59 +01:00
< br >< small >
'.tr(' Acquisto ').' : '.Translator::numberToLocale($riga->prezzo_unitario_acquisto).' & euro ;
</ small > ' ;
2018-12-24 10:46:59 +01:00
}
2018-02-15 16:44:16 +01:00
2018-12-23 16:16:59 +01:00
if ( $riga -> sconto_unitario > 0 ) {
2018-02-17 09:02:19 +01:00
echo '
2018-05-18 18:43:01 +02:00
< br >< small class = " label label-danger " > '.tr(' sconto _TOT_ _TYPE_ ' , [
2018-12-23 16:16:59 +01:00
'_TOT_' => Translator :: numberToLocale ( $riga -> sconto_unitario ),
'_TYPE_' => ( $riga -> tipo_sconto == 'PRC' ? '%' : '€' ),
2018-02-17 09:02:19 +01:00
]) . '</small>' ;
2017-08-04 16:28:16 +02:00
}
2018-12-23 16:16:59 +01:00
}
2018-02-15 16:44:16 +01:00
2018-12-23 16:16:59 +01:00
echo '
2017-08-04 16:28:16 +02:00
</ td > ' ;
2018-12-23 16:16:59 +01:00
// Iva
echo '
2018-01-18 19:03:06 +01:00
< td class = " text-right " > ' ;
2018-02-15 16:44:16 +01:00
2018-12-23 16:16:59 +01:00
if ( ! $riga instanceof Descrizione ) {
2018-01-18 19:03:06 +01:00
echo '
2018-12-23 16:16:59 +01:00
'.Translator::numberToLocale($riga->iva).' & euro ;
< br >< small class = " help-block " > '.$riga->desc_iva.' </ small > ' ;
}
2017-08-04 16:28:16 +02:00
2018-12-23 16:16:59 +01:00
echo '
2017-08-04 16:28:16 +02:00
</ td > ' ;
2018-12-23 16:16:59 +01:00
// Importo
echo '
< td class = " text-right " > ' ;
if ( ! $riga instanceof Descrizione ) {
2018-12-23 14:25:20 +01:00
echo '
2018-12-27 16:22:20 +01:00
'.Translator::numberToLocale($riga->imponibile_scontato).' & euro ; ' ;
2018-12-28 08:07:56 +01:00
/*
< br >< small class = " text-'.( $riga->guadagno > 0 ? 'success' : 'danger').' " >
'.tr(' Guadagno ').' : '.Translator::numberToLocale($riga->guadagno).' & euro ;
</ small > ' ;
*/
2018-12-23 16:16:59 +01:00
}
echo '
2018-12-23 14:25:20 +01:00
</ td > ' ;
2018-12-23 16:16:59 +01:00
// Possibilità di rimuovere una riga solo se la fattura non è pagata
echo '
2017-08-04 16:28:16 +02:00
< td class = " text-center " > ' ;
2018-12-23 16:16:59 +01:00
if ( $record [ 'stato' ] != 'Pagato' && $record [ 'stato' ] != 'Emessa' ) {
echo "
< form action = '".$rootdir.' / editor . php ? id_module = '.$id_module.' & id_record = '.$id_record."' method = 'post' id = 'delete-form-".$riga[' id ']."' role = 'form' >
2017-08-04 16:28:16 +02:00
< input type = 'hidden' name = 'backto' value = 'record-edit' >
2018-12-23 16:16:59 +01:00
< input type = 'hidden' name = 'idriga' value = '".$riga[' id ']."' >
2017-08-04 16:28:16 +02:00
< input type = 'hidden' name = 'op' value = '".$delete."' > " ;
2018-12-23 16:16:59 +01:00
if ( $riga instanceof Articolo ) {
2017-08-04 16:28:16 +02:00
echo "
2018-12-23 16:16:59 +01:00
< input type = 'hidden' name = 'idarticolo' value = '".$riga[' idarticolo ']."' > " ;
}
2017-08-04 16:28:16 +02:00
2018-12-23 16:16:59 +01:00
echo "
< div class = 'input-group-btn' > " ;
2017-08-04 16:28:16 +02:00
2018-12-24 10:46:59 +01:00
if ( ! $fattura -> isNotaDiAccredito () && $riga instanceof Articolo && $riga [ 'abilita_serial' ] && ( empty ( $riga [ 'idddt' ]) || empty ( $riga [ 'idintervento' ]))) {
2017-08-04 16:28:16 +02:00
echo "
2018-12-23 16:16:59 +01: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=' . $riga [ 'id' ] . '&idarticolo=' . $riga [ 'idarticolo' ] . " ', 1 ); \" ><i class='fa fa-barcode' aria-hidden='true'></i></a> " ;
}
2018-02-19 17:57:27 +01:00
2018-12-23 16:16:59 +01:00
echo "
< a class = 'btn btn-xs btn-warning' title = 'Modifica questa riga...' onclick = \ " launch_modal( 'Modifica riga', ' " . $rootdir . '/modules/fatture/row-edit.php?id_module=' . $id_module . '&id_record=' . $id_record . '&idriga=' . $riga [ 'id' ] . " ', 1 ); \" ><i class='fa fa-edit'></i></a>
< a class = 'btn btn-xs btn-danger' title = 'Rimuovi questa riga...' onclick = \ " if( confirm('Rimuovere questa riga dalla fattura?') ) { $ ('#delete-form- " . $riga [ 'id' ] . " ').submit(); } \" ><i class='fa fa-trash'></i></a>
2017-08-04 16:28:16 +02:00
</ div >
</ form > " ;
2018-12-23 16:16:59 +01:00
}
2017-08-04 16:28:16 +02:00
2018-12-23 16:16:59 +01:00
echo '
2017-08-04 16:28:16 +02:00
< div class = " handle clickable " style = " padding:10px " >
< i class = " fa fa-sort " ></ i >
</ div > ' ;
2018-12-23 16:16:59 +01:00
echo '
2017-08-04 16:28:16 +02:00
</ td >
</ tr > ' ;
2018-12-23 16:16:59 +01:00
}
$sconto_globale = $fattura -> scontoGlobale ;
if ( ! empty ( $sconto_globale )) {
echo '
< tr >
< td > '.$sconto_globale->descrizione.' </ td >
< td class = " text-center " > '.Translator::numberToLocale(1, ' qta ').' </ td >
< td ></ td >
< td class = " text-right " > '.Translator::numberToLocale($sconto_globale->totale).' & euro ; </ td >
< td class = " text-right " > '.Translator::numberToLocale($sconto_globale->iva).' & euro ; </ td >
< td class = " text-right " > '.Translator::numberToLocale($sconto_globale->totale).' & euro ; </ td >
</ tr > ' ;
2017-08-04 16:28:16 +02:00
}
echo '
</ tbody > ' ;
2018-12-23 16:16:59 +01:00
$imponibile = abs ( $fattura -> imponibile );
$sconto = abs ( $fattura -> sconto );
$imponibile_scontato = abs ( $fattura -> imponibile_scontato );
$iva = abs ( $fattura -> iva );
$totale = abs ( $fattura -> totale );
$netto_a_pagare = abs ( $fattura -> netto );
$guadagno = $fattura -> guadagno ;
2018-12-23 14:25:20 +01:00
2017-08-04 16:28:16 +02:00
// IMPONIBILE
echo '
< tr >
2018-12-23 16:16:59 +01:00
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr(' Imponibile ', [], [' upper ' => true]).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($imponibile).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
// SCONTO
2018-12-23 16:16:59 +01:00
if ( ! empty ( $sconto )) {
2017-08-04 16:28:16 +02:00
echo '
< tr >
2018-12-23 16:16:59 +01:00
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr(' Sconto ', [], [' upper ' => true]).' :</ 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 >
2018-12-23 16:16:59 +01:00
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr(' Imponibile scontato ', [], [' upper ' => true]).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($imponibile_scontato).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
}
// RIVALSA INPS
2018-12-23 16:16:59 +01:00
if ( ! empty ( $fattura -> rivalsa_inps )) {
2017-08-04 16:28:16 +02:00
echo '
< tr >
2018-12-23 16:16:59 +01:00
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr(' Rivalsa INPS ', [], [' upper ' => true]).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
2018-12-23 16:16:59 +01:00
'.Translator::numberToLocale($fattura->rivalsa_inps).' & euro ;
2017-08-04 16:28:16 +02:00
</ td >
< td ></ td >
</ tr > ' ;
}
// IVA
2018-12-23 16:16:59 +01:00
if ( ! empty ( $iva )) {
2017-08-04 16:28:16 +02:00
echo '
< tr >
2018-12-28 18:03:38 +01:00
< td colspan = " 5 " class = " text-right " > ' ;
2018-12-29 12:03:22 +01:00
if ( $records [ 0 ][ 'split_payment' ]) {
echo '<b>' . tr ( 'Iva a carico del destinatario' , [], [ 'upper' => true ]) . ':</b>' ;
} else {
echo '<b>' . tr ( 'Iva' , [], [ 'upper' => true ]) . ':</b>' ;
}
echo '
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
2018-12-23 16:16:59 +01:00
'.Translator::numberToLocale($iva).' & euro ;
2017-08-04 16:28:16 +02:00
</ td >
< td ></ td >
</ tr > ' ;
}
// TOTALE
echo '
< tr >
2018-12-23 16:16:59 +01:00
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr(' Totale ', [], [' upper ' => true]).' :</ 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'è
2018-12-23 16:16:59 +01:00
if ( ! empty ( $fattura -> bollo )) {
2017-08-04 16:28:16 +02:00
echo '
< tr >
2018-12-23 16:16:59 +01:00
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr(' Marca da bollo ', [], [' upper ' => true]).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
2018-12-23 16:16:59 +01:00
'.Translator::numberToLocale($fattura->bollo).' & euro ;
2017-08-04 16:28:16 +02:00
</ td >
< td ></ td >
</ tr > ' ;
}
// RITENUTA D'ACCONTO
2018-12-23 16:16:59 +01:00
if ( ! empty ( $fattura -> ritenuta_acconto )) {
2017-08-04 16:28:16 +02:00
echo '
< tr >
2018-12-23 16:16:59 +01:00
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr("Ritenuta d' acconto " , [], ['upper' => true]).':</b>
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
2018-12-23 16:16:59 +01:00
'.Translator::numberToLocale($fattura->ritenuta_acconto).' & euro ;
2017-08-04 16:28:16 +02:00
</ td >
< td ></ td >
</ tr > ' ;
}
// NETTO A PAGARE
if ( $totale != $netto_a_pagare ) {
echo '
< tr >
2018-12-23 16:16:59 +01:00
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr(' Netto a pagare ', [], [' upper ' => true]).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($netto_a_pagare).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
}
2018-12-23 14:25:20 +01:00
// GUADAGNO TOTALE
2018-12-24 10:46:59 +01:00
if ( $dir == 'entrata' ) {
$guadagno_style = $guadagno < 0 ? 'background-color: #FFC6C6; border: 3px solid red' : '' ;
2018-12-27 16:22:20 +01:00
/*
2018-12-24 10:46:59 +01:00
echo '
2018-12-23 14:25:20 +01:00
< tr >
2018-12-23 16:16:59 +01:00
< td colspan = " 5 " class = " text-right " >
< b > '.tr(' Guadagno ', [], [' upper ' => true]).' :</ b >
2018-12-23 14:25:20 +01:00
</ td >
2018-12-23 16:16:59 +01:00
< td align = " right " style = " '. $guadagno_style .' " >
'.Translator::numberToLocale($guadagno).' & euro ;
2018-12-23 14:25:20 +01:00
</ td >
< td ></ td >
</ tr > ' ;
2018-12-27 16:22:20 +01:00
*/
2018-12-24 10:46:59 +01:00
}
2018-12-23 14:25:20 +01:00
2017-08-04 16:28:16 +02:00
echo '
</ table > ' ;
echo '
< script >
$ ( document ) . ready ( function (){
$ ( " .sortable " ) . each ( function () {
$ ( this ) . sortable ({
axis : " y " ,
handle : " .handle " ,
cursor : " move " ,
dropOnEmpty : true ,
scroll : true ,
update : function ( event , ui ) {
2018-10-30 10:27:44 +01:00
var order = " " ;
$ ( " .table tr[data-id] " ) . each ( function (){
order += " , " + $ ( this ) . data ( " id " );
});
order = order . replace ( /^ , / , " " );
2018-12-23 16:16:59 +01:00
2017-08-04 16:28:16 +02:00
$ . post ( " '. $rootdir .'/actions.php " , {
id : ui . item . data ( " id " ),
id_module : '.$id_module.' ,
id_record : '.$id_record.' ,
op : " update_position " ,
2018-10-30 10:27:44 +01:00
order : order ,
2017-08-04 16:28:16 +02:00
});
}
});
});
});
</ script > ' ;