From 19d9ac7de8b6dfbd2434496531800169688f2e5e Mon Sep 17 00:00:00 2001 From: "Cola.Ding" Date: Fri, 8 Dec 2023 16:12:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=9F=A5=E8=AF=A2=E5=BA=93?= =?UTF-8?q?=E4=BD=8D=E4=BF=A1=E6=81=AF=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wms/仓库库位/列出仓库.md | 78 ++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 wms/仓库库位/列出仓库.md diff --git a/wms/仓库库位/列出仓库.md b/wms/仓库库位/列出仓库.md new file mode 100644 index 0000000..b3ac9ac --- /dev/null +++ b/wms/仓库库位/列出仓库.md @@ -0,0 +1,78 @@ +### 列出所有仓库(ListStock) + +此接口用于查询所有的仓库库位信息 + +--- + +### 基本信息 + +方法:POST + +URL: http://localhost:8033/open/listStock + +认证:需要(如何认证请查看《认证方式》) + +--- + +### 请求 + +请求参数 + +| 参数名 | 类型 | 必填 | 说明 | +| :-- | :-- | :-- | :-- | +| profile | string | 是 | 厂区配置名称 | + +``` +{ + "data": { + "profile": "test" + } +} +``` + +--- + +### 响应 + +__响应字段__ + +| 字段 | 类型 | 说明 | +| :-- | :-- | :-- | +| stocks | array | 仓库数组 | +| - code | string | 仓库编号 | +| - name | string | 库位名称(暂未启用) | +| - type | string | 仓库类型 YLC:原料仓,CPC:成品仓,XBC:线边仓 | +| - locations | array | 仓库下库位信息 | + +__locations__ +| 字段 | 类型 | 说明 | +| :-- | :-- | :-- | +| stockCode | string | 仓库代码 | +| name | string | 库位名称 | +| fullNumber | long | 满库数量 | + +认证成功时,响应如下: + +``` +{ + "clock": "2023-12-08 15:52:08.447", + "duration": "146ms", + "status": "ok", + "data": { + "stocks": [ + { + "code": "YLC001", + "name": null, + "type": "YLC", + "locations": [ + { + "stockCode": "YLC001", + "name": "4-C01", + "fullNumber": 4000000 + } + ] + }, + ] + } +} +``` \ No newline at end of file