2020-02-24 18:30:05 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Modules\DDT\DDT;
|
|
|
|
use Modules\Ordini\Ordine;
|
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
include_once __DIR__.'/init.php';
|
|
|
|
|
|
|
|
$direzione = 'uscita';
|
|
|
|
$id_riga = get('id_riga');
|
|
|
|
$qta = get('qta');
|
|
|
|
|
|
|
|
$id_documento = get('id_documento');
|
|
|
|
$tipo_documento = get('tipo_documento');
|
2020-09-03 11:55:15 +02:00
|
|
|
if ($tipo_documento == 'ordine') {
|
|
|
|
$documento = Ordine::find($id_documento);
|
|
|
|
$righe_utilizzate = get('righe_ordini');
|
|
|
|
} else {
|
|
|
|
$documento = DDT::find($id_documento);
|
|
|
|
$righe_utilizzate = get('righe_ddt');
|
|
|
|
}
|
2020-02-24 18:30:05 +01:00
|
|
|
|
2020-09-03 11:55:15 +02:00
|
|
|
echo '
|
2020-02-24 18:30:05 +01:00
|
|
|
<table class="table table-striped table-hover table-condensed table-bordered">
|
|
|
|
<tr>
|
|
|
|
<th>'.tr('Descrizione').'</th>
|
|
|
|
<th width="120">'.tr('Q.tà').' <i title="'.tr('da evadere').' / '.tr('totale').'" class="tip fa fa-question-circle-o"></i></th>
|
|
|
|
<th class="text-center" width="60">#</th>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tbody>';
|
|
|
|
|
2020-09-03 11:55:15 +02:00
|
|
|
$id_riferimento = get('id_riferimento');
|
|
|
|
$righe = $documento->getRighe();
|
|
|
|
foreach ($righe as $riga) {
|
|
|
|
$qta_rimanente = $riga->qta_rimanente - $righe_utilizzate[$riga->id];
|
2020-02-24 18:30:05 +01:00
|
|
|
|
2020-09-03 11:55:15 +02:00
|
|
|
echo '
|
|
|
|
<tr '.($id_riferimento == $riga->id ? 'class="success"' : '').' data-type="'.get_class($riga).'" data-id="'.$riga->id.'" data-qta="'.$riga->qta.'" data-prezzo_unitario="'.$riga->prezzo_unitario.'">
|
2020-02-24 18:30:05 +01:00
|
|
|
<td>'.$riga->descrizione.'</td>
|
|
|
|
<td>'.numberFormat($qta_rimanente, 'qta').' / '.numberFormat($riga->qta, 'qta').'</td>
|
|
|
|
<td class="text-center">';
|
|
|
|
|
2020-09-03 11:55:15 +02:00
|
|
|
if ($qta_rimanente >= $qta) {
|
|
|
|
echo '
|
|
|
|
<button type="button" class="btn btn-info btn-xs" onclick="selezionaRiga(this)">
|
2020-02-24 18:30:05 +01:00
|
|
|
<i class="fa fa-check"></i>
|
|
|
|
</button>';
|
|
|
|
}
|
|
|
|
|
|
|
|
echo '
|
2020-09-03 11:55:15 +02:00
|
|
|
</td>
|
|
|
|
</tr>';
|
2020-02-24 18:30:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
echo '
|
2020-09-03 11:55:15 +02:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2020-02-24 18:30:05 +01:00
|
|
|
|
|
|
|
<script>
|
2020-09-03 11:55:15 +02:00
|
|
|
var documento_importazione = {
|
|
|
|
tipo: "'.$tipo_documento.'",
|
|
|
|
id: "'.$id_documento.'",
|
|
|
|
descrizione: "Rif. '.$tipo_documento.' num. '.$documento->numero.'",
|
|
|
|
};
|
|
|
|
|
|
|
|
function selezionaRiga(button) {
|
|
|
|
let riga = $(button).closest("tr");
|
|
|
|
|
|
|
|
let dati_riga = {
|
|
|
|
tipo: riga.data("type"),
|
|
|
|
id: riga.data("id"),
|
|
|
|
};
|
|
|
|
impostaRiferimento("'.$id_riga.'", documento_importazione, dati_riga);
|
|
|
|
|
|
|
|
$(button).closest(".modal").modal("hide");
|
2020-02-24 18:30:05 +01:00
|
|
|
}
|
|
|
|
</script>';
|