#6276 createNewWarehouse methods migrated from silex to salix #1850

Merged
jorgep merged 158 commits from 6276-createNewWarehouse into dev 2024-03-06 11:32:11 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 7fdfd4fcb4 - Show all commits

View File

@ -20,7 +20,7 @@ module.exports = Self => {
if (typeof options == 'object')
Object.assign(myOptions, options);
const [info, okPacket, {collectionFk}] = await Self.rawSql('CALL vn.collection_assign(?, @vCollectionFk); SELECT @vCollectionFk collectionFk',
const [,, {collectionFk}] = await Self.rawSql('CALL vn.collection_assign(?, @vCollectionFk); SELECT @vCollectionFk collectionFk',
jorgep marked this conversation as resolved Outdated

si no usas info y okPacket porque los recuperas?
No se pueden hacer dos llamadas?

si no usas info y okPacket porque los recuperas? No se pueden hacer dos llamadas?

@jgallego No funciona bien, no está abriendo y cerrando la conexión a bd si lo hago en 2 llamadas. Puedo probar a usar un new ParametizedSql como en cloneWithEntries. O hacer como en transferSales y acceder directamente a la posición del array.

@jgallego No funciona bien, no está abriendo y cerrando la conexión a bd si lo hago en 2 llamadas. Puedo probar a usar un new ParametizedSql como en cloneWithEntries. O hacer como en transferSales y acceder directamente a la posición del array.

const [, , {collectionFk}]

const [, , {collectionFk}]
[userId], myOptions);
if (!collectionFk) throw new UserError('There are not picking tickets');