217 lines
9.7 KiB
PHP
Executable File
217 lines
9.7 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
|
* Copyright (C) DevCode s.r.l.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
// Descrizione
|
|
echo AppLegacy::internalLoad('descrizione.php', $result, $options);
|
|
|
|
// Conti, rivalsa INPS e ritenuta d'acconto
|
|
echo AppLegacy::internalLoad('conti.php', $result, $options);
|
|
|
|
// Iva
|
|
echo '
|
|
<div class="row">
|
|
<div class="col-md-4 '.(!empty($options['nascondi_prezzi']) ? 'hidden' : '').'">
|
|
{[ "type": "select", "label": "'.tr('Iva').'", "name": "idiva", "required": 1, "value": "'.$result['idiva'].'", "ajax-source": "iva", "select-options": '.json_encode($options['select-options']['iva']).' ]}
|
|
</div>';
|
|
|
|
// Quantità
|
|
echo '
|
|
<div class="col-md-4">
|
|
{[ "type": "number", "label": "'.tr('Q.tà').'", "name": "qta", "required": 1, "value": "'.abs($result['qta']).'", "decimals": "qta"'.(isset($result['max_qta']) ? ', "icon-after": "<span class=\"tip\" title=\"'.tr("L'elemento è collegato a un documento: la quantità massima ammessa è relativa allo stato di evasione dell'elemento nel documento di origine (quantità dell'elemento / quantità massima ammessa)").'\">/ '.numberFormat(abs($result['max_qta']), 'qta').' <i class=\"fa fa-question-circle-o\"></i></span>"' : '').', "min-value": "'.abs($result['qta_evasa']).'" ]}
|
|
</div>';
|
|
|
|
// Unità di misura
|
|
echo '
|
|
<div class="col-md-4">
|
|
{[ "type": "select", "label": "'.tr('Unità di misura').'", "icon-after": "add|'.Modules::get('Unità di misura')['id'].'", "name": "um", "value": "'.$result['um'].'", "ajax-source": "misure" ]}
|
|
</div>
|
|
</div>';
|
|
|
|
echo '
|
|
<div class="row '.(!empty($options['nascondi_prezzi']) ? 'hidden' : '').'">';
|
|
|
|
$width = $options['dir'] == 'entrata' ? 4 : 6;
|
|
$label = $options['dir'] == 'entrata' ? tr('Prezzo unitario di vendita') : tr('Prezzo unitario');
|
|
|
|
if ($options['dir'] == 'entrata') {
|
|
// Prezzo di acquisto unitario
|
|
echo '
|
|
<div class="col-md-'.$width.'">
|
|
{[ "type": "number", "label": "'.tr('Prezzo unitario di acquisto').'", "name": "costo_unitario", "value": "'.$result['costo_unitario'].'", "icon-after": "'.currency().'" ]}
|
|
</div>';
|
|
|
|
// Funzione per l'aggiornamento in tempo reale del guadagno
|
|
echo '
|
|
<script>
|
|
function aggiorna_guadagno() {
|
|
var costo_unitario = $("#costo_unitario").val().toEnglish();
|
|
var prezzo = $("#prezzo_unitario").val().toEnglish();
|
|
var sconto = $("#sconto").val().toEnglish();
|
|
if ($("#modals select[id^=\'tipo_sconto\']").val() === "PRC") {
|
|
sconto = sconto / 100 * prezzo;
|
|
}
|
|
|
|
var guadagno = prezzo - sconto - costo_unitario;
|
|
var margine = (((prezzo - sconto) * 100) / costo_unitario) - 100;
|
|
var parent = $("#costo_unitario").closest("div").parent();
|
|
var div = parent.find("div[id*=\"errors\"]");
|
|
var mediaponderata = 0;
|
|
|
|
margine = isNaN(margine) || !isFinite(margine) ? 0: margine; // Fix per magine NaN
|
|
|
|
if ($("#idarticolo").val()) {
|
|
mediaponderata = parseFloat($("#idarticolo").selectData().media_ponderata);
|
|
}
|
|
|
|
div.html("<table class=\"table table-extra-condensed\" style=\"margin-top:7px;\" >\
|
|
<tr>\
|
|
<td>\
|
|
<small> '.tr('Guadagno').':</small>\
|
|
</td>\
|
|
<td align=\"right\">\
|
|
<small>" + guadagno.toLocale() + "</small>\
|
|
</td>\
|
|
<td align=\"center\">\
|
|
<small>" + globals.currency + "</small>\
|
|
</td>\
|
|
</tr>\
|
|
<tr>\
|
|
<td>\
|
|
<small> '.tr('Margine').':</small>\
|
|
</td>\
|
|
<td align=\"right\">\
|
|
<small>" + margine.toLocale() + "<small>\
|
|
</td>\
|
|
<td align=\"center\">\
|
|
<small> %<small>\
|
|
</td>\
|
|
</tr>\
|
|
<tr>\
|
|
<td>\
|
|
<small> '.tr('Costo medio').':</small>\
|
|
</td>\
|
|
<td align=\"right\">\
|
|
<small>" + (mediaponderata!=0 ? mediaponderata.toLocale() : "- ") + "</small>\
|
|
</td>\
|
|
<td align=\"center\">\
|
|
<small>" + globals.currency + "</small>\
|
|
</td>\
|
|
</tr>\
|
|
</table>");
|
|
|
|
if (guadagno < 0) {
|
|
parent.addClass("has-error");
|
|
div.addClass("label-danger").removeClass("label-success");
|
|
} else {
|
|
parent.removeClass("has-error");
|
|
div.removeClass("label-danger").addClass("label-success");
|
|
}
|
|
}
|
|
|
|
$("#modals > div").on("shown.bs.modal", function () {
|
|
aggiorna_guadagno();
|
|
});
|
|
|
|
$("#prezzo_unitario").keyup(aggiorna_guadagno);
|
|
$("#costo_unitario").keyup(aggiorna_guadagno);
|
|
$("#sconto").keyup(aggiorna_guadagno);
|
|
$("#modals select[id^=\'tipo_sconto\']").change(aggiorna_guadagno);
|
|
</script>';
|
|
}
|
|
|
|
// Prezzo di vendita unitario
|
|
echo '
|
|
<div class="col-md-'.$width.'">
|
|
{[ "type": "number", "label": "'.$label.'", "name": "prezzo_unitario", "value": "'.$result['prezzo_unitario_corrente'].'", "required": 1, "icon-after": "'.currency().'", "help": "'.($options['dir'] == 'entrata' && setting('Utilizza prezzi di vendita comprensivi di IVA') ? tr('Importo IVA inclusa') : '').'" ]}
|
|
</div>';
|
|
|
|
// Sconto unitario
|
|
echo '
|
|
<div class="col-md-'.$width.'">
|
|
{[ "type": "number", "label": "'.tr('Sconto unitario').'", "name": "sconto", "value": "'.($result['sconto_percentuale'] ?: $result['sconto_unitario_corrente']).'", "icon-after": "choice|untprc|'.$result['tipo_sconto'].'", "help": "'.tr('Il valore positivo indica uno sconto. Per applicare una maggiorazione inserire un valore negativo.').'" ]}
|
|
</div>
|
|
</div>';
|
|
|
|
// Data prevista evasione (per ordini)
|
|
|
|
if (in_array($module['name'], ['Ordini cliente', 'Ordini fornitore', 'Preventivi'])) {
|
|
if ($options['action'] == 'add') {
|
|
if ($module['name'] == 'Ordini cliente') {
|
|
$confermato = setting('Conferma automaticamente le quantità negli ordini cliente');
|
|
} elseif ($module['name'] == 'Ordini fornitore') {
|
|
$confermato = setting('Conferma automaticamente le quantità negli ordini fornitore');
|
|
} else {
|
|
$confermato = setting('Conferma automaticamente le quantità nei preventivi');
|
|
}
|
|
} else {
|
|
$confermato = $result['confermato'];
|
|
}
|
|
echo '
|
|
<div class="box box-info collapsable collapsed-box">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">'.tr('Informazioni aggiuntive').'</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>
|
|
|
|
<div class="box-body">
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
{[ "type": "date", "label": "'.tr('Data prevista evasione').'", "name": "data_evasione", "value": "'.$result['data_evasione'].'" ]}
|
|
</div>
|
|
<div class="col-md-4">
|
|
{[ "type": "time", "label": "'.tr('Ora prevista evasione').'", "name": "ora_evasione", "value": "'.$result['ora_evasione'].'", "disabled": 1 ]}
|
|
</div>
|
|
<div class="col-md-4">
|
|
{[ "type": "checkbox", "label": "'.tr('Cambia data a tutte le righe').'", "name": "data_evasione_all", "value": "" ]}
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
|
|
</div>
|
|
<div class="col-md-4">
|
|
{[ "type": "checkbox", "label": "'.tr('Articolo confermato').'", "name": "confermato", "value": "'.$confermato.'" ]}
|
|
</div>
|
|
<div class="col-md-4">
|
|
{[ "type": "checkbox", "label": "'.tr('Cambia stato a tutte le righe').'", "name": "confermato_all", "value": "" ]}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$(document).ready(function() {
|
|
if(input("data_evasione").get()){
|
|
input("ora_evasione").enable();
|
|
}
|
|
});
|
|
|
|
$("#data_evasione").blur(function() {
|
|
if(input("data_evasione").get()){
|
|
input("ora_evasione").enable();
|
|
} else{
|
|
input("ora_evasione").disable();
|
|
input("ora_evasione").set();
|
|
}
|
|
});
|
|
</script>';
|
|
}
|