#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 => {
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.',
accessType: 'WRITE',
accepts: [{
@ -25,8 +25,8 @@ module.exports = Self => {
}
});
Self.makeMulti = async(shelvingFk, items, warehouseFk, options) => {
const myOptions = {};
Self.makeMulti = async(ctx, shelvingFk, items, warehouseFk, options) => {
const myOptions = {userId: ctx.req.accessToken.userId};
let tx;
if (typeof options == 'object')