alsmanager_lib 3.0.50 → 3.0.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/modules.js +9 -13
- package/package.json +1 -1
package/lib/modules.js
CHANGED
|
@@ -6900,20 +6900,16 @@ function getDatiConsegneAttive() {
|
|
|
6900
6900
|
}
|
|
6901
6901
|
|
|
6902
6902
|
|
|
6903
|
-
function createConsegnaMessage(
|
|
6903
|
+
function createConsegnaMessage(nominativo, email, rif_consegna, bene) {
|
|
6904
6904
|
var msgObj = {};
|
|
6905
|
-
|
|
6906
|
-
|
|
6907
|
-
|
|
6908
|
-
|
|
6909
|
-
|
|
6910
|
-
|
|
6911
|
-
|
|
6912
|
-
|
|
6913
|
-
msgObj.message += "\n\nSi richiede che la consegna venga effettuata ad un tecnico dell'Istituto per le verifiche del caso.\n";
|
|
6914
|
-
msgObj.message += "Se per eventuali esigenze fosse necessario prolungare l'utilizzo del bene, si prega di contattare l'Ufficio Tecnico.\n ";
|
|
6915
|
-
msgObj.message += "Cordiali saluti \n\n I tecnici dell'I.C. Trento 3";
|
|
6916
|
-
}
|
|
6905
|
+
msgObj.email_to = email;
|
|
6906
|
+
msgObj.subject = rif_consegna;
|
|
6907
|
+
msgObj.message = "Gentile/Egregio ins." + nominativo + "\n";
|
|
6908
|
+
msgObj.message += "\n\nSi ricorda di effettuare entro la data " + data_limite + " la consegna dei seguenti beni : \n\n";
|
|
6909
|
+
msgObj.message += "n. 1 " + bene + "\n";
|
|
6910
|
+
msgObj.message += "\n\nSi richiede che la consegna venga effettuata ad un tecnico dell'Istituto per le verifiche del caso.\n";
|
|
6911
|
+
msgObj.message += "Se per eventuali esigenze fosse necessario prolungare l'utilizzo del bene, si prega di contattare l'Ufficio Tecnico.\n ";
|
|
6912
|
+
msgObj.message += "Cordiali saluti \n\n I tecnici dell'I.C. Trento 3";
|
|
6917
6913
|
return msgObj;
|
|
6918
6914
|
}
|
|
6919
6915
|
|