wms外部对接
  1. 入库单
wms外部对接
  • 对接配置
  • 商品档案
    • 分页查询商品列表
      POST
    • 批量新增或修改商品信息
      POST
    • 根据sku查询商品详情
      POST
  • 运输产品查询
    • 查询运输产品编码
      POST
  • 入库单
    • 创建入库单
      POST
    • 修改入库单
      POST
    • 取消入库单
      POST
    • 查询入库单状态
      POST
  • 仓库查询
    • 查询仓库信息
      POST
  • 出库单
    • 创建出库单
      POST
    • 修改出库单
      POST
    • 取消出库单
      POST
    • 查询渠道转单号和标签
      POST
    • 查询出库单详情
      POST
    • 查询订单是否到达
      POST
    • 更新订单面单及转单号
      POST
  • 库存查询
    • 查询单个商品库存
      POST
    • 批量查询商品库存
      POST
    • 批量查询商品库存(分页)
      POST
  1. 入库单

修改入库单

POST
/edi/orderInStore/updateOrderInStore
最后修改时间:2024-10-24 04:25:49
可通过此接口修改入库单信息,只支持单个就该,不支持批量。

请求参数

Header 参数
appId
string 
申耐特提供
必需
timestamp
string 
当前系统时间戳
必需
nonce
string 
必需
随机字符串,建议使用UUID,保证随机
sign
string 
必需
sign = MD5_32(body字符串+ secretKey) ,secretKey由申耐特提供
Body 参数application/json
dockCustomerId
string  | null 
对接客户id
必需
dockWhId
string  | null 
对接仓库id
必需
orderType
integer  | null 
必需
订单类型
订单类型(10:采购入库; 20:退货入库; 30:中转入库; 40:调拨入库; 50:换货入库; 60:其他入库;) 传值对应序号
erpNo
string  | null 
上游入库单号
必需
poNo
string  | null 
PO单号
可选
asnNo
string  | null 
ASN单号
可选
transportType
integer  | null 
必需
运输方式
运输方式(1:海派; 2:空派; 3:整柜; 4:快递; 5:卡派;) 传值对应序号
packageType
integer  | null 
必需
包装方式
包装方式(1:纸箱; 2:托盘; 3:20GP; 4:40GP; 5:40HQ; 6:45HQ;) 传值对应序号
transportSupplier
string  | null 
物流商
可选
transportCode
string  | null 
物流单号
可选
isQuality
integer  | null 
可选
是否清单
是否清点(0:否; 1:是;) 传值对应序号
isPallet
integer  | null 
可选
是否打托
是否打托(0:否; 1:是;) 传值对应序号
isPhotos
integer  | null 
可选
是否拍照
是否拍照(0:否; 1:是;) 传值对应序号
preArriveDate
string  | null 
预计到货时间
可选
shipperName
string  | null 
发件人名称
必需
shipperCountryCode
string  | null 
发件国家二字代码
必需
shipperState
string  | null 
必需
发件州/省
发件州/省(美国需传二字码)
shipperCompanyname
string  | null 
发件公司
可选
shipperCity
string  | null 
发件城市
必需
shipperSuburb
string  | null 
发件人区
可选
shipperStreetno
string  | null 
发件人街道
可选
shipperDoorno
string  | null 
发件门牌号
可选
shipperPostcode
string  | null 
发件邮编
必需
shipperAddress1
string  | null 
发件地址1
必需
shipperAddress2
string  | null 
发件地址2
可选
shipperAddress3
string  | null 
发件地址3
可选
shipperPhone
string  | null 
发件电话
可选
shipperEmail
string  | null 
发件邮箱
可选
orderUnitType
integer  | null 
必需
单位类型
单位类型(0:kg/cm; 1:lb/in;) 传值对应序号
boxCodeConfig
integer  | null 
必需
箱号生成方式
箱号生成方式(0:按序号自动编号; 1:手动编号;) 传值对应序号
remarks
string  | null 
备注
可选
boxList
array[object (OutDockOrderInStoreBoxDTO) {6}]  | null 
入库单箱明细
必需
boxCode
string  | null 
可选
箱号
箱号(手动编号必传)
boxLength
number  | null 
箱长
必需
boxWidth
number  | null 
箱宽
必需
boxHeight
number  | null 
箱高
必需
weight
number  | null 
重量
必需
goodsList
array[object (OutDockOrderInStoreDetailDTO) {2}]  | null 
入库单商品明细
必需
示例
{
    "dockCustomerId": "string",
    "dockWhId": "string",
    "orderType": 0,
    "erpNo": "string",
    "poNo": "string",
    "asnNo": "string",
    "transportType": 0,
    "packageType": 0,
    "transportSupplier": "string",
    "transportCode": "string",
    "isQuality": 0,
    "isPallet": 0,
    "isPhotos": 0,
    "preArriveDate": "string",
    "shipperName": "string",
    "shipperCountryCode": "string",
    "shipperState": "string",
    "shipperCompanyname": "string",
    "shipperCity": "string",
    "shipperSuburb": "string",
    "shipperStreetno": "string",
    "shipperDoorno": "string",
    "shipperPostcode": "string",
    "shipperAddress1": "string",
    "shipperAddress2": "string",
    "shipperAddress3": "string",
    "shipperPhone": "string",
    "shipperEmail": "string",
    "orderUnitType": 0,
    "boxCodeConfig": 0,
    "remarks": "string",
    "boxList": [
        {
            "boxCode": "string",
            "boxLength": 0,
            "boxWidth": 0,
            "boxHeight": 0,
            "weight": 0,
            "goodsList": [
                {
                    "skuNo": "string",
                    "quantity": 0
                }
            ]
        }
    ]
}

返回响应

🟢200成功
application/json
Body
success
boolean 
可选
code
string 
可选
message
string 
可选
data
null 
可选
示例
{
  "success": false,
  "code": "",
  "message": "",
  "data": null
}
修改于 2024-10-24 04:25:49
上一页
创建入库单
下一页
取消入库单
Built with