Commit 283a7dcf by zhuzhequan

fix:修改打单完成接口参数

parent ec363630
...@@ -263,14 +263,14 @@ export function getPodBoxListApi( ...@@ -263,14 +263,14 @@ export function getPodBoxListApi(
} }
export function submitInspectionApi( export function submitInspectionApi(
data: { id: number; version?: number }[], orderId: number | undefined,
boxIndex: number | null, boxIndex: number | null,
warehouseId: number | string, warehouseId: number | string,
) { ) {
return axios.post<never, BaseRespData<never>>( return axios.post<never, BaseRespData<never>>(
`factory/podJomallOrderUs/podPrintOrderComplete?box=${boxIndex}&warehouseId=${warehouseId}`, `factory/podJomallOrderUs/podPrintOrderComplete?box=${boxIndex}&warehouseId=${warehouseId}`,
{ {
orderParamList: data, orderId,
}, },
) )
} }
......
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