描述
获取代发出库单的面单标签获取sku库位库存
路径
| Http verb | URL |
|---|---|
| POST | /api/supplier-service/v1/jofo/getLocationInventoryBySku |
...
|
| 字段名称 | 类型 | 备注 |
|---|---|---|
| thirdSkuNosskuIds | List<String> | skuId集合 |
| lockStatus | Integer | 0-未锁定 1-锁定 |
| skuNameCn | String | skuName中文 |
| locationNames | List<String> | 库位名称集合 |
| skuNameEn | String | skuName英文 |
请求样例
| 代码块 |
|---|
{
"thirdSkuNosskuIds":["KR1817224120900443S"],
"lockStatus":0,
"skuNameCn":"10吨捆绑带",
"locationNames":["7","8"],
"skuNameEn":"10吨捆绑带"
} |
...
返回样例
| 字段名称 | 类型 | 备注 | ||
|---|---|---|---|---|
| data | List<Object> | |||
| data[].occupiedQty | Integer | 占用库存 | ||
| data[].availableQty | Integer | 在库库存 | ||
| data[].remainingQty | Integer | 可用库存 | ||
| data[].skuId | String | skuId | ||
| data[]. | orderIdLong | 订单idlocationName | String | 库位 |
| data[].warehouseCode | String | 仓库编码 | ||
| data[].lockStatus | Integer | 锁定状态 0 - 未锁定 1-锁定 | ||
| data[].skuNameCn | String | skuName中文 | ||
| data[].skuNameEn | String | skuName英文 | ||
data[].labelsku | String标签base64编码 | sku编码 | ||
| data[].grossWeight | BigDecimal | 重量 | ||
| data[].height | BigDecimal | 高 | ||
| data[].width | BigDecimal | 宽 | ||
| data[].length | BigDecimal | 长 | ||
| data[].weightUnit | String | 重量单位 |
| 代码块 |
|---|
{
"code": "0",
"data": [
{
"aggregator": 7317,
"aggregatorName": "STE KAIRUN SARL",
"availableQty": 116,
"createdAccount": "sharonliu@walltechsystem.cn",
"createdBy": 11354,
"createdName": "sharonliu@walltechsystem.cn",
"dateCreated": "2024-12-09 10:44:07",
"dateModified": "2024-12-30 09:05:44",
"grossWeight": 1,
"grossWeightActual": 1,
"id": "1865950520552849408",
"locationName": "78",
"locationType": 1,
"locationTypeMsg": "",
"lockStatus": 0,
"lockStatusMsg": "",
"modifiedAccount": "lynnqiu@walltechsystem.cn",
"modifiedBy": 44478,
"modifiedName": "lynnqiu@walltechsystem.cn",
"occupiedQty": 0,
"operation": "/wms/inbound/manage/markReceive",
"outboundOrderNo": "",
"productHeight": 1,
"productHeightActual": 1,
"productLength": 1,
"productLengthActual": 1,
"productName": "",
"productNameEn": "",
"productWidth": 1,
"productWidthActual": 1,
"remainingQty": "",
"shipperId": 12224,
"shipperName": "国内管理员",
"siteId": 1,
"skuCode": "PJ269",
"skuName": "10吨捆绑带",
"skuNameCn": "10吨捆绑带",
"skuNameEn": "10吨捆绑带",
"thirdSkuNoskuId": "KR1817224120900443S",
"unit": "条",
"warehouseCode": "MatadiWHMalukuWH",
"weightUnit": "KG",
"zoneCode": "78"
},
{
"aggregator": 7317, "aggregatorName": "STE KAIRUN SARL",
"availableQty": 0,
"createdAccount": "sharonliu@walltechsystem.cn",
"createdBy": 11354,
"createdName": "sharonliu@walltechsystem.cn",
"dateCreated": "2024-12-09 10:44:07",
"dateModified": "2024-12-30 09:05:44",
"grossWeight": 1,
"grossWeightActual": 1,
"id": "1865950520552849408",
"locationName": "7",
"locationType": 1,
"locationTypeMsg": "",
"lockStatus": 0,
"lockStatusMsg": "",
"modifiedAccount": "lynnqiu@walltechsystem.cn",
"modifiedBy": 44478,
"modifiedName": "lynnqiu@walltechsystem.cn",
"occupiedQty": 0,
"operation": "/wms/inbound/manage/markReceive",
"outboundOrderNo": "",
"productHeight": 1,
"productHeightActual": 1,
"productLength": 1,
"productLengthActual": 1,
"productName": "",
"productNameEn": "",
"productWidth": 1,
"productWidthActual": 1,
"remainingQty": "",
"shipperId": 12224,
"shipperName": "国内管理员",
"siteId": 1,
"skuCode": "PJ269",
"skuName": "10吨捆绑带",
"skuNameCn": "10吨捆绑带",
"skuNameEn": "10吨捆绑带",
"thirdSkuNoskuId": "KR1817224120900443S",
"unit": "条",
"warehouseCode": "MatadiWH",
"weightUnit": "KG",
"zoneCode": "7"
}
],
"errors": "",
"message": "",
"messageId": "",
"success": true,
"warnList": ""
} |
...