MES标准开放接口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

1.7 KiB

添加仓库库位

此接口用于向WMS添加仓库和库位
此接口需要认证,详情请查看《认证方式》。


基本信息

方法:POST
URL: http://localhost:8033/open/AddStockAndLocation


请求

请求参数

参数名 类型 必填 说明
profile String 厂区
stocks Array 仓库数组
locations Array 库位数组

stocks:

参数名 类型 必填 说明
code String 仓库代码
name String 仓库名称
type String 仓库类型 YLC:原料仓,CPC:成品仓,XBC:线边仓

locations:

参数名 类型 必填 说明
stockCode String 所属仓库代码
name String 库位名称
fullNumber long 库位满库数量 默认9999
district string 仓位区域代码

请求示例:

{
  "data":{
    "profile": "测试",
    "stocks":[
      {
        "code":"CPC1",
        "name":"成品仓1",
        "type":"CPC"
      }
    ]
    "locations":[
      {
        "stockCode":"CPC1",
        "name":"CPC1-001",
        "fullNumber":360
      }
    ]
  }
}

响应

响应字段

字段 类型 说明
clock string 当前服务器时钟。
status string 状态,ok:成功,error:错误,exception:异常
data object 成功后返回具体内容

data:

字段 类型 说明
{
  "clock": "2023-06-25 20:00:00.000",
  "status": "ok",
  "data": {

  }
}