alsmanager_lib 3.0.42 → 3.0.43
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 +2 -2
- package/package.json +1 -1
package/lib/modules.js
CHANGED
|
@@ -6823,7 +6823,7 @@ function queryConsegnaByIdSQLite(id_consegna) {
|
|
|
6823
6823
|
var query = "SELECT id, id_place, id_site, data_richiesta, data_consegna, data_rientro, ";
|
|
6824
6824
|
query += "case ";
|
|
6825
6825
|
query += "when stato_restituzione is null then 0 else stato_restituzione end as stato_restituzione";
|
|
6826
|
-
query += ", is_home, note, richiedente_adulto, richiedente_alunno, richiedente_genitore from consegne";
|
|
6826
|
+
query += ", is_home, note, richiedente_adulto, richiedente_alunno, richiedente_genitore, email_adulto, email_genitore, invia_email_sollecito from consegne";
|
|
6827
6827
|
query += " where id = " + id_consegna;
|
|
6828
6828
|
return query;
|
|
6829
6829
|
}
|
|
@@ -6832,7 +6832,7 @@ function queryConsegnaByIdMySQL(id_consegna) {
|
|
|
6832
6832
|
var query = "SELECT id, id_place, id_site, data_richiesta, data_consegna, data_rientro, ";
|
|
6833
6833
|
query += "case ";
|
|
6834
6834
|
query += "when stato_restituzione is null then 0 else stato_restituzione end as stato_restituzione";
|
|
6835
|
-
query += ", is_home, note, richiedente_adulto, richiedente_alunno, richiedente_genitore from consegne";
|
|
6835
|
+
query += ", is_home, note, richiedente_adulto, richiedente_alunno, richiedente_genitore, email_adulto, email_genitore, invia_email_sollecito from consegne";
|
|
6836
6836
|
query += " where id = :id_consegna";
|
|
6837
6837
|
return query;
|
|
6838
6838
|
}
|