仓库模块_出库货物记录:init

This commit is contained in:
qianhao.xu
2024-03-22 09:09:36 +08:00
parent fe7887dd91
commit 27a92898b6
2 changed files with 8 additions and 8 deletions

View File

@@ -6,7 +6,7 @@ import request from '@/utils/request'
*/
export function listWmGoodsOutProduction(query) {
return request({
url: 'business/WmGoodsOutProduction/list',
url: '/mes/wm/WmGoodsOutProduction/list',
method: 'get',
params: query,
})
@@ -18,7 +18,7 @@ export function listWmGoodsOutProduction(query) {
*/
export function addWmGoodsOutProduction(data) {
return request({
url: 'business/WmGoodsOutProduction',
url: '/mes/wm/WmGoodsOutProduction',
method: 'post',
data: data,
})
@@ -29,7 +29,7 @@ export function addWmGoodsOutProduction(data) {
*/
export function updateWmGoodsOutProduction(data) {
return request({
url: 'business/WmGoodsOutProduction',
url: '/mes/wm/WmGoodsOutProduction',
method: 'PUT',
data: data,
})
@@ -40,7 +40,7 @@ export function updateWmGoodsOutProduction(data) {
*/
export function getWmGoodsOutProduction(id) {
return request({
url: 'business/WmGoodsOutProduction/' + id,
url: '/mes/wm/WmGoodsOutProduction/' + id,
method: 'get'
})
}
@@ -51,7 +51,7 @@ export function getWmGoodsOutProduction(id) {
*/
export function delWmGoodsOutProduction(pid) {
return request({
url: 'business/WmGoodsOutProduction/' + pid,
url: '/mes/wm/WmGoodsOutProduction/' + pid,
method: 'delete'
})
}