1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00

Fix campi disabilitati in fase di aggiunta prima nota

This commit is contained in:
MatteoPistorello
2021-09-30 14:49:10 +02:00
parent 4b82891cd4
commit 02c0eebcf5

View File

@@ -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();
}