60 lines
1.9 KiB
PHP
Executable File
60 lines
1.9 KiB
PHP
Executable File
<?php
|
|
|
|
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 (!btn.hasClass("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){
|
|
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>';
|