You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.2 KiB
TypeScript
64 lines
1.2 KiB
TypeScript
6 months ago
|
import request from '@/utils/request';
|
||
|
import { AxiosPromise } from 'axios';
|
||
|
import { InventoryVO, InventoryForm, InventoryQuery } from '@/api/wms/inventory/types';
|
||
|
|
||
|
/**
|
||
|
* 查询物料库存列表
|
||
|
* @param query
|
||
|
* @returns {*}
|
||
|
*/
|
||
|
|
||
|
export const listInventory = (query?: InventoryQuery): AxiosPromise<InventoryVO[]> => {
|
||
|
return request({
|
||
|
url: '/wms/inventory/list',
|
||
|
method: 'get',
|
||
|
params: query
|
||
|
});
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* 查询物料库存详细
|
||
|
* @param inventoryId
|
||
|
*/
|
||
|
export const getInventory = (inventoryId: string | number): AxiosPromise<InventoryVO> => {
|
||
|
return request({
|
||
|
url: '/wms/inventory/' + inventoryId,
|
||
|
method: 'get'
|
||
|
});
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* 新增物料库存
|
||
|
* @param data
|
||
|
*/
|
||
|
export const addInventory = (data: InventoryForm) => {
|
||
|
return request({
|
||
|
url: '/wms/inventory',
|
||
|
method: 'post',
|
||
|
data: data
|
||
|
});
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* 修改物料库存
|
||
|
* @param data
|
||
|
*/
|
||
|
export const updateInventory = (data: InventoryForm) => {
|
||
|
return request({
|
||
|
url: '/wms/inventory',
|
||
|
method: 'put',
|
||
|
data: data
|
||
|
});
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* 删除物料库存
|
||
|
* @param inventoryId
|
||
|
*/
|
||
|
export const delInventory = (inventoryId: string | number | Array<string | number>) => {
|
||
|
return request({
|
||
|
url: '/wms/inventory/' + inventoryId,
|
||
|
method: 'delete'
|
||
|
});
|
||
|
};
|