Commit 8a7ee382 by qinjianhui

fix: US 播种墙配货接口修改 -- 加local

parent 2c407920
......@@ -238,7 +238,7 @@ export function getPackingDataApi(
warehouseId: number | string,
) {
return axios.get<never, BaseRespData<PodMakeOrderData>>(
'/factory/podJomallOrderUs/putPackingSafe',
'/factory/podJomallOrderUs/local/putPackingSafe',
{
params: {
podJomallUsNo: code,
......@@ -254,7 +254,7 @@ export function getPodBoxListApi(
warehouseId: number | string,
) {
return axios.get<never, BaseRespData<PodMakeOrderData[]>>(
'factory/podJomallOrderUs/getPodBoxOrderDetails',
'factory/podJomallOrderUs/local/getPodBoxOrderDetails',
{
params: { factoryNo, warehouseId },
},
......@@ -279,7 +279,7 @@ export function clearBoxApi(
warehouseId: number | string,
) {
return axios.get<never, BaseRespData<never>>(
'factory/podJomallOrderUs/delPodBoxOrderDetailsByBox',
'factory/podJomallOrderUs/local/delPodBoxOrderDetailsByBox',
{
params: { factoryNo, box, warehouseId },
},
......@@ -287,7 +287,7 @@ export function clearBoxApi(
}
export function clearAllBoxApi(warehouseId: string | number, factoryNo: string | number | undefined) {
return axios.get<never, BaseRespData<never>>(
'factory/podJomallOrderUs/delPodBoxOrderDetails',
'factory/podJomallOrderUs/local/delPodBoxOrderDetails',
{
params: { warehouseId, factoryNo },
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment