This commit is contained in:
Marcos Lopez
2024-01-30 12:47:43 +01:00
parent 4cb6127f80
commit a6dd79e9c8
2 changed files with 183 additions and 0 deletions

View File

@@ -217,9 +217,13 @@
const index = opciones.indexOf(opc);
return index !== -1 ? valores[index] : valorDefecto;
}
function totalXOpcion(checked, valorChecked, valorUnchecked) {
return checked ? valorChecked : valorUnchecked;
}
function submitForm() {
document.getElementById("formAlquiler").submit();
}