Fix aggiunta Codice destinatario in fase di creazione anagrafica
This commit is contained in:
parent
1dcf55f5a8
commit
136730a696
|
@ -172,9 +172,11 @@ echo '
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#id_nazione', '#modals > div').change(function() {
|
input("id_nazione").change(function() {
|
||||||
if ($(this).find('option:selected').data('text') === 'IT - Italia'){
|
if (input("id_nazione").getElement().selectData().descrizione === 'IT - Italia'){
|
||||||
$('#codice_destinatario', '#modals > div').removeAttr('readonly');
|
input("codice_destinatario").enable();
|
||||||
|
}else{
|
||||||
|
input("codice_destinatario").disable();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -299,10 +299,10 @@ if (!empty($righe)) {
|
||||||
<tbody>';
|
<tbody>';
|
||||||
|
|
||||||
foreach ($righe as $key => $riga) {
|
foreach ($righe as $key => $riga) {
|
||||||
$query = "SELECT id, IF(codice IS NULL, descrizione, CONCAT(codice, ' - ', descrizione)) AS descrizione FROM co_iva WHERE percentuale = ".prepare($riga['AliquotaIVA']);
|
$query = "SELECT id, IF(codice IS NULL, descrizione, CONCAT(codice, ' - ', descrizione)) AS descrizione FROM co_iva WHERE deleted_at IS NULL AND percentuale = ".prepare($riga['AliquotaIVA']);
|
||||||
|
|
||||||
if (!empty($riga['Natura'])) {
|
if (!empty($riga['Natura'])) {
|
||||||
$query .= ' AND deleted_at IS NULL AND codice_natura_fe = '.prepare($riga['Natura']);
|
$query .= ' AND codice_natura_fe = '.prepare($riga['Natura']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$query .= ' ORDER BY descrizione ASC';
|
$query .= ' ORDER BY descrizione ASC';
|
||||||
|
|
Loading…
Reference in New Issue