#6276 createNewWarehouse methods migrated from silex to salix #1850
|
@ -16,7 +16,6 @@ module.exports = Self => {
|
||||||
Self.assignCollection = async(ctx, options) => {
|
Self.assignCollection = async(ctx, options) => {
|
||||||
const userId = ctx.req.accessToken.userId;
|
const userId = ctx.req.accessToken.userId;
|
||||||
const myOptions = {userId};
|
const myOptions = {userId};
|
||||||
const $t = ctx.req.__;
|
|
||||||
|
|
||||||
if (typeof options == 'object')
|
if (typeof options == 'object')
|
||||||
Object.assign(myOptions, options);
|
Object.assign(myOptions, options);
|
||||||
|
@ -26,7 +25,7 @@ module.exports = Self => {
|
||||||
const [assignedCollection] = await Self.rawSql('SELECT @vCollectionFk');
|
const [assignedCollection] = await Self.rawSql('SELECT @vCollectionFk');
|
||||||
const {'@vCollectionFk': collectionFk} = assignedCollection;
|
const {'@vCollectionFk': collectionFk} = assignedCollection;
|
||||||
|
|
||||||
if (!collectionFk) throw new UserError($t('There are not picking tickets'));
|
if (!collectionFk) throw new UserError('There are not picking tickets');
|
||||||
await Self.rawSql('CALL vn.collection_printSticker(?, NULL)', [collectionFk], myOptions);
|
await Self.rawSql('CALL vn.collection_printSticker(?, NULL)', [collectionFk], myOptions);
|
||||||
jorgep marked this conversation as resolved
Outdated
|
|||||||
|
|
||||||
return collectionFk;
|
return collectionFk;
|
||||||
|
|
|
@ -29,9 +29,9 @@ module.exports = Self => {
|
||||||
let fields = ['id', 'appName'];
|
let fields = ['id', 'appName'];
|
||||||
|
|
||||||
if (workerFk)
|
if (workerFk)
|
||||||
jorgep marked this conversation as resolved
alexm
commented
Javascript tiene una forma muy sencilla de 'fusionar' arrays Javascript tiene una forma muy sencilla de 'fusionar' arrays
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/concat
|
|||||||
fields = [...fields, ...['isVersionBetaCritical', 'versionBeta', 'urlBeta']];
|
fields = fields.concat(['isVersionBetaCritical', 'versionBeta', 'urlBeta']);
|
||||||
else
|
else
|
||||||
fields = [...fields, ...['isVersionCritical', 'version', 'urlProduction']];
|
fields = fields.concat(['isVersionCritical', 'version', 'urlProduction']);
|
||||||
|
|
||||||
const filter = {
|
const filter = {
|
||||||
where: {
|
where: {
|
||||||
|
@ -40,6 +40,6 @@ module.exports = Self => {
|
||||||
fields,
|
fields,
|
||||||
};
|
};
|
||||||
|
|
||||||
return await Self.findOne(filter);
|
return Self.findOne(filter);
|
||||||
jorgep marked this conversation as resolved
Outdated
alexm
commented
en un return no hace falta poner 'await' Bing:
en un return no hace falta poner 'await'
Bing:
```
En JavaScript, la mayoría de las veces, no hay diferencia observable entre return await myFunction() y return myFunction()12. Ambas versiones tienen el mismo comportamiento observable.
```
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -36,7 +36,6 @@ module.exports = Self => {
|
||||||
fields: ['code'],
|
fields: ['code'],
|
||||||
where: {
|
where: {
|
||||||
jorgep marked this conversation as resolved
Outdated
jgallego
commented
quitar esta llamada, dentro de item_getInfo ya se llama a barcodeToItem por tanto itemInfo ya contiene el id que se busca quitar esta llamada, dentro de item_getInfo ya se llama a barcodeToItem por tanto itemInfo ya contiene el id que se busca
jorgep
commented
@sergiodt es correcto o quieres los barcodes tambien? @sergiodt es correcto o quieres los barcodes tambien?
|
|||||||
itemFk: realIdItem
|
itemFk: realIdItem
|
||||||
|
|
||||||
}
|
}
|
||||||
jorgep marked this conversation as resolved
Outdated
jgallego
commented
quitar salto quitar salto
|
|||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -50,14 +50,17 @@ describe('ticket setDeleted()', () => {
|
||||||
return value;
|
return value;
|
||||||
};
|
};
|
||||||
const ticketId = 23;
|
const ticketId = 23;
|
||||||
|
const [sectorCollectionBefore] = await models.Ticket.rawSql(
|
||||||
await models.Ticket.setDeleted(ctx, ticketId, options);
|
|
||||||
|
|
||||||
const [sectorCollection] = await models.Ticket.rawSql(
|
|
||||||
`SELECT COUNT(*) numberRows
|
`SELECT COUNT(*) numberRows
|
||||||
FROM vn.sectorCollection`, [], options);
|
FROM vn.sectorCollection`, [], options);
|
||||||
|
|
||||||
expect(sectorCollection.numberRows).toEqual(1);
|
await models.Ticket.setDeleted(ctx, ticketId, options);
|
||||||
|
|
||||||
|
const [sectorCollectionAfter] = await models.Ticket.rawSql(
|
||||||
|
`SELECT COUNT(*) numberRows
|
||||||
jorgep marked this conversation as resolved
Outdated
jgallego
commented
ejecuta antes de borrar SELECT COUNT(*) numberRows ejecuta antes de borrar SELECT COUNT(*) numberRows
FROM vn.sectorCollection`, [], options);
FROM vn.sectorCollection
y así quitas el uno y el test lo haces dinamico
|
|||||||
|
FROM vn.sectorCollection`, [], options);
|
||||||
|
|
||||||
|
expect(sectorCollectionAfter.numberRows).toEqual(sectorCollectionBefore.numberRows - 1);
|
||||||
|
|
||||||
await tx.rollback();
|
await tx.rollback();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
|
@ -12,9 +12,6 @@
|
||||||
"id": true,
|
"id": true,
|
||||||
"description": "Identifier"
|
"description": "Identifier"
|
||||||
},
|
},
|
||||||
"truckFk": {
|
|
||||||
"type": "number"
|
|
||||||
},
|
|
||||||
"built": {
|
"built": {
|
||||||
jorgep marked this conversation as resolved
jgallego
commented
al poner la relacion este bloque lo puedes quitar al poner la relacion este bloque lo puedes quitar
|
|||||||
"type": "date"
|
"type": "date"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue
No hace falta usar $t, UserError traduce por defecto.