-
开发者必读
读取在途库存SKU接口
POST http://openapi.ck1info.com/v1/InventoryPutawayOrder/SkuInboundInfo
接口说明: 读取在途库存SKU接口
Http 200 - 成功
Http 400 -读取数据有误,请检查输入参数
Body Parameters
名称 类型 格式要求 是否必须 描述 示例值 StorageNoList Collection of string None.
必须
库存编码列表
WarehouseCode string None.
仓库代码(传空代表查所有仓库)
TimeFrom date None.
必须
来货单创建时间开始时间
TimeTo date None.
必须
来货单创建时间结束时间
{ "StorageNoList": [ "sample string 1", "sample string 2" ], "WarehouseCode": "sample string 1", "TimeFrom": "2024-11-14T14:33:42.227+08:00", "TimeTo": "2024-11-14T14:33:42.227+08:00" }
返回结果
名称 类型 格式要求 是否必须 描述 示例值 WarehouseCode string None.
仓库代码
StorageNo string None.
库存编码
CustomerQuantity integer None.
客户填写的申报数量
ReceivedQuantity integer None.
来货单,货物的实际到仓总数量
InTransitQuantity integer None.
在途数量
[ { "WarehouseCode": "sample string 1", "StorageNo": "sample string 2", "CustomerQuantity": 3, "ReceivedQuantity": 4, "InTransitQuantity": 5 }, { "WarehouseCode": "sample string 1", "StorageNo": "sample string 2", "CustomerQuantity": 3, "ReceivedQuantity": 4, "InTransitQuantity": 5 } ]