# 创建转储单
# 系统级参数
| 名称 | 类型 | 是否必须 | 示例 | 描述 |
| v | String | 否 | 1.0 | 版本 |
| format | String | 否 | json | 格式,支持:json、xml |
| sign | String | 是 | 0d72e9537ece8864b7e29d392509fda7 | 签名 |
| method | String | 是 | store.wms.transferorder.create | 方法 |
| timestamp | int | 是 | 1435912385 | 时间戳 |
# 业务级参数
| 名称 | 类型 | 示例 | 描述 |
| uniqid | String | 客户订单编号,即相对于WMS系统的外部订单号 | |
| out_order_code | String | 转储单号 | |
| remark | String | 备注 | |
| created | String | 创建时间 | |
| is_finished | String | 该订单是否已完成,如果完成则设置为true,如果为false,则需要等待继续创建订单商品信息。 | |
| current_page | String | 当前分页数 | |
| total_page | String | 总分页数 | |
| src_storage | String | 来源存放点编号 | |
| dest_storage | String | 目的存放点编号 | |
| line_total_count | String | 订单商品明细总行数(即整个单据商品明细行数,而不是当前分页的商品明细行数) | |
| items | WmsOrderItem | 商品信息明细列表(json字符串) |
# 请求参数示例
[{
"uniqid": "bd1db064293bd283c42f8395c392e933",
"original_id": "",
"out_order_code": "20150710000001",
"created": "2015-07-10 18:00:13",
"remark": "",
"src_storage": "D1",
"dest_storage": "C1",
"line_total_count": 1,
"items": "{\"item\":[{\"item_code\":\"test1\",\"item_name\":\"\\u6d4b\\u8bd5\\u5546\\u54c1\\u4e00\",\"item_quantity\":\"1\",\"item_price\":\"0.000\",\"item_line_num\":1,\"item_remark\":\"\"}]}",
"is_finished": "true",
"current_page": 1,
"total_page": 1,
"callback_url": "http://erp.trunk.localhost/index.php/openapi/asynccallback/async_result_handler/id/14365224138163420138188-1436522413",
"task": "14365224138163420138188",
"v": "1.0",
"method": "store.wms.transferorder.create",
"format": "json",
"timestamp": 1436522413,
"wms_node_id": "o1111725941",
"sign": "a81c1013fc284080c0ebf7ef2a1fe314"
}]
# 响应结果
| 名称 | 类型 | 是否必须 | 示例 | 描述 |
| wms_order_code | String | 否 | 第三方仓储订单编号 | |
| created | Date | 否 | 修改时间 |
#####json格式:
{
"rsp":"succ",
"data":{
"wms_order_code": "LP31209123123",
"created": "2011-08-16 19:27:29"
}
}← 出库单状态查询(同步) 取消转储单(同步) →