退货入库

This commit is contained in:
2024-05-20 14:50:26 +08:00
parent 77a94b984b
commit a6ec63752a
4 changed files with 101 additions and 0 deletions

View File

@@ -98,4 +98,14 @@ export const createOrder = (code, name) => request({
point_code: code,
container_name: name
}
})
/**
* 二期退货入库
*/
export const twoPdaReturnIn = (no, pcode) => request({
url:'api/twoPda/vehicle/returnIn',
data: {
box_no: no,
point_code: pcode
}
})