hotFix: collection assign

This commit is contained in:
Alex Moreno 2024-07-23 10:48:12 +02:00
parent 6167454097
commit eb413af275
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ module.exports = Self => {
`, [userId], myOptions);
// Por si entra en el SELECT FOR UPDATE y retorna un array más
const collectionFk = result[2][0]?.collectionFk || result[3][0]?.collectionFk;
const collectionFk = result[2]?.[0]?.collectionFk || result[3]?.[0]?.collectionFk;
if (!collectionFk) throw new UserError('There are not picking tickets');
await Self.rawSql('CALL vn.collection_printSticker(?, NULL)', [collectionFk], myOptions);