Aggiunto elenco righe evase in importazione

This commit is contained in:
Dasc3er 2021-07-20 09:28:37 +02:00
parent 20ca61c5d3
commit 1e6833e80f
1 changed files with 172 additions and 135 deletions

View File

@ -34,15 +34,21 @@ $final_module = Modules::get($name);
// IVA predefinita // IVA predefinita
$id_iva = $id_iva ?: setting('Iva predefinita'); $id_iva = $id_iva ?: setting('Iva predefinita');
$righe_totali = $documento->getRighe();
if ($final_module['name'] == 'Interventi') { if ($final_module['name'] == 'Interventi') {
$righe = $documento->getRighe()->where('qta_rimanente', '>', 0)->where('is_descrizione', '=', 0); $righe = $righe_totali->where('is_descrizione', '=', 0)
->where('qta_rimanente', '>', 0);
$righe_evase = $righe_totali->where('is_descrizione', '=', 0)
->where('qta_rimanente', '=', 0);
} elseif ($final_module['name'] == 'Ordini fornitore') { } elseif ($final_module['name'] == 'Ordini fornitore') {
$righe = $documento->getRighe(); $righe = $righe_totali;
$righe_evase = collect();
} else { } else {
$righe = $documento->getRighe()->where('qta_rimanente', '>', 0); $righe = $righe_totali->where('qta_rimanente', '>', 0);
$righe_evase = $righe_totali->where('qta_rimanente', '=', 0);
} }
if (empty($righe)) { if ($righe->isEmpty()) {
echo ' echo '
<p>'.tr('Non ci sono elementi da evadere').'...</p>'; <p>'.tr('Non ci sono elementi da evadere').'...</p>';
@ -355,8 +361,43 @@ echo '
</table> </table>
</div>'; </div>';
// Elenco righe evase completametne
if (!$righe_evase->isEmpty()) {
echo '
<div class="box box-info collapsable collapsed-box">
<div class="box-header with-border">
<h3 class="box-title">' . tr('Righe evase completamente') . '</h3>
<div class="box-tools pull-right">
<button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-plus"></i></button>
</div>
</div>
<table class="box-body table table-striped table-hover table-condensed">
<thead>
<tr>
<th>'.tr('Descrizione').'</th>
<th width="10%" class="text-center">'.tr('Q.').'</th>
</tr>
</thead>
<tbody>';
foreach ($righe_evase as $riga) {
echo '
<tr>
<td>'.$riga->descrizione.'</td>
<td class="text-center">'.numberFormat($riga->qta, 'qta').' '.$riga->um.'</td>
</tr>';
}
echo '
</tbody>
</table>
</div>';
}
// Gestione articolo sottoscorta
echo ' echo '
<div class="alert alert-warning hidden" id="articoli_sottoscorta"> <div class="alert alert-warning hidden" id="articoli_sottoscorta">
<table class="table table-condensed"> <table class="table table-condensed">
<thead> <thead>
<tr> <tr>
@ -369,7 +410,7 @@ echo '
<tbody></tbody> <tbody></tbody>
</table> </table>
</div>'; </div>';
echo ' echo '
@ -386,10 +427,7 @@ echo '
echo ' echo '
<script>$(document).ready(init)</script>'; <script>$(document).ready(init)</script>';
echo ' // Individuazione scorte
<script type="text/javascript">
';
$articoli = $documento->articoli->groupBy('idarticolo'); $articoli = $documento->articoli->groupBy('idarticolo');
$scorte = []; $scorte = [];
foreach ($articoli as $elenco) { foreach ($articoli as $elenco) {
@ -407,10 +445,12 @@ foreach ($articoli as $elenco) {
} }
echo ' echo '
var scorte = '.json_encode($scorte).'; <script type="text/javascript">
var abilita_scorte = '.intval(!$documento::$movimenta_magazzino && !empty($options['tipo_documento_finale']) && $options['tipo_documento_finale']::$movimenta_magazzino).'; var scorte = '.json_encode($scorte).';
var permetti_documento_vuoto = '.intval(!empty($options['allow-empty'])).';
var abilita_scorte = '.intval(!$documento::$movimenta_magazzino && !empty($options['tipo_documento_finale']) && $options['tipo_documento_finale']::$movimenta_magazzino).';
function controllaMagazzino() { function controllaMagazzino() {
if(!abilita_scorte) return; if(!abilita_scorte) return;
let righe = $("#righe_documento_importato tr"); let righe = $("#righe_documento_importato tr");
@ -437,7 +477,7 @@ function controllaMagazzino() {
for(const id_articolo in richieste) { for(const id_articolo in richieste) {
let qta_scorta = parseFloat(scorte[id_articolo]["qta"]); let qta_scorta = parseFloat(scorte[id_articolo]["qta"]);
let qta_richiesta = parseFloat(richieste[id_articolo]); let qta_richiesta = parseFloat(richieste[id_articolo]);
if ((qta_richiesta > qta_scorta) && (scorte[id_articolo]["servizio"] !== 1) ) { if ((qta_richiesta > qta_scorta) && (scorte[id_articolo]["servizio"] !== 1)) {
body.append(`<tr> body.append(`<tr>
<td>` + scorte[id_articolo]["descrizione"] + `</td> <td>` + scorte[id_articolo]["descrizione"] + `</td>
<td class="text-right">` + qta_richiesta.toLocale() + `</td> <td class="text-right">` + qta_richiesta.toLocale() + `</td>
@ -452,13 +492,13 @@ function controllaMagazzino() {
} else { } else {
sottoscorta.addClass("hidden"); sottoscorta.addClass("hidden");
} }
} }
$("input[name=righe]").each(function() { $("input[name=righe]").each(function() {
ricalcolaTotaleRiga($(this).val()); ricalcolaTotaleRiga($(this).val());
}); });
function ricalcolaTotaleRiga(r) { function ricalcolaTotaleRiga(r) {
let prezzo_unitario = $("#prezzo_unitario_" + r).val(); let prezzo_unitario = $("#prezzo_unitario_" + r).val();
let sconto = $("#sconto_unitario_" + r).val(); let sconto = $("#sconto_unitario_" + r).val();
@ -497,9 +537,9 @@ function ricalcolaTotaleRiga(r) {
ricalcolaTotale(); ricalcolaTotale();
} }
function ricalcolaTotale() { function ricalcolaTotale() {
let totale = 0.00; let totale = 0.00;
let totale_qta = 0; let totale_qta = 0;
@ -526,25 +566,23 @@ function ricalcolaTotale() {
totale_qta += qta; totale_qta += qta;
}); });
$("#totale").html((totale.toLocale()) + " " + globals.currency);'; $("#totale").html((totale.toLocale()) + " " + globals.currency);
if (empty($options['allow-empty'])) { if (!permetti_documento_vuoto) {
echo '
if (totale_qta > 0) { if (totale_qta > 0) {
$("#submit_btn").show(); $("#submit_btn").show();
} else { } else {
$("#submit_btn").hide(); $("#submit_btn").hide();
}'; }
} }
echo '
controllaMagazzino(); controllaMagazzino();
} }
ricalcolaTotale(); ricalcolaTotale();
$(document).ready(function(){ $(document).ready(function(){
if(input("id_ritenuta_acconto").get()){ if(input("id_ritenuta_acconto").get()) {
$("#calcolo_ritenuta_acconto").prop("required", true); $("#calcolo_ritenuta_acconto").prop("required", true);
} else{ } else{
$("#calcolo_ritenuta_acconto").prop("required", false); $("#calcolo_ritenuta_acconto").prop("required", false);
@ -552,9 +590,8 @@ ricalcolaTotale();
} }
$("#id_ritenuta_acconto").on("change", function(){ $("#id_ritenuta_acconto").on("change", function(){
if(input("id_ritenuta_acconto").get()){ if(input("id_ritenuta_acconto").get()) {
$("#calcolo_ritenuta_acconto").prop("required", true); $("#calcolo_ritenuta_acconto").prop("required", true);
} else{ } else{
$("#calcolo_ritenuta_acconto").prop("required", false); $("#calcolo_ritenuta_acconto").prop("required", false);
input("calcolo_ritenuta_acconto").set(""); input("calcolo_ritenuta_acconto").set("");