78 lines
2.7 KiB
PHP
Executable File
78 lines
2.7 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
|
* Copyright (C) DevCode s.n.c.
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
echo '
|
|
<button type="button" class="btn btn-primary tip" '.(!empty($anagrafica) ? '' : 'disabled').' id="compilazione_automatica" onclick="compile(this)" title="'.tr('Tenta la compilazione automatica delle informazioni delle fattura elettronica sulla base delle precedenti fatture del Fornitore').'.">
|
|
<i class="fa fa-address-book"></i> '.tr('Compila automaticamente').'
|
|
</button>
|
|
|
|
<script>
|
|
$(document).ready(function() {
|
|
var btn = $("#compilazione_automatica");
|
|
|
|
if (!$("#compilazione_automatica").not("disabled")) {
|
|
btn.click();
|
|
}
|
|
});
|
|
|
|
function compile(btn) {
|
|
var restore = buttonLoading(btn);
|
|
|
|
$.ajax({
|
|
url: globals.rootdir + "/actions.php",
|
|
cache: false,
|
|
type: "GET",
|
|
data: {
|
|
id_module: "'.$id_module.'",
|
|
id_plugin: "'.$id_plugin.'",
|
|
id_record: "'.$id_record.'",
|
|
op: "compile",
|
|
},
|
|
success: function(response) {
|
|
var data = JSON.parse(response);
|
|
if (data.length == 0){
|
|
buttonRestore(btn, restore);
|
|
return;
|
|
}
|
|
|
|
$("#id_tipo").selectSet(data.id_tipo);
|
|
$("#pagamento").selectSetNew(data.pagamento.id, data.pagamento.descrizione);
|
|
|
|
$("select[name^=iva]").each(function(){
|
|
var aliquota = $(this).closest("tr").find("[id^=aliquota]").text();
|
|
if (data.iva[aliquota] !== undefined){
|
|
$(this).selectSet(data.iva[aliquota].id);
|
|
}
|
|
});
|
|
|
|
$("select[name^=conto]").each(function(){
|
|
$(this).selectSetNew(data.conto.id, data.conto.descrizione);
|
|
});
|
|
|
|
buttonRestore(btn, restore);
|
|
},
|
|
error: function(data) {
|
|
swal("'.tr('Errore').'", "'.tr('La compilazione automatica dei campi non è andata a buon fine').'.", "error");
|
|
|
|
buttonRestore(btn, restore);
|
|
}
|
|
});
|
|
}
|
|
</script>';
|