NUEVA ACTIVIDAD
FILTRAR:
// ===== ENVÍO A GOOGLE SHEETS =====
const SCRIPT_URL = "https://script.google.com/macros/s/AKfycbztzSnbHUgOYXUDEs72b4KIkfX-iB1txbQMWhGncNI3Fe2JHQL8s8WOBaCYY5ModWnMhw/exec";
if (document.getElementById("form")) {
const originalSubmit = document.getElementById("form").onsubmit;
document.getElementById("form").onsubmit = async (e) => {
if (originalSubmit) originalSubmit(e);
const data = {
taskName: document.getElementById("taskName").value,
assignedTo: document.getElementById("assignSelector").value,
start: document.getElementById("start").value,
days: document.getElementById("days").value,
createdAt: new Date().toISOString()
};
try {
await fetch(SCRIPT_URL, {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify(data)
});
} catch (error) {
console.error("Error enviando a Sheets:", error);
}
};
}