#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
2 changed files with 4 additions and 2 deletions
Showing only changes of commit b86110c898 - Show all commits

View File

@ -46,7 +46,7 @@ module.exports = Self => {
const [sales] = await Self.rawSql('CALL vn.sale_getFromTicketOrCollection(?)',
[id], myOptions);
const isPicker = source == 'CHECKER';
const isPicker = source != 'CHECKER';
jorgep marked this conversation as resolved Outdated

picker i checker no son el mateix..

picker i checker no son el mateix..
const [placements] = await Self.rawSql('CALL vn.collectionPlacement_get(?, ?)',
[id, isPicker], myOptions
);

View File

@ -52,7 +52,9 @@ module.exports = Self => {
return {
id: itemShelving.id,
itemFk: itemShelving.itemFk,
longName: item ? item.longName || `${item.name} ${item.size}` : '',
name: item.name,
jorgep marked this conversation as resolved Outdated

esto donde se muestra? mirar con @sergiodt ya que esto debería en todo caso hacerlo front, intentar mostrar siempre el longName si no lo hay no mostrar nada, siempre debe haberlo

esto donde se muestra? mirar con @sergiodt ya que esto debería en todo caso hacerlo front, intentar mostrar siempre el longName si no lo hay no mostrar nada, siempre debe haberlo

Vale, le envio por separado, como propiedades el name y el size y ya el muestra en el front longname o los otros. Hablado con @sergiodt .

Vale, le envio por separado, como propiedades el name y el size y ya el muestra en el front longname o los otros. Hablado con @sergiodt .
size: item.size,
longName: item.longName,
quantity: itemShelving.visible,
carros
};