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/insertTicket.js

40 lines
1.6 KiB
JavaScript
Raw Normal View History

2021-03-12 15:57:49 +00:00
function insertTicket(consultaSql, shelving){
2021-03-11 15:38:22 +00:00
const config = require('./config');
const got = require('got');
(async() => {
const info = await config.info
let key = info.data.token
let currentUser = info.data.currentUser;
(async() => {
2021-03-12 15:57:49 +00:00
for(var i=0;i<consultaSql.length;i++){
2021-03-11 15:38:22 +00:00
const { body } = await got.post('http://app.etiquetaselectronicas.com:9999/item/batchImportItem', {
json: {
agencyId: currentUser.agencyId,
merchantId: currentUser.merchantId,
storeId: currentUser.storeId,
unitName: currentUser.unitName,
itemList: [
{
attrCategory: "verdnatura",
attrName: "conTicket",
2021-03-12 15:57:49 +00:00
barCode: shelving + consultaSql[i].level,//Matricula + nivel
2021-03-11 15:38:22 +00:00
itemTitle: "Etiqueta Con ticket",
2021-03-12 15:57:49 +00:00
productCode: consultaSql[i].ticketFk, //Ticket
custFeature1: consultaSql[i].nickname, //Client
custFeature2: consultaSql[i].agencyModeFk //Agencia de transporte
2021-03-11 15:38:22 +00:00
}
]
},
responseType: 'json',
headers: {
"Authorization": key
}
})
console.log(body)
}
})();
})();
}
exports.insertTicket = insertTicket;