文档
测试

查询上架单

POST
请求地址/router

系统相关界面

"界面路径:【采购】----【上架单管理】----【查询】"

请求地址

|环境|服务地址(HTTP/HTTPS)| |-|-| |V2正式环境| https://gw.superboss.cc/router| **2022年4月1日**以后申请的APP Key,统一使用V2正式环境的请求地址:**https://gw.superboss.cc/router**

公共参数

调用任何一个API都必须传入的参数,目前支持的公共参数有: | 参数名称 | 参数类型 | 是否必须 | 参数描述 | | --- | --- | --- | --- | | method | string | 是 | API接口名称 | | appKey | string | 是 | 分配给应用的AppKey | | timestamp | string | 是 | 时间戳,时区为GMT+8,例如:2020-09-21 16:58:00。API服务端允许客户端请求最大时间误差为10分钟 | | format | string | 否 | 响应格式。默认为json格式,可选值:json | | version | string | 是 | API协议版本 可选值:1.0 | | sign\_method | string | 否 | 签名的摘要算法(默认 hmac),可选值为:hmac,md5,hmac-sha256。 | | sign | string | 是 | 签名 | | session | string | 是 | 授权会话信息 (即access_token,由系统分配) |

请求头

参数名
类型
描述
必填
Content-Type
string
multipart/form-data
必填

API接口地址

参数名
类型
描述
必填
method
string
erp.purchase.shelf.query
必填

请求参数

参数名
类型
描述
必填
startModified
string
示例:起始时间 格式:yyyy-MM-dd HH:mm:ss
可选
endModified
string
示例:结束时间 格式:yyyy-MM-dd HH:mm:ss
可选
weCode
string
示例:收货单编号(支持单号/外部单号)
可选
status
integer
示例:状态 0 待上架 1 已完成 2已作废
可选
pageNo
integer
示例:页码 取值范围:大于零的整数。默认值为1
可选
pageSize
integer
示例:每页条数 取值范围:大于零的整数;最大值:200;默认值:40
可选

请求示例

```json { "startModified": "string", "endModified": "string", "weCode": "string", "fields": "string", "status": "integer" } ````

响应参数

参数名
类型
描述
total
string
总数
list
object
列表
waitQuantity
string
示例:待上架数
string
示例:
containerNo
string
示例:容器号
code
string
示例:编码
supplierId
string
示例:供应商id
weReceived
string
示例:收货单收货时间
num
string
示例:总上架数量
creatorId
string
示例:创建人id
outWarehouseName
string
示例:调出仓库名称
remark
string
示例:备注
type
string
示例:上架类型 0:按单上架 1:快速上架 5:其他上架
shelveTime
string
示例:上架时间
warehouseName
string
示例:仓库名称
outWarehouseId
string
示例:调出仓库id
busyId
string
示例:业务id
weCreated
string
示例:收货单创建时间
id
string
示例:id
weCode
string
示例:收货单编码
supplierName
string
示例:供应商name
creator
string
示例:创建人姓名
busyTypeDesc
string
示例:业务类型desc
shelverId
string
示例:上架人
created
string
示例:创建时间
shelverName
string
示例:上架人名称
busyType
string
示例:业务类型
receiveQuantity
string
示例:收货数
companyId
string
示例:公司id
weShelveQuantity
string
示例:收货单上架数
busyCode
string
示例:业务单据号
warehouseId
string
示例:仓库id
purchaseOrderId
string
示例:采购单
weId
string
示例:收货单id

响应示例

```json { "total": 12345, "list": [ { "waitQuantity": 1, "containerNo": "zhangsan", "code": "zhangsan", "supplierId": "zhangsan", "weReceived": "zhangsan", "num": 1, "creatorId": 12345, "outWarehouseName": "zhangsan", "remark": "zhangsan", "type": 1, "shelveTime": "zhangsan", "warehouseName": "zhangsan", "outWarehouseId": 12345, "busyId": 12345, "weCreated": "zhangsan", "id": 12345, "weCode": "zhangsan", "supplierName": "zhangsan", "creator": "zhangsan", "busyTypeDesc": "zhangsan", "shelverId": 12345, "created": "zhangsan", "shelverName": "zhangsan", "busyType": "zhangsan", "receiveQuantity": 12345, "companyId": 12345, "weShelveQuantity": 12345, "busyCode": "zhangsan", "warehouseId": 12345, "purchaseOrderId": 12345, "weId": 12345 } ] } ```

异常示例

```` { "code": "25", "msg": "服务方法(erp.purchase.shelf.query:1.0)的签名无效", "success": false, "trace_id": "3553483395423660" } ````

错误码解释

| 错误码 |错误信息|解决方案| |-|-|-| |25|服务方法(erp.purchase.shelf.query:1.0)的签名无效|签名参数错误|