文档
测试

查询调拨出库单列表

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
allocate.out.task.query
必填

请求参数

参数名
类型
描述
必填
pageNo
integer
页码 取值范围:大于零的整数。默认值为1
可选
pageSize
integer
每页条数 取值范围:大于零的整数;最大值:200;默认值:40
可选
startModified
string
起始时间 格式:yyyy-MM-dd HH:mm:ss
可选
endModified
string
结束时间 格式:yyyy-MM-dd HH:mm:ss
可选
status
string
出库状态 CREATED,OUTING未出库,FINISHED已出库,CANCELED已完成
可选
code
string
单据号 如:DC3911498093140480
可选
timeType
string
查询时间类型 如: "create" 创建时间查询 "out" 出库时间查询 “gm_modified” 修改时间查询 不传默认根据修改时间查询
可选

请求示例

```json { "pageNo": "integer", "startModified": "string", "pageSize": "integer", "endModified": "string", "fields": "string", "status": "string" "timeType" : "string" } ````

响应参数

参数名
类型
描述
total
string
总数
list
object
列表
templateType
string
模板类型
code
string
出库单号
pickerNames
string
波次拣选员
inWarehouseName
string
调入仓名称
outWarehouseName
string
调出仓名称
outNum
string
调出总数
remark
string
备注
outTotalAmount
string
调出总金额
templateId
string
模板id
taskShortId
string
调拨任务短号
receiverCity
string
城市
content
string
说明
outWarehouseId
string
调出仓id
inWarehouseId
string
调入仓id
outOperatorName
string
出库人名称
taskCode
string
调拨任务编号
outPostFee
string
总运费
receiverDistrict
string
modified
string
修改时间
id
string
id
inNum
string
调入数量
inTotalAmount
string
调入金额
remainOutNum
string
待调出数
pickerIds
string
波次拣选员Id
created
string
创建时间
receiverName
string
联系人
receiverMobile
string
电话
diffNum
string
差异数
diffAmount
string
差异金额
waveId
string
波次号
actualOutTotalAmount
string
实际调出金额
waveStatus
string
波次状态
receiverAddress
string
详细地址
outSid
string
运单号
actualOutNum
string
实际调出数
companyId
string
公司id
templateName
string
模板名称
wlbTemplateType
string
模板类型
outOperatorId
string
出库人Id
receiverState
string
taskId
string
调拨任务id
status
string
出库状态 CREATED,OUTING未出库,FINISHED已出库,CANCELED已完成
outTime
int
出库时间

响应示例

```json { "total": 12345, "list": [ { "templateType": 1, "code": "zhangsan", "pickerNames": "zhangsan", "inWarehouseName": "zhangsan", "outWarehouseName": "zhangsan", "outNum": 12345, "remark": "zhangsan", "outTotalAmount": 10000, "templateId": 12345, "taskShortId": 12345, "receiverCity": "zhangsan", "content": "zhangsan", "outWarehouseId": 12345, "inWarehouseId": 12345, "outOperatorName": "zhangsan", "taskCode": "zhangsan", "outPostFee": 10000, "receiverDistrict": "zhangsan", "modified": "@date", "id": 12345, "inNum": 12345, "allAllocate": true, "inTotalAmount": 10000, "remainOutNum": 12345, "pickerIds": "zhangsan", "created": "@date", "receiverName": "zhangsan", "receiverMobile": "zhangsan", "diffNum": 12345, "diffAmount": 10000, "waveId": 12345, "actualOutTotalAmount": 10000, "waveStatus": 1, "receiverAddress": "zhangsan", "outSid": "zhangsan", "actualOutNum": 12345, "companyId": 12345, "templateName": "zhangsan", "wlbTemplateType": "zhangsan", "outOperatorId": 12345, "receiverState": "zhangsan", "taskId": 12345, "status": "zhangsan" } ] } ```

异常示例

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

错误码解释

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