Skip to content

Commit

Permalink
Update diario.js
Browse files Browse the repository at this point in the history
  • Loading branch information
pietrolama authored Dec 27, 2024
1 parent 6af913e commit 4d66ab3
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions js/diario.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,16 +198,29 @@ window.modificaFermentazione = async function (docId) {
if (fermentazioneSnapshot.exists()) {
const data = fermentazioneSnapshot.data();

document.getElementById("nome").value = data.nome || "";
document.getElementById("data").value = data.data || "";
document.getElementById("idratazione").value = data.idratazione || "";
document.getElementById("lievito").value = data.lievito || "";
document.getElementById("tempo").value = data.tempo || "";
// Verifica l'esistenza degli elementi nel DOM prima di impostarne i valori
const nomeField = document.getElementById("nome");
const dataField = document.getElementById("data");
const idratazioneField = document.getElementById("idratazione");
const lievitoField = document.getElementById("lievito");
const tempoField = document.getElementById("tempo");

if (nomeField && dataField && idratazioneField && lievitoField && tempoField) {
nomeField.value = data.nome || "";
dataField.value = data.data || "";
idratazioneField.value = data.idratazione || "";
lievitoField.value = data.lievito || "";
tempoField.value = data.tempo || "";
} else {
console.error("Alcuni elementi del modulo non sono stati trovati nel DOM.");
alert("Errore: Impossibile modificare la fermentazione. Verifica il modulo.");
}
} else {
alert("Errore: fermentazione non trovata.");
}
};


// Elimina una fermentazione
window.eliminaFermentazione = async function (docId) {
const user = auth.currentUser;
Expand Down

0 comments on commit 4d66ab3

Please sign in to comment.