alsmanager_lib 3.0.21 → 3.0.22
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 +351 -0
- package/package.json +1 -1
package/lib/modules.js
CHANGED
|
@@ -1215,6 +1215,165 @@ function getAddOnsByConfig(db_used, id_device, id_conf) {
|
|
|
1215
1215
|
return query;
|
|
1216
1216
|
}
|
|
1217
1217
|
//End Manage AddOns
|
|
1218
|
+
// Manage VOIP
|
|
1219
|
+
function getVoIPDevices() {
|
|
1220
|
+
var query = "";
|
|
1221
|
+
query += "";
|
|
1222
|
+
return query;
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
// End manage Voip
|
|
1226
|
+
// Software management
|
|
1227
|
+
function getSoftwares(maker, model, platform, licence_type) {
|
|
1228
|
+
var query = "select id, maker, model, support, platform, release_year, version, build_no, licence_type, licence_key, expired_date, is_pnrr, inv_ict3_number, serial_no ";
|
|
1229
|
+
query += "from softwares ";
|
|
1230
|
+
query += "where (is_removed is null or is_removed = 0) ";
|
|
1231
|
+
if (maker) {
|
|
1232
|
+
query += "and maker = '" + maker + "' ";
|
|
1233
|
+
}
|
|
1234
|
+
if (model) {
|
|
1235
|
+
query += "and model = '" + model + "' ";
|
|
1236
|
+
}
|
|
1237
|
+
if (platform) {
|
|
1238
|
+
query += "and platform = '" + platform + "' ";
|
|
1239
|
+
}
|
|
1240
|
+
if (licence_type) {
|
|
1241
|
+
query += "and licence_type = '" + licence_type + "' ";
|
|
1242
|
+
}
|
|
1243
|
+
return query;
|
|
1244
|
+
}
|
|
1245
|
+
function getSoftwareByCodice(codice) {
|
|
1246
|
+
var query = "select id, maker, model, support, platform, release_year, version, build_no, licence_type, licence_key, expired_date, is_pnrr, inv_ict3_number, serial_no ";
|
|
1247
|
+
query += "from softwares ";
|
|
1248
|
+
query += "where (is_removed is null or is_removed = 0) ";
|
|
1249
|
+
query += "and inv_ict3_number = '" + codice + "' or serial_no = '" + codice + "'";
|
|
1250
|
+
return query;
|
|
1251
|
+
}
|
|
1252
|
+
function getSoftwareById(id_sw) {
|
|
1253
|
+
var query = "select id, maker, model, support, platform, release_year, version, build_no, licence_type, licence_key, expired_date, is_pnrr, inv_ict3_number, serial_no ";
|
|
1254
|
+
query += "from softwares ";
|
|
1255
|
+
query += "where (is_removed is null or is_removed = 0) ";
|
|
1256
|
+
query += "and id = " + id_sw;
|
|
1257
|
+
return query;
|
|
1258
|
+
}
|
|
1259
|
+
function insertSoftware(software) {
|
|
1260
|
+
var query = "insert into softwares (maker, model, support, platform, release_year, version, build_no, licence_type, licence_key, expired_date, is_pnrr, inv_ict3_number, serial_no) values (";
|
|
1261
|
+
query += "'" + software.marca + "', ";
|
|
1262
|
+
query += "'" + software.modello + "', ";
|
|
1263
|
+
query += "'" + software.supporto + "', ";
|
|
1264
|
+
query += "'" + software.platform + "', ";
|
|
1265
|
+
query += "'" + software.release_year + "', ";
|
|
1266
|
+
query += "'" + software.version + "', ";
|
|
1267
|
+
query += "'" + software.build_no + "', ";
|
|
1268
|
+
query += "'" + software.licence_type + "', ";
|
|
1269
|
+
query += "'" + software.licence_key + "', ";
|
|
1270
|
+
query += "'" + software.data_scadenza + "', ";
|
|
1271
|
+
query += software.is_pnrr + ", ";
|
|
1272
|
+
query += "'" + software.inventario + "', ";
|
|
1273
|
+
query += "'" + software.serial_no + "'";
|
|
1274
|
+
query += ")";
|
|
1275
|
+
return query;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
function updateSoftware(id_sw, software) {
|
|
1279
|
+
var query = "update softwares set ";
|
|
1280
|
+
query += "maker = '" + software.marca + "', ";
|
|
1281
|
+
query += "model = '" + software.modello + "', ";
|
|
1282
|
+
query += "support = '" + software.supporto + "', ";
|
|
1283
|
+
query += "platform = '" + software.platform + "', ";
|
|
1284
|
+
query += "release_year = '" + software.release_year + "', ";
|
|
1285
|
+
query += "version = '" + software.version + "', ";
|
|
1286
|
+
query += "build_no = '" + software.build_no + "', ";
|
|
1287
|
+
query += "licence_type = '" + software.licence_type + "', ";
|
|
1288
|
+
query += "licence_key = '" + software.licence_key + "', ";
|
|
1289
|
+
query += "expired_date = '" + software.data_scadenza + "', ";
|
|
1290
|
+
query += "is_pnrr = " + software.is_pnrr + ", ";
|
|
1291
|
+
query += "inv_ict3_number = '" + software.inventario + "', ";
|
|
1292
|
+
query += "serial_no = '" + software.serial_no + "' ";
|
|
1293
|
+
query += "where id = " + id_sw;
|
|
1294
|
+
return query;
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
function removeSoftware(id_sw) {
|
|
1298
|
+
var query = "update softwares set is_removed = 1 ";
|
|
1299
|
+
query += "where id = " + id_sw;
|
|
1300
|
+
return query;
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
|
|
1304
|
+
// End Software management
|
|
1305
|
+
// Anagrafica utenti
|
|
1306
|
+
function getUtenti() {
|
|
1307
|
+
var query = "select id, cognome_denominazione, nome, titolo from anagrafica_utenze ";
|
|
1308
|
+
query += "order by titolo, cognome_denominazione ";
|
|
1309
|
+
return query;
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
function getUtentiCombo() {
|
|
1313
|
+
var query = "select id, concat(trim(cognome_denominazione), ' ', nome, ' - ', titolo) as Descrizione from anagrafica_utenze ";
|
|
1314
|
+
query += "order by titolo, cognome_denominazione ";
|
|
1315
|
+
return query;
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
function getUtentiByIdDeviceSQLite(id_device) {
|
|
1319
|
+
var query = "select au.id, au.cognome_denominazione, au.nome, au.titolo from device_utenza du ";
|
|
1320
|
+
query += "join anagrafica_utenze au on au.id = du.id_utenza ";
|
|
1321
|
+
query += "where du.id_device = " + id_device + " ";
|
|
1322
|
+
query += "and du.date_start <= date('now') and du.date_end >= date('now') ";
|
|
1323
|
+
query += "order by titolo, cognome_denominazione ";
|
|
1324
|
+
return query;
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
function getUtentiByIdDeviceMySQL(id_device) {
|
|
1328
|
+
var query = "select au.id, au.cognome_denominazione, au.nome, au.titolo from device_utenza du ";
|
|
1329
|
+
query += "join anagrafica_utenze au on au.id = du.id_utenza ";
|
|
1330
|
+
query += "where du.id_device = :id_device ";
|
|
1331
|
+
query += "and du.date_start <= CURDATE() and du.date_end >= CURDATE() ";
|
|
1332
|
+
query += "order by titolo, cognome_denominazione ";
|
|
1333
|
+
return query;
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
|
|
1337
|
+
function getUtentiByIdDeviceSQLiteMYSQL2(id_device) {
|
|
1338
|
+
var query = "select au.id, au.cognome_denominazione, au.nome, au.titolo from device_utenza du ";
|
|
1339
|
+
query += "join anagrafica_utenze au on au.id = du.id_utenza ";
|
|
1340
|
+
query += "where du.id_device = " + id_device + " ";
|
|
1341
|
+
query += "and du.date_start <= CURDATE() and du.date_end >= CURDATE() ";
|
|
1342
|
+
query += "order by titolo, cognome_denominazione ";
|
|
1343
|
+
return query;
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
function getUtentiByIdDevice(db_used, id_device) {
|
|
1347
|
+
var query = "";
|
|
1348
|
+
if (db_used) {
|
|
1349
|
+
switch (db_used) {
|
|
1350
|
+
case 'SQLITE':
|
|
1351
|
+
query = getUtentiByIdDeviceSQLite(id_device);
|
|
1352
|
+
break;
|
|
1353
|
+
case 'MYSQL':
|
|
1354
|
+
query = getUtentiByIdDeviceMySQL(id_device);
|
|
1355
|
+
break;
|
|
1356
|
+
case 'MYSQL2':
|
|
1357
|
+
query = getUtentiByIdDeviceSQLiteMYSQL2(id_device);
|
|
1358
|
+
break;
|
|
1359
|
+
}
|
|
1360
|
+
}
|
|
1361
|
+
return query;
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
function insertUtentePerDevice(id_utente, id_device, note) {
|
|
1365
|
+
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
function updateUtentePerDevice(id_dev_user, id_utente, id_device, note) {
|
|
1369
|
+
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
function removeUtentePerDevice(id_dev_user) {
|
|
1373
|
+
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
// End Anagrafica utenti
|
|
1218
1377
|
// Device configurations
|
|
1219
1378
|
function getDeviceConfigurationsSQLite(id_device) {
|
|
1220
1379
|
var query = "select id, date_conf, note from device_changes ";
|
|
@@ -5413,6 +5572,65 @@ function getNetworksOnDevice(db_used, id_device) {
|
|
|
5413
5572
|
}
|
|
5414
5573
|
return query;
|
|
5415
5574
|
}
|
|
5575
|
+
|
|
5576
|
+
function getFreeLanPortsComboSQLite(id_place, id_site, port_type){
|
|
5577
|
+
var query = "select sp.id, concat(sd.name, ' - ', sp.port_sign, ' - ', pu.port_type, ' - ', ap.port_switch) as descrizione from site_ports sp ";
|
|
5578
|
+
query += "join site_destinations sd on sd.id_site = sp.id_site ";
|
|
5579
|
+
query += "join port_usage sd on pu.id_port = sp.id ";
|
|
5580
|
+
query += "left join device_lan_ports dlp on sp.id = dlp.id_port "
|
|
5581
|
+
query += "where dlp.id is null ";
|
|
5582
|
+
query += "and date('now') >= sd.date_start and date('now') <= sd.date_end ";
|
|
5583
|
+
query += "and date('now') >= pu.date_start and date('now') <= pu.date_end ";
|
|
5584
|
+
if (id_place && id_place != '') {
|
|
5585
|
+
query += "and sp.id_place = '" + id_place +"' ";
|
|
5586
|
+
}
|
|
5587
|
+
if (id_site && id_site > 0) {
|
|
5588
|
+
query += "and sp.id_site = " + id_site + " ";
|
|
5589
|
+
}
|
|
5590
|
+
if (port_type && port_type != '') {
|
|
5591
|
+
query += "and pu.port_type = '" + port_type + "' ";
|
|
5592
|
+
}
|
|
5593
|
+
return query;
|
|
5594
|
+
}
|
|
5595
|
+
|
|
5596
|
+
function getFreeLanPortsComboMySQL(id_place, id_site, port_type){
|
|
5597
|
+
var query = "select sp.id, concat(sd.name, ' - ', sp.port_sign, ' - ', pu.port_type, ' - ', ap.port_switch) as descrizione from site_ports sp ";
|
|
5598
|
+
query += "join site_destinations sd on sd.id_site = sp.id_site ";
|
|
5599
|
+
query += "join port_usage sd on pu.id_port = sp.id ";
|
|
5600
|
+
query += "left join device_lan_ports dlp on sp.id = dlp.id_port "
|
|
5601
|
+
query += "where dlp.id is null ";
|
|
5602
|
+
query += "and CURDATE() >= sd.date_start and CURDATE() <= sd.date_end ";
|
|
5603
|
+
query += "and CURDATE() >= pu.date_start and CURDATE() <= pu.date_end ";
|
|
5604
|
+
if (id_place && id_place != '') {
|
|
5605
|
+
query += "and sp.id_place = :id_place ";
|
|
5606
|
+
}
|
|
5607
|
+
if (id_site && id_site > 0) {
|
|
5608
|
+
query += "and sp.id_site = :id_site ";
|
|
5609
|
+
}
|
|
5610
|
+
if (port_type && port_type != '') {
|
|
5611
|
+
query += "and pu.port_type = :port_type ";
|
|
5612
|
+
}
|
|
5613
|
+
return query;
|
|
5614
|
+
}
|
|
5615
|
+
|
|
5616
|
+
function getFreeLanPortsCombo(db_used, id_place, id_site, port_type){
|
|
5617
|
+
var query = "";
|
|
5618
|
+
if (db_used) {
|
|
5619
|
+
switch (db_used) {
|
|
5620
|
+
case 'SQLITE':
|
|
5621
|
+
query = getFreeLanPortsComboSQLite(id_place, id_site, port_type);
|
|
5622
|
+
break;
|
|
5623
|
+
case 'MYSQL':
|
|
5624
|
+
query = getFreeLanPortsComboMySQL(id_place, id_site, port_type);
|
|
5625
|
+
break;
|
|
5626
|
+
case 'MYSQL2':
|
|
5627
|
+
query = getFreeLanPortsComboSQLite(id_place, id_site, port_type);
|
|
5628
|
+
break;
|
|
5629
|
+
}
|
|
5630
|
+
}
|
|
5631
|
+
return query;
|
|
5632
|
+
}
|
|
5633
|
+
|
|
5416
5634
|
//end Get Network on device
|
|
5417
5635
|
//
|
|
5418
5636
|
function getImportedPropertiesByIdDeviceSQLite(id_device) {
|
|
@@ -7467,6 +7685,117 @@ function selectDeviceInDeposito(db_used, inv_code) {
|
|
|
7467
7685
|
}
|
|
7468
7686
|
return query;
|
|
7469
7687
|
}
|
|
7688
|
+
|
|
7689
|
+
function selectSoftwarePerConsegnaSQLite(id_consegna) {
|
|
7690
|
+
var query = "select s.id, s.support as Supporto, s.maker as Marca, s.model as Modello, ";
|
|
7691
|
+
query += "case ";
|
|
7692
|
+
query += "when s.inv_ict3_number != '' and s.inv_ict3_number is not null then s.inv_ict3_number ";
|
|
7693
|
+
query += "when s.serial_no != '' and s.serial_no is not null then concat(s.serial_no,'(S/N)') ";
|
|
7694
|
+
query += "end as Codice, ";
|
|
7695
|
+
query += "case ";
|
|
7696
|
+
query += "when s.is_pnrr is null and s.is_pnrr = 1 then 'SI' ";
|
|
7697
|
+
query += "else 'NO' ";
|
|
7698
|
+
query += "end as PNRR, sc.note as Note_cons ";
|
|
7699
|
+
query += "from softwares s ";
|
|
7700
|
+
query += "left join software_consegne dc on sc.id_device = s.id ";
|
|
7701
|
+
query += "where dc.id_consegna = " + id_consegna;
|
|
7702
|
+
return query;
|
|
7703
|
+
}
|
|
7704
|
+
|
|
7705
|
+
function selectSoftwarePerConsegnaMySQL(id_consegna) {
|
|
7706
|
+
var query = "select s.id, s.support as Supporto, s.maker as Marca, s.model as Modello, ";
|
|
7707
|
+
query += "case ";
|
|
7708
|
+
query += "when s.inv_ict3_number != '' and s.inv_ict3_number is not null then s.inv_ict3_number ";
|
|
7709
|
+
query += "when s.serial_no != '' and s.serial_no is not null then concat(s.serial_no,'(S/N)') ";
|
|
7710
|
+
query += "end as Codice, ";
|
|
7711
|
+
query += "case ";
|
|
7712
|
+
query += "when s.is_pnrr is null and s.is_pnrr = 1 then 'SI' ";
|
|
7713
|
+
query += "else 'NO' ";
|
|
7714
|
+
query += "end as PNRR, sc.note as Note_cons ";
|
|
7715
|
+
query += "from softwares s ";
|
|
7716
|
+
query += "left join software_consegne dc on sc.id_device = s.id ";
|
|
7717
|
+
query += "where sc.id_consegna = :id_consegna";
|
|
7718
|
+
return query;
|
|
7719
|
+
}
|
|
7720
|
+
function selectSoftwarePerConsegna(db_used, id_consegna) {
|
|
7721
|
+
var query = "";
|
|
7722
|
+
if (db_used) {
|
|
7723
|
+
switch (db_used) {
|
|
7724
|
+
case 'SQLITE':
|
|
7725
|
+
query = selectSoftwarePerConsegnaSQLite(id_consegna);
|
|
7726
|
+
break;
|
|
7727
|
+
case 'MYSQL':
|
|
7728
|
+
query = selectSoftwarePerConsegnaMySQL(id_consegna);
|
|
7729
|
+
break;
|
|
7730
|
+
case 'MYSQL2':
|
|
7731
|
+
query = selectSoftwarePerConsegnaSQLite(id_consegna);
|
|
7732
|
+
break;
|
|
7733
|
+
}
|
|
7734
|
+
}
|
|
7735
|
+
return query;
|
|
7736
|
+
}
|
|
7737
|
+
|
|
7738
|
+
function selectSoftwareConsegnaSQLite(id_consegna, id_software) {
|
|
7739
|
+
var query = "select dc.id as id_dev_cons, d.id, d.type, d.manifacturer, d.model, ";
|
|
7740
|
+
query += "case ";
|
|
7741
|
+
query += "when d.inv_ict3_number != '' and d.inv_ict3_number is not null then d.inv_ict3_number ";
|
|
7742
|
+
query += "when d.inv_pnrr_number != '' and d.inv_pnrr_number is not null then d.inv_pnrr_number ";
|
|
7743
|
+
query += "when d.inv_tn_number != '' and d.inv_tn_number is not null then concat(d.inv_tn_number,'(TN)') ";
|
|
7744
|
+
query += "when d.inv_tndigit_number != '' and d.inv_tndigit_number is not null then concat(d.inv_tndigit_number,'(TNDigit)') ";
|
|
7745
|
+
query += "when d.serial_no != '' and d.serial_no is not null then concat(d.serial_no,'(S/N)') ";
|
|
7746
|
+
query += "end as codice ";
|
|
7747
|
+
query += ", dc.note as note_cons from device_consegne dc";
|
|
7748
|
+
query += " join devices d on d.id = dc.id_device";
|
|
7749
|
+
query += " where dc.id_consegna = " + id_consegna;
|
|
7750
|
+
query += " and d.id = " + id_software;
|
|
7751
|
+
return query;
|
|
7752
|
+
}
|
|
7753
|
+
|
|
7754
|
+
function selectSoftwareConsegnaMySQL(id_consegna, id_software) {
|
|
7755
|
+
var query = "select dc.id as id_dev_cons, d.id, d.type, d.manifacturer, d.model, ";
|
|
7756
|
+
query += "case ";
|
|
7757
|
+
query += "when d.inv_ict3_number != '' and d.inv_ict3_number is not null then d.inv_ict3_number ";
|
|
7758
|
+
query += "when d.inv_pnrr_number != '' and d.inv_pnrr_number is not null then d.inv_pnrr_number ";
|
|
7759
|
+
query += "when d.inv_tn_number != '' and d.inv_tn_number is not null then concat(d.inv_tn_number,'(TN)') ";
|
|
7760
|
+
query += "when d.inv_tndigit_number != '' and d.inv_tndigit_number is not null then concat(d.inv_tndigit_number,'(TNDigit)') ";
|
|
7761
|
+
query += "when d.serial_no != '' and d.serial_no is not null then concat(d.serial_no,'(S/N)') ";
|
|
7762
|
+
query += "end as codice ";
|
|
7763
|
+
query += ", dc.note as note_cons from device_consegne dc";
|
|
7764
|
+
query += " join devices d on d.id = dc.id_device";
|
|
7765
|
+
query += " where dc.id_consegna = :id_consegna";
|
|
7766
|
+
query += " and d.id :id_device";
|
|
7767
|
+
return query;
|
|
7768
|
+
}
|
|
7769
|
+
|
|
7770
|
+
|
|
7771
|
+
function selectSoftwareConsegna(db_used, id_consegna, id_software) {
|
|
7772
|
+
var query = "";
|
|
7773
|
+
if (db_used) {
|
|
7774
|
+
switch (db_used) {
|
|
7775
|
+
case 'SQLITE':
|
|
7776
|
+
query = selectSoftwareConsegnaSQLite(id_consegna, id_software);
|
|
7777
|
+
break;
|
|
7778
|
+
case 'MYSQL':
|
|
7779
|
+
query = selectSoftwareConsegnaMySQL(id_consegna, id_software);
|
|
7780
|
+
break;
|
|
7781
|
+
case 'MYSQL2':
|
|
7782
|
+
query = selectSoftwareConsegnaSQLite(id_consegna, id_software);
|
|
7783
|
+
break;
|
|
7784
|
+
}
|
|
7785
|
+
}
|
|
7786
|
+
return query;
|
|
7787
|
+
}
|
|
7788
|
+
|
|
7789
|
+
function insertConsegnaSoftware() {
|
|
7790
|
+
|
|
7791
|
+
}
|
|
7792
|
+
function updateConsegnaSoftware() {
|
|
7793
|
+
|
|
7794
|
+
}
|
|
7795
|
+
function removeConsegnaSoftware() {
|
|
7796
|
+
|
|
7797
|
+
}
|
|
7798
|
+
|
|
7470
7799
|
//get connection types
|
|
7471
7800
|
function getConnectionTypesSQLite() {
|
|
7472
7801
|
var query = "select id, conn_type from connection_types";
|
|
@@ -13124,6 +13453,7 @@ module.exports = {
|
|
|
13124
13453
|
getBeniDaInventariOnDescription,
|
|
13125
13454
|
getBeniDaInventariNonAllocati,
|
|
13126
13455
|
getNetworksOnDevice,
|
|
13456
|
+
getFreeLanPortsCombo,
|
|
13127
13457
|
getImportedPropertiesByIdDevice,
|
|
13128
13458
|
getSetInfoByIdSet,
|
|
13129
13459
|
getSetInfoByIdDevice,
|
|
@@ -13210,6 +13540,22 @@ module.exports = {
|
|
|
13210
13540
|
getLastAddOnInserted,
|
|
13211
13541
|
getAddOnsByConfig,
|
|
13212
13542
|
//
|
|
13543
|
+
getVoIPDevices,
|
|
13544
|
+
//
|
|
13545
|
+
getSoftwares,
|
|
13546
|
+
getSoftwareByCodice,
|
|
13547
|
+
getSoftwareById,
|
|
13548
|
+
insertSoftware,
|
|
13549
|
+
updateSoftware,
|
|
13550
|
+
removeSoftware,
|
|
13551
|
+
//
|
|
13552
|
+
getUtenti,
|
|
13553
|
+
getUtentiCombo,
|
|
13554
|
+
getUtentiByIdDevice,
|
|
13555
|
+
insertUtentePerDevice,
|
|
13556
|
+
updateUtentePerDevice,
|
|
13557
|
+
removeUtentePerDevice,
|
|
13558
|
+
//
|
|
13213
13559
|
getDeviceConfigurations,
|
|
13214
13560
|
getLastDeviceConfiguration,
|
|
13215
13561
|
getDeviceConfigurationById,
|
|
@@ -13313,6 +13659,11 @@ module.exports = {
|
|
|
13313
13659
|
removeConsegnaDevice,
|
|
13314
13660
|
selectDevicePerConsegna,
|
|
13315
13661
|
selectDeviceConsegna,
|
|
13662
|
+
selectSoftwarePerConsegna,
|
|
13663
|
+
selectSoftwareConsegna,
|
|
13664
|
+
insertConsegnaSoftware,
|
|
13665
|
+
updateConsegnaSoftware,
|
|
13666
|
+
removeConsegnaSoftware,
|
|
13316
13667
|
//
|
|
13317
13668
|
selectDeviceInDeposito,
|
|
13318
13669
|
queryDeviceStatusCombo,
|