alsmanager_lib 3.0.88 → 3.0.89
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 +1 -1
- package/package.json +1 -1
package/lib/modules.js
CHANGED
|
@@ -12650,7 +12650,7 @@ function createConsegnaBckDoc(consegna_obj, scuola_obj, listaDispositivi) {
|
|
|
12650
12650
|
data_consegna_str = "01/06/" + curr_year;
|
|
12651
12651
|
// Se specificata data limite consegna...
|
|
12652
12652
|
if (consegna_obj.data_limite) {
|
|
12653
|
-
var dlim = new Date(
|
|
12653
|
+
var dlim = new Date(consegna_obj.data_limite);
|
|
12654
12654
|
data_consegna_str = ("0" + dlim.getDate()).slice(-2) + '/' + ("0"+(dlim.getMonth()+1)).slice(-2) + '/' + dlim.getFullYear();
|
|
12655
12655
|
}
|
|
12656
12656
|
|