fix: refs #6776 replace name
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-02-16 13:48:55 +01:00
parent 8cecff36ef
commit 69acebb43c
3 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
module.exports = Self => {
Self.remoteMethodCtx('makeMulti', {
Self.remoteMethodCtx('addListByItem', {
description: 'Add a record or update it if it already exists.',
accessType: 'WRITE',
accepts: [{
@ -20,12 +20,12 @@ module.exports = Self => {
}],
http: {
path: `/makeMulti`,
path: `/addListByItem`,
verb: 'POST'
}
});
Self.makeMulti = async(ctx, shelvingFk, items, warehouseFk, options) => {
Self.addListByItem = async(ctx, shelvingFk, items, warehouseFk, options) => {
const myOptions = {userId: ctx.req.accessToken.userId};
let tx;

View File

@ -1,7 +1,7 @@
const {models} = require('vn-loopback/server/server');
const LoopBackContext = require('loopback-context');
describe('ItemShelving makeMulti()', () => {
describe('ItemShelving addListByItem()', () => {
const warehouseFk = 1;
let ctx;
let options;
@ -33,7 +33,7 @@ describe('ItemShelving makeMulti()', () => {
const shelvingFk = 'ZPP';
const items = [1, 1, 1, 2];
await models.ItemShelving.makeMulti(ctx, shelvingFk, items, warehouseFk, options);
await models.ItemShelving.addListByItem(ctx, shelvingFk, items, warehouseFk, options);
const itemShelvings = await models.ItemShelving.find({where: {shelvingFk}}, options);
expect(itemShelvings.length).toEqual(2);
@ -45,7 +45,7 @@ describe('ItemShelving makeMulti()', () => {
const {visible: itemsBefore} = await models.ItemShelving.findOne({
where: {shelvingFk, itemFk: items[0]}
}, options);
await models.ItemShelving.makeMulti(ctx, shelvingFk, items, warehouseFk, options);
await models.ItemShelving.addListByItem(ctx, shelvingFk, items, warehouseFk, options);
const {visible: itemsAfter} = await models.ItemShelving.findOne({
where: {shelvingFk, itemFk: items[0]}
}, options);

View File

@ -1,5 +1,5 @@
module.exports = Self => {
require('../methods/item-shelving/deleteItemShelvings')(Self);
require('../methods/item-shelving/makeMulti')(Self);
require('../methods/item-shelving/addListByItem')(Self);
require('../methods/item-shelving/getInventory')(Self);
};