mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-02 17:07:01 +01:00
Fix campi disabilitati in fase di aggiunta prima nota
This commit is contained in:
parent
4b82891cd4
commit
02c0eebcf5
@ -312,7 +312,7 @@ $(document).on("keyup change", "input[id*=dare]", function() {
|
||||
let row = $(this).parent().parent();
|
||||
|
||||
if (!$(this).prop("disabled")) {
|
||||
row.find("input[id*=avere]").prop("disabled", !!$(this).val());
|
||||
row.find("input[id*=avere]").prop("disabled", $(this).val().toEnglish());
|
||||
|
||||
controllaConti();
|
||||
}
|
||||
@ -322,7 +322,7 @@ $(document).on("keyup change", "input[id*=avere]", function() {
|
||||
let row = $(this).parent().parent();
|
||||
|
||||
if (!$(this).prop("disabled")) {
|
||||
row.find("input[id*=dare]").prop("disabled", !!$(this).val());
|
||||
row.find("input[id*=dare]").prop("disabled", $(this).val().toEnglish());
|
||||
|
||||
controllaConti();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user