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

43 lines
1.9 KiB
JavaScript

function insertTicket(consultaSql, shelving, max) {
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 (let i = 0; i < consultaSql.length; i++) {
// for(var j=0;j<max;j++){
for (let j = 0; j < consultaSql[i].Level.toString().length; j++) {
const {body} = await got.post('http://app.etiquetaselectronicas.com:9999/item/batchImportItem', { // eslint-disable-line
json: {
agencyId: currentUser.agencyId,
merchantId: currentUser.merchantId,
storeId: currentUser.storeId,
unitName: currentUser.unitName,
itemList: [
{
attrCategory: 'verdnatura',
attrName: 'conTicket',
barCode: shelving + consultaSql[i].Level.toString().charAt(j), // Matricula + nivel
itemTitle: 'Etiqueta Con ticket',
productCode: consultaSql[i].Ticket, // Ticket
custFeature1: consultaSql[i].Client, // Client
custFeature2: consultaSql[i].Agency // Agencia de transporte
}
]
},
responseType: 'json',
headers: {
'Authorization': key
}
});
}
}
})();
})();
}
exports.insertTicket = insertTicket;