alsmanager_lib 2.0.70 → 2.0.71
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
|
@@ -2149,12 +2149,12 @@ function existsDisplayPartProperties(db_used, id_device) {
|
|
|
2149
2149
|
}
|
|
2150
2150
|
|
|
2151
2151
|
function insertDisplayPartPropertiesSQLite(id_device, dev_prop) {
|
|
2152
|
-
var query = "insert into display_part (id_device, touch, size_inch, format,
|
|
2152
|
+
var query = "insert into display_part (id_device, touch, size_inch, format, technology, is_removable) values ";
|
|
2153
2153
|
query += "(" + id_device + ", " + dev_prop.touch + ", " + dev_prop.size + ", '" + dev_prop.format + "', '" + dev_prop.technology + "', " + dev_prop.is_removable + ")";
|
|
2154
2154
|
return query;
|
|
2155
2155
|
}
|
|
2156
2156
|
function insertDisplayPartPropertiesMySQL() {
|
|
2157
|
-
var query = "insert into display_part (id_device, touch, size_inch, format,
|
|
2157
|
+
var query = "insert into display_part (id_device, touch, size_inch, format, technology, is_removable) values ";
|
|
2158
2158
|
query += "(:id_device, :touch, :size, :format, :technology, :is_removable)";
|
|
2159
2159
|
return query;
|
|
2160
2160
|
}
|