Novo git da alteração

This commit is contained in:
2026-03-01 17:27:48 -03:00
parent 8b7a079235
commit 9ec8d6e70b
366 changed files with 50299 additions and 27325 deletions
@@ -0,0 +1,15 @@
function validateForm(form){
var msg = "";
var activity = getValue("WKNumState");
// Só valida "Justificativa do Gestor" quando estiver na atividade do gestor (ex.: 5)
if (activity == 121) {
if (form.getValue("justi_decisao_gestor") == "") {
msg += "Campo Justificativa do Gestor não foi preenchido\n";
}
}
if (msg != "") {
throw msg;
}
}