openstamanager/modules/ddt/row-list.php

291 lines
8.0 KiB
PHP
Raw Normal View History

<?php
include_once __DIR__.'/../../core.php';
echo '
<table class="table table-striped table-hover table-condensed table-bordered">
<tr>
<th>'.tr('Descrizione').'</th>
<th width="120">'.tr('Q.').' <i title="'.tr('da evadere').' / '.tr('totale').'" class="tip fa fa-question-circle-o"></i></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>
<th width="60"></th>
</tr>
<tbody class="sortable">';
2020-01-17 17:31:07 +01:00
// Righe documento
$righe = $ddt->getRighe();
foreach ($righe as $riga) {
$r = $riga->toArray();
$extra = '';
$mancanti = 0;
// 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_ddt='.prepare($r['id'])), 'serial');
$mancanti = $r['qta'] - count($serials);
if ($mancanti > 0) {
$extra = 'class="warning"';
} else {
$mancanti = 0;
}
2020-01-17 17:31:07 +01:00
}
2020-01-17 17:31:46 +01:00
echo '
<tr data-id="'.$r['id'].'" '.$extra.'>
<td align="left">';
2020-01-17 17:31:46 +01:00
if (!empty($r['idarticolo'])) {
echo '
2020-01-17 17:31:07 +01:00
'.Modules::link('Articoli', $r['idarticolo'], $riga->articolo->codice.' - '.$r['descrizione']);
2020-01-17 17:31:46 +01:00
if (!empty($r['abilita_serial'])) {
if (!empty($mancanti)) {
echo '
<br><b><small class="text-danger">'.tr('_NUM_ serial mancanti', [
'_NUM_' => $mancanti,
]).'</small></b>';
2020-01-17 17:31:46 +01:00
}
2020-01-17 17:31:46 +01:00
if (!empty($serials)) {
echo '
<br>'.tr('SN').': '.implode(', ', $serials);
}
}
2020-01-17 17:31:46 +01:00
} else {
echo nl2br($r['descrizione']);
}
2020-01-17 17:31:46 +01:00
// Aggiunta dei riferimenti ai documenti
$ref = doc_references($r, $dir, ['idddt']);
2020-01-17 17:31:46 +01:00
if (!empty($ref)) {
echo '
<br>'.Modules::link($ref['module'], $ref['id'], $ref['description'], $ref['description']);
2020-01-17 17:31:46 +01:00
}
2020-01-17 17:31:46 +01:00
echo '
</td>';
2020-01-17 17:31:46 +01:00
echo '
<td class="text-center">';
2020-01-17 17:31:46 +01:00
if (empty($r['is_descrizione'])) {
echo '
<span>'.Translator::numberToLocale($r['qta'] - $r['qta_evasa'], 'qta').' / '.Translator::numberToLocale($r['qta'], 'qta').'</span>';
2020-01-17 17:31:46 +01:00
}
echo '
</td>';
2020-01-17 17:31:46 +01:00
// Unità di misura
echo '
<td class="text-center">';
2020-01-17 17:31:46 +01:00
if (empty($r['is_descrizione'])) {
echo '
2020-01-17 17:31:46 +01:00
'.$r['um'];
}
echo '
</td>';
2020-01-17 17:31:46 +01:00
// Costo unitario
echo '
<td class="text-right">';
2020-01-17 17:31:46 +01:00
if (empty($r['is_descrizione'])) {
echo '
'.moneyFormat($r['subtotale'] / $r['qta']);
2020-01-17 17:31:46 +01:00
if (abs($r['sconto_unitario']) > 0) {
$text = $r['sconto_unitario'] > 0 ? tr('sconto _TOT_ _TYPE_') : tr('maggiorazione _TOT_ _TYPE_');
2019-07-11 17:44:42 +02:00
2020-01-17 17:31:46 +01:00
echo '
2019-07-11 17:44:42 +02:00
<br><small class="label label-danger">'.replace($text, [
'_TOT_' => Translator::numberToLocale(abs($r['sconto_unitario'])),
'_TYPE_' => ($r['tipo_sconto'] == 'PRC' ? '%' : currency()),
2018-02-17 09:02:19 +01:00
]).'</small>';
}
2020-01-17 17:31:46 +01:00
}
echo '
</td>';
2020-01-17 17:31:46 +01:00
// Iva
echo '
<td class="text-right">';
2020-01-17 17:31:46 +01:00
if (empty($r['is_descrizione'])) {
echo '
'.moneyFormat($r['iva']).'
<br><small class="help-block">'.$r['desc_iva'].'</small>';
2020-01-17 17:31:46 +01:00
}
echo '
</td>';
2020-01-17 17:31:46 +01:00
// Imponibile
echo '
<td class="text-right">';
2020-01-17 17:31:46 +01:00
if (empty($r['is_descrizione'])) {
echo '
2020-01-17 17:31:46 +01:00
'.moneyFormat($r['subtotale'] - $r['sconto']);
}
echo '
</td>';
2020-01-17 17:31:46 +01:00
// Possibilità di rimuovere una riga solo se il ddt non è evaso
echo '
<td class="text-center">';
2020-01-17 17:31:07 +01:00
2020-01-17 17:31:46 +01:00
if ($record['flag_completato'] == 0) {
echo "
2018-10-26 19:39:34 +02:00
<form action='".$rootdir.'/editor.php?id_module='.$id_module.'&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']."'>
2020-01-17 17:31:07 +01:00
<input type='hidden' name='type' value='".get_class($riga)."'>
2019-10-01 18:32:06 +02:00
<input type='hidden' name='op' value='delete_riga'>
<div class='input-group-btn'>";
2020-01-17 17:31:46 +01:00
if (!empty($r['idarticolo']) && $r['abilita_serial']) {
echo "
2019-07-29 13:16:55 +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']."');\"><i class='fa fa-barcode' aria-hidden='true'></i></a>";
2020-01-17 17:31:46 +01:00
}
2020-01-17 17:31:46 +01:00
echo "
2020-01-17 17:31:07 +01:00
<a class='btn btn-xs btn-warning' title='Modifica questa riga...' onclick=\"launch_modal('Modifica riga', '".$rootdir.'/modules/ddt/row-edit.php?id_module='.$id_module.'&id_record='.$id_record.'&idriga='.$r['id'].'&type='.urlencode(get_class($riga))."');\">
<i class='fa fa-edit'></i>
</a>
<a class='btn btn-xs btn-danger' title='Rimuovi questa riga...' onclick=\"if( confirm('Rimuovere questa riga dal ddt?') ){ $('#delete-form-".$r['id']."').submit(); }\">
<i class='fa fa-trash'></i>
</a>
</div>
</form>";
2020-01-17 17:31:46 +01:00
}
2019-05-04 00:32:28 +02:00
2020-01-17 17:31:46 +01:00
echo '
<div class="handle clickable" style="padding:10px">
<i class="fa fa-sort"></i>
</div>';
2020-01-17 17:31:46 +01:00
echo '
</td>
</tr>';
}
echo '
</tbody>';
// Calcoli
2019-07-12 17:35:14 +02:00
$imponibile = abs($ddt->imponibile);
$sconto = $ddt->sconto;
$totale_imponibile = abs($ddt->totale_imponibile);
$iva = abs($ddt->iva);
$totale = abs($ddt->totale);
// IMPONIBILE
echo '
<tr>
<td colspan="5" class="text-right">
<b>'.tr('Imponibile', [], ['upper' => true]).':</b>
</td>
<td align="right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($imponibile, 2).'
</td>
<td></td>
</tr>';
2019-07-12 17:35:14 +02:00
// SCONTO
if (!empty($sconto)) {
echo '
<tr>
<td colspan="5" class="text-right">
2019-07-12 12:40:13 +02:00
<b><span class="tip" title="'.tr('Un importo positivo indica uno sconto, mentre uno negativo indica una maggiorazione').'"> <i class="fa fa-question-circle-o"></i> '.tr('Sconto/maggiorazione', [], ['upper' => true]).':</span></b>
</td>
<td align="right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($sconto, 2).'
</td>
<td></td>
</tr>';
2019-07-11 17:44:42 +02:00
// TOTALE IMPONIBILE
echo '
<tr>
<td colspan="5" class="text-right">
2019-07-11 17:44:42 +02:00
<b>'.tr('Totale imponibile', [], ['upper' => true]).':</b>
</td>
<td align="right">
2019-07-11 17:44:42 +02:00
'.moneyFormat($totale_imponibile, 2).'
</td>
<td></td>
</tr>';
}
2019-07-12 17:35:14 +02:00
// IVA
echo '
<tr>
<td colspan="5" class="text-right">
<b>'.tr('IVA', [], ['upper' => true]).':</b>
</td>
<td align="right">
2019-07-12 17:35:14 +02:00
'.moneyFormat($iva, 2).'
</td>
<td></td>
</tr>';
// TOTALE
echo '
<tr>
<td colspan="5" class="text-right">
<b>'.tr('Totale', [], ['upper' => true]).':</b>
</td>
<td align="right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($totale, 2).'
</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,
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-28 08:07:56 +01: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,
});
}
});
});
});
</script>';