openstamanager/modules/listini_cliente/edit.php

310 lines
9.3 KiB
PHP

<?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/>.
*/
include_once __DIR__.'/../../core.php';
echo '
<form action="" method="post" id="edit-form">
<input type="hidden" name="backto" value="record-edit">
<input type="hidden" name="op" value="update">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">'.tr('Listino').'</h3>
</div>
<div class="panel-body">
<div class="row">
<div class="col-md-6">
{[ "type":"text", "label":"'.tr('Nome').'", "name":"nome", "value":"$nome$", "required":"1" ]}
</div>
<div class="col-md-3">
{[ "type":"date", "label":"'.tr('Data attivazione').'", "name":"data_attivazione", "value":"$data_attivazione$", "required":"1" ]}
</div>
<div class="col-md-3">
{[ "type":"date", "label":"'.tr('Data scadenza default').'", "name":"data_scadenza_predefinita", "value":"$data_scadenza_predefinita$" ]}
</div>
</div>
<div class="row">
<div class="col-md-6">
{[ "type":"checkbox", "label":"'.tr('Sempre visibile').'", "name":"is_sempre_visibile", "value":"$is_sempre_visibile$", "help": "'.tr('Se impostato il valore sarà sempre visibile sull\'articolo se il listino è attivo e la data di scadenza è ancora valida').'" ]}
</div>
<div class="col-md-6">
{[ "type":"checkbox", "label":"'.tr('Attivo').'", "name":"attivo", "value": "$attivo$" ]}
</div>
</div>
<div class="row">
<div class="col-md-12">
{[ "type":"textarea", "label":"'.tr('Note').'", "name":"note", "value":"$note$" ]}
</div>
</div>
<hr>
<div class="row">
<div class="col-md-offset-7 col-md-3">
{[ "type":"select", "label":"'.tr('Articolo').'", "ajax-source": "articoli", "select-options": {"permetti_movimento_a_zero": 1, "id_listino": '.$id_record.'} ]}
</div>
<div class="col-md-2">
<div class="btn-group btn-group-flex">
<button type="button" class="btn btn-primary" style="margin-top:25px;" onclick="aggiungiArticolo(this, true)">
<i class="fa fa-plus"></i> '.tr('Aggiungi').'
</button>
</div>
</div>
</div>
<div style="max-height:400px; overflow:auto;">
<table class="table table-striped table-condensed table-bordered" id="tablelistini">
<tr>
<th width="5" class="text-center">
<br><input id="check_all" type="checkbox"/>
</th>
<th class="text-center" width="14%">
'.tr('Codice').'
<input type="text" class="form-control" id="search_codice" placeholder="'.tr('Filtra').'...">
</th>
<th class="text-center">
'.tr('Descrizione').'
<input type="text" class="form-control" id="search_descrizione" placeholder="'.tr('Filtra').'...">
</th>
<th class="text-center" width="10%">
'.tr('Data scadenza').'
<input type="text" class="form-control" id="search_data_scadenza" placeholder="'.tr('Filtra').'...">
</th>
<th class="text-center" width="10%">
'.tr('Minimo').'
<input type="text" class="form-control" id="search_minimo" placeholder="'.tr('Filtra').'...">
</th>
<th class="text-center" width="10%">
'.tr('Prezzo di listino').'
<input type="text" class="form-control" id="search_prezzo_listino" placeholder="'.tr('Filtra').'...">
</th>
<th class="text-center" width="10%">
'.tr('Prezzo ivato').'
<input type="text" class="form-control" id="search_prezzo_ivato" placeholder="'.tr('Filtra').'...">
</th>
<th class="text-center" width="10%">
'.tr('Sconto').'
<input type="text" class="form-control" id="search_sconto" placeholder="'.tr('Filtra').'...">
</th>
<th class="text-center" width="7%"><br>#</th>
</tr>';
foreach ($articoli as $articolo) {
echo '
<tr data-id="'.$articolo['id'].'">
<td class="text-center">
<input class="check" type="checkbox"/>
</td>
<td class="text-center">
'.Modules::link('Articoli', $articolo['id_articolo'], $articolo['codice'], null, '').'
</td>
<td>
'.$articolo['descrizione'].'
</td>
<td class="text-center">
'.dateFormat($articolo['data_scadenza']).'
</td>
<td class="text-center">
'.moneyFormat($articolo['minimo_vendita']).'
</td>
<td class="text-center">
'.moneyFormat($articolo['prezzo_unitario']).'
</td>
<td class="text-center">
'.moneyFormat($articolo['prezzo_unitario_ivato']).'
</td>
<td class="text-center">
'.numberFormat($articolo['sconto_percentuale']).' %
</td>
<td class="text-center">
<a class="btn btn-xs btn-warning" title="'.tr('Modifica articolo').'" onclick="modificaArticolo(this)">
<i class="fa fa-edit"></i>
</a>
<a class="btn btn-xs btn-danger" title="'.tr('Rimuovi articolo').'" onclick="rimuoviArticolo($(this).closest(\'tr\').data(\'id\'))">
<i class="fa fa-trash"></i>
</a>
</td>
</tr>';
}
if (empty($articoli)) {
echo '
<tr data-id="'.$articolo['id'].'">
<td colspan="7" class="text-center">
'.tr('Nessun articolo presente').'
</td>
</tr>';
}
echo '
</table>
<div class="btn-group">
<button type="button" class="btn btn-xs btn-default disabled" id="elimina_righe" onclick="rimuoviArticolo(getSelectData());">
<i class="fa fa-trash"></i>
</button>
</div>
</div>
</div>
</div>
</form>
<a class="btn btn-danger ask" data-backto="record-list">
<i class="fa fa-trash"></i>'.tr('Elimina').'
</a>
<script>
function aggiungiArticolo(button) {
let panel = $(button).closest(".panel");
let id_articolo = panel.find("select").val();
if (id_articolo) {
openModal("'.tr('Listino articolo').'", "'.$structure->fileurl('modals/manage_articolo.php').'?id_module='.$id_module.'&id_record='.$id_record.'&id_articolo=" + id_articolo);
} else {
swal("'.tr('Attenzione').'", "'.tr('Inserire un articolo').'", "warning");
}
}
async function modificaArticolo(button) {
let riga = $(button).closest("tr");
let id = riga.data("id");
// Chiusura tooltip
if ($(button).hasClass("tooltipstered"))
$(button).tooltipster("close");
// Apertura modal
openModal("'.tr('Listino articolo').'", "'.$structure->fileurl('modals/manage_articolo.php').'?id_module='.$id_module.'&id_record='.$id_record.'&id=" + id);
}
function rimuoviArticolo(id) {
swal({
title: "'.tr('Rimuovere questo articolo?').'",
html: "'.tr('Sei sicuro di volere rimuovere questo articolo dal listino?').' '.tr("L'operazione è irreversibile").'.",
type: "warning",
showCancelButton: true,
confirmButtonText: "'.tr('Sì').'"
}).then(function () {
$.ajax({
url: globals.rootdir + "/actions.php",
type: "POST",
dataType: "json",
data: {
id_module: globals.id_module,
id_record: globals.id_record,
op: "delete_articolo",
id: id,
},
success: function (response) {
location.reload();
},
error: function() {
location.reload();
}
});
}).catch(swal.noop);
}
$(document).ready(function(){
$("input[id^=\'search_\']").keyup(function() {
$("#tablelistini tr").each(function(){
$(this).show();
});
$("input[id^=\'search_\']").each(function(){
var position = $(this).closest("th").index();
var filter = $(this).val().toUpperCase();
var tr = $("#tablelistini tr");
if(filter!=""){
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td")[position];
if (td) {
if (td.innerText.toUpperCase().indexOf(filter) <= -1) {
tr[i].style.display = "none";
}
}
}
}
});
if ($("#check_all").is(":checked")) {
$("#check_all").trigger("click");
$(".check").each(function(){
if ($(this).is(":checked")) {
$(this).trigger("click");
}
});
}
});
});
// Estraggo le righe spuntate
function getSelectData() {
let data=new Array();
$(\'#tablelistini\').find(\'.check:checked\').each(function (){
data.push($(this).closest(\'tr\').data(\'id\'));
});
return data;
}
$(".check").on("change", function() {
let checked = 0;
$(".check").each(function() {
if ($(this).is(":checked")) {
checked = 1;
}
});
if (checked) {
$("#elimina_righe").removeClass("disabled");
} else {
$("#elimina_righe").addClass("disabled");
}
});
$("#check_all").click(function(){
if( $(this).is(":checked") ){
$(".check").each(function(){
if( !$(this).is(":checked") ){
$(this).trigger("click");
}
});
}else{
$(".check").each(function(){
if( $(this).is(":checked") ){
$(this).trigger("click");
}
});
}
});
</script>';