• 开发者平台
  • >
  • 餐饮文档中心

查询非销售单出库明细收费(此接口只适用于供应链1.0)

(下行接口)第三方查询客如云商户非销售类出库物品明细

授权方式:门店授权

请求描述

HTTP请求方式:POST
HTTP请求头类型:Content-Type=application/json
URI:open/v1/supplyChain/outboundDetail

请求参数

1.公共参数

详情可查看【公共说明】中的公共参数模块

2.业务参数

参数名 参数类型 是否必填 参数描述
shopIdenty Long 门店ID,(如果是品牌,请传-1),默认-1
startTime Long 确认开始时间
endTime Long 确认结束时间
status Integer 单据状态:0草稿,1确认
outboundNo String 出库单据号
start int 偏移量
limit int 单页条数

业务示例(JSON)

{
  "status":1,
  "endTime":"1534902319722",
  "shopIdenty":"810094162",
  "start":0,
  "limit":10,
  "startTime":0,
  "outboundNo":"CK201806050001"
}

响应参数

参数名 参数类型 是否必填 参数描述
code Int 返回编码,详见错误码
message String 返回信息
messageUuid String 消息uuid
result SupplyChainPageResponse 返回响应数据,详见SupplyChainPageResponse

SupplyChainPageResponse

参数名 类型 是否必填 参数描述
total int 总条数
num int 本次请求返回条数
data List<OutBoudDetailVo> 出库单明细列表

OutBoudDetailVo

参数名 类型 是否必填 参数描述
brandId Long 品牌ID
shopId Long 门店ID,如果不是门店,此字段为-1
brandName String 品牌名称
commercialName String 门店名称,如果不是门店,此字段为空
warehouseName String 仓库名称
outboundNo String 出库单据号
skuId Long 商品Id
skuCode String 商品编码
skuName String 商品名称(规格)
uom String 单位
qty Double 数量
price Double 单价
amount Double 金额
billDate Long 制作时间

响应示例(JSON)

{
  "result":{
    "total":1,
    "num":1,
    "data":[{
      "brandId":32296,
      "brandName":"体验区测试品牌01",
      "shopId":810094162,
      "commercialName":"体验区测试品牌01store品牌1门店1",
      "warehouseName":"总仓库",
      "outboundNo":"CK201806050001",
      "skuId":58181441091038208,
      "skuCode":"STK0002",
      "skuName":"lucy回锅肉",
      "uom":"份",
      "qty":2.0,
      "price":33.0,
      "amount":66.0,
      "billDate":1528128000000,
      "updaterId":"-777",
      "updaterName":"",
      "upadteTime":null}]},
      "code":0,
      "message":"成功[OK]",
      "messageUuid":"2a7a416b77cb4dc2be53235f80a3a9dd",
      "apiMessage":null
}
目录