This commit is contained in:
alexmorenograu 2021-07-01 08:55:20 +02:00
commit 29710f3f90
2 changed files with 5 additions and 5 deletions

View File

@ -53,9 +53,9 @@ async function insertShelving(shelvingId, smartTagFk) {
unitName: currentUser.unitName,
itemList: [
{
attrCategory: 'verdnatura',
attrName: 'sinTicket',
barCode: shelvingId, // Matricula + nivel
attrCategory: 'verdnatura', // Plantilla
attrName: 'sinTicket', // Tipo de Plantilla
barCode: shelvingId, // Matricula + nivel --> Cod.Barras artículo
itemTitle: 'Etiqueta Sin ticket',
qrCode: shelvingId
}

View File

@ -9,9 +9,9 @@ exports.dataLogIn = dataLogIn;
con.con.connect(function(err) {});
app.use('/getNumShelving', require('./methods/setCollection__'));
app.use('/insertTicket', require('./methods/bindTicketShelving')); // collectionFk
// app.use('/getNumShelving', require('./methods/setCollection__'));
app.use('/bindShelving', require('./methods/bindShelvingTag')); // smartTagFk, shelving, level
app.use('/insertTicket', require('./methods/bindTicketShelving')); // collectionFk
app.use('/flashOn', require('./methods/flashOn'));
app.listen(port, () => {