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() {
|
||||
if ($(this).find('option:selected').data('text') === 'IT - Italia'){
|
||||
$('#codice_destinatario', '#modals > div').removeAttr('readonly');
|
||||
input("id_nazione").change(function() {
|
||||
if (input("id_nazione").getElement().selectData().descrizione === 'IT - Italia'){
|
||||
input("codice_destinatario").enable();
|
||||
}else{
|
||||
input("codice_destinatario").disable();
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
|
|
@ -299,10 +299,10 @@ if (!empty($righe)) {
|
|||
<tbody>';
|
||||
|
||||
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'])) {
|
||||
$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';
|
||||
|
|
Loading…
Reference in New Issue