#6776 makeMulti & itemShelvin_add refactor #1970

Merged
jorgep merged 11 commits from 6776-makeMulti into dev 2024-02-19 12:23:45 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 5690da0a18 - Show all commits

View File

@ -1,5 +1,5 @@
module.exports = Self => { module.exports = Self => {
Self.remoteMethod('makeMulti', { Self.remoteMethodCtx('makeMulti', {

tanto el nombre como la descripcion no me dejan claro que hace

tanto el nombre como la descripcion no me dejan claro que hace

Proposta: itemShelvingAddList_byItem

Proposta: itemShelvingAddList_byItem

addShelvingByItem este be?

addShelvingByItem este be?
description: 'Add a record or update it if it already exists.', description: 'Add a record or update it if it already exists.',
accessType: 'WRITE', accessType: 'WRITE',
accepts: [{ accepts: [{
@ -25,8 +25,8 @@ module.exports = Self => {
} }
}); });
Self.makeMulti = async(shelvingFk, items, warehouseFk, options) => { Self.makeMulti = async(ctx, shelvingFk, items, warehouseFk, options) => {
const myOptions = {}; const myOptions = {userId: ctx.req.accessToken.userId};
let tx; let tx;
if (typeof options == 'object') if (typeof options == 'object')