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

51 lines
1.5 KiB
JavaScript
Raw Normal View History

2021-03-11 14:41:03 +00:00
const insert = require('./utilities/inserts');
function smartTag(barcode, shelving, level){
const got = require('got');
const config = require('./config');
(async() => {
insert.insertShelving(shelving, level);
(async() => {
const info = await config.info
let key = info.data.token;
(async() => {
const { body } = await got.post('http://app.etiquetaselectronicas.com:9999/bind/batchBind', {
json: {
storeId: config.storeId,
tagItemBinds: [{
eslBarcode: barcode,
itemBarcode: shelving + level
}
]
},
responseType: 'json',
headers: {
"Authorization": key
}
})
console.log(body)
})();
})();
})();
}
///DATOS INTRODUCIDOS POR EL USUARIO////
var barcode = "A0A3B820690F"; //valido = "A0A3B82"+ 4 CARACTERES HEXADECIMALES (0-F)
var shelving = "BCD"; //valido = 3 CARACTERES LETRAS (A-Z)
var level = "1";
//////////////////////////////////////
if(insert.filter(barcode,"barcode")){
if(insert.filter(shelving,"shelving")){
smartTag(barcode, shelving, level);
}
else{
console.log("¡MATRICULA INCORRECTA!")
}
}
else{
console.log("¡CODIGO DE ETIQUETA INCORRECTO!")
}