This repository has been archived on 2024-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
smart-tag/methods/bindTicketShelving.js

76 lines
3.3 KiB
JavaScript
Raw Normal View History

2021-03-18 10:04:32 +00:00
const express = require('express');
2021-03-18 10:42:06 +00:00
const router = express.Router(); // eslint-disable-line
2021-03-25 08:33:53 +00:00
const select = require('../db/selectCollection');
2021-03-22 08:25:09 +00:00
const filter = require('../utilities/filter');
2021-03-26 15:26:17 +00:00
const insertTicketDB = require('../db/insertTicket');
2021-03-18 10:04:32 +00:00
2021-05-10 13:20:31 +00:00
router.get('/collectionFk', async(req, res) => {
2021-03-18 15:12:45 +00:00
const collectionShelving = req.params.collectionShelving.split(',');
2021-03-18 15:30:28 +00:00
const collectionFk = req.params.collectionFk;
2021-03-18 15:24:51 +00:00
console.log(collectionShelving);
2021-03-18 15:30:28 +00:00
console.log(collectionFk);
2021-03-22 08:25:09 +00:00
if (filter.isShelving(collectionShelving)) {
ticketShelving(collectionShelving, collectionFk);
res.json({message: 'SUCCESS'});
} else
res.json({message: 'SHELVING ERROR'});
2021-03-18 10:04:32 +00:00
});
module.exports = router;
2021-03-18 15:12:45 +00:00
function ticketShelving(collectionShelving, collectionFk) {// parametro collectionFk
2021-03-18 10:38:05 +00:00
select.select(collectionFk, function(err, data) {
2021-03-18 15:24:51 +00:00
console.log(data);
insertTicket(data, collectionShelving);
2021-03-18 10:04:32 +00:00
});
}
2021-03-18 15:24:51 +00:00
function insertTicket(consultaSql, shelving) {
console.log(shelving);
console.log('CONSULTASQL:', consultaSql);
2021-03-22 07:50:57 +00:00
console.log('CONSULTASQL_TAMAÑO:', consultaSql.length);
2021-03-18 12:56:34 +00:00
const dataLogIn = require('../server');
2021-03-11 15:38:22 +00:00
const got = require('got');
(async() => {
2021-03-18 12:56:34 +00:00
const info = await dataLogIn.dataLogIn;
2021-03-18 10:38:05 +00:00
let key = info.data.token;
2021-03-11 15:38:22 +00:00
let currentUser = info.data.currentUser;
2021-03-15 09:37:07 +00:00
2021-03-11 15:38:22 +00:00
(async() => {
2021-03-18 10:38:05 +00:00
for (let i = 0; i < consultaSql.length; i++) {
for (let j = 0; j < consultaSql[i].Level.toString().length; j++) {
2021-03-30 06:06:07 +00:00
console.log('SHELVING: ', shelving[consultaSql[i].Wagon - 1]);
2021-03-18 10:42:06 +00:00
const {body} = await got.post('http://app.etiquetaselectronicas.com:9999/item/batchImportItem', { // eslint-disable-line
2021-03-17 08:11:55 +00:00
json: {
agencyId: currentUser.agencyId,
merchantId: currentUser.merchantId,
storeId: currentUser.storeId,
unitName: currentUser.unitName,
itemList: [
{
2021-03-18 10:38:05 +00:00
attrCategory: 'verdnatura',
attrName: 'conTicket',
barCode: shelving[consultaSql[i].Wagon - 1] + consultaSql[i].Level.toString().charAt(j), // Matricula + nivel
itemTitle: 'Etiqueta Con ticket',
productCode: consultaSql[i].Ticket, // Ticket
custFeature1: consultaSql[i].Client, // Client
2021-03-30 06:06:07 +00:00
custFeature2: consultaSql[i].Agency, // Agencia de transporte
custFeature3: 0, // Agencia de transporte
custFeature4: consultaSql[i].Worker, // Agencia de transporte
2021-03-17 08:11:55 +00:00
}
]
},
responseType: 'json',
headers: {
2021-03-18 10:38:05 +00:00
'Authorization': key
2021-03-17 08:11:55 +00:00
}
2021-03-18 10:38:05 +00:00
});
2021-03-26 15:26:17 +00:00
insertTicketDB.insertTicket(consultaSql[i].Ticket, shelving[consultaSql[i].Wagon - 1], consultaSql[i].Level.toString().charAt(j));
2021-03-22 08:25:09 +00:00
console.log(i, body);
2021-03-17 08:11:55 +00:00
}
2021-03-11 15:38:22 +00:00
}
})();
})();
}
exports.insertTicket = insertTicket;