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.
Files changed (2) hide show
  1. package/lib/modules.js +2 -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
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  ".": "./lib/modules.js",
5
5
  "./dbconn": "./lib/dbconn.js"
6
6
  },
7
- "version": "3.0.42",
7
+ "version": "3.0.43",
8
8
  "description": "Funzioni per ALSManager",
9
9
  "license": "ISC",
10
10
  "author": "Luca Cattani",