接口 product.operators.depot.barcode.list
接口说明
商品库存明细列表
业务参数
参数名称 | 类型 | 是否必须 | 说明 |
---|---|---|---|
DepotID | String | Y | 仓库 id |
BarCodeList | Array | Y | 商品条码数组 |
业务参数示例
{
"DepotID": "69c39945314d630011fc2b8c",
"BarCodeList": [
"6922255451427", // BarCode商品条码
"6925303721367",
"6922858211091"
]
}
返回示例
{
"error_code": 0,
"error_msg": "SUCCESS",
"data": [
{
"Name": "果汁饮料350ml",
"BarCode": "9555613800451",
"ImageUrl": "https://res.xxx.com/product/2112.png",
"CategoryName": "", // 商品分类
"id": "59c39945314d630011fc2b8c",
"SpecQty": 0,
"Qty": 13, // 数量
"AvgPrice": 20 // 商品平均进货价
}
]
}