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-11 15:38:22 +00:00
function insertTicket(sql, shelving){
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() => {
for(var i=0;i<sql.length;i++){
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",
barCode: shelving + sql[i].level,//Matricula + nivel
itemTitle: "Etiqueta Con ticket",
productCode: sql[i].ticketFk, //Ticket
custFeature1: sql[i].nickname, //Client
custFeature2: sql[i].agencyModeFk //Agencia de transporte
}
]
},
responseType: 'json',
headers: {
"Authorization": key
}
})
console.log(body)
}
})();
})();
}
exports.insertTicket = insertTicket;