# 获取入库订单状态

接口地址 /api/dxm/inbound-status

请求方式 POST

consumes ["application/json"]

produces ["*/*"]

接口描述 ``

请求示例

{
    "orderId": "xxxxxx",
}
1
2
3

请求参数

参数名称 参数说明 请求类型 是否必须 数据类型 schema
token token header true string
form form body true 请求对象 请求对象

schema属性说明

请求对象

参数名称 参数说明 请求类型 是否必须 数据类型 schema
orderId 订单号 body string

响应示例

{
    "success": false,
    "message": "错误信息",
    "data": {
        "status": "新建",
        "containerType": "20GP",
        "numberReceiving": 10,
        "stockIn": [
            {
                "sku": "sku001",
                "qty": 10,
                "qtyDefective": 0
            },
            {
                "sku": "sku002",
                "qty": 10,
                "qtyDefective": 0
            }
        ]
    }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

响应参数

参数名称 参数说明 数据类型
success 接口请求是否成功 boolean
message 错误信息或成功信息 string
data.status 订单当前状态: 新建,库内操作中,待客户操作,取消,异常,已拦截,已入库,已出库,已完成,拦截中 string
data.containerType 集装箱类型 string
data.numberReceiving 接收数量 int
data.stockIn 入库商品列表 array
data.stockIn.sku SKU编码 string
data.stockIn.qty 商品数量 int
data.stockIn.qtyDefective 不良品数量 int
Last Updated: 12/25/2024, 3:55:22 PM