alsmanager_lib 2.0.91 → 2.0.92
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 +4 -4
- package/package.json +1 -1
package/lib/modules.js
CHANGED
|
@@ -11509,8 +11509,8 @@ function insertStorageToTemplateFromIdDeviceSQLite(id_device) {
|
|
|
11509
11509
|
query += "and device_manifacturer = d.manifacturer ";
|
|
11510
11510
|
query += "and device_model = d.model ";
|
|
11511
11511
|
query += "and dm_storage_type = ds.storage_type ";
|
|
11512
|
-
query += "and dm_storage_totsize = ds.
|
|
11513
|
-
query += "and dm_storage_size_unit = ds.
|
|
11512
|
+
query += "and dm_storage_totsize = ds.storage_totsize ";
|
|
11513
|
+
query += "and dm_storage_size_unit = ds.storage_size_unit ";
|
|
11514
11514
|
query += "and dm_storage_manifacturer = ds.storage_manifacturer ";
|
|
11515
11515
|
query += "and dm_storage_model = ds.storage_model) = 0";
|
|
11516
11516
|
return query;
|
|
@@ -11525,8 +11525,8 @@ function insertStorageToTemplateFromIdDeviceMySQL(id_device) {
|
|
|
11525
11525
|
query += "and device_manifacturer = d.manifacturer ";
|
|
11526
11526
|
query += "and device_model = d.model ";
|
|
11527
11527
|
query += "and dm_storage_type = ds.storage_type ";
|
|
11528
|
-
query += "and dm_storage_totsize = ds.
|
|
11529
|
-
query += "and dm_storage_size_unit = ds.
|
|
11528
|
+
query += "and dm_storage_totsize = ds.storage_totsize ";
|
|
11529
|
+
query += "and dm_storage_size_unit = ds.storage_size_unit ";
|
|
11530
11530
|
query += "and dm_storage_manifacturer = ds.storage_manifacturer ";
|
|
11531
11531
|
query += "and dm_storage_model = ds.storage_model) = 0";
|
|
11532
11532
|
return query;
|