From 3b37c3c8b9d40c484599489ed8c7688cdccb38cc Mon Sep 17 00:00:00 2001 From: "Cola.Ding" Date: Wed, 9 Aug 2023 08:04:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=89=B9=E9=87=8F=E5=8E=9F?= =?UTF-8?q?=E6=9D=90=E6=96=99=E5=88=86=E6=89=B9=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../批量新增原材料分批.md | 102 ++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 mes/原材料分批/批量新增原材料分批.md diff --git a/mes/原材料分批/批量新增原材料分批.md b/mes/原材料分批/批量新增原材料分批.md new file mode 100644 index 0000000..00c1918 --- /dev/null +++ b/mes/原材料分批/批量新增原材料分批.md @@ -0,0 +1,102 @@ +### 新增原材料分批 +此接口用于仓库发料,ERP发料,支持母批发料和子批发料。此操作支持累加母批的原始发料数量以及剩余数量。 +此接口需要认证,详情请查看《认证方式》。 + +--- + +### 基本信息 +方法:POST +URL: http://localhost:8033/open/AddMaterialBatches + +--- + +### 请求 + +__请求参数__ + +| 参数名 | 类型 | 必填 | 说明 | +| :-- | :-- | :-- | :-- | +| profile | String | 是 | 厂区| +| workOrder | String | 是 | 工单号 | +| batchNumber | String | 是 | 母批号 | +| subBatchNumber | String | 否 | 子批号,子批发料时必传子批号,否则默认为母批发料 | +| materialCode | String | 是 | 物料编码 | +| uom | String | 是 | 单位 | +| count | Double | 是 | 发料数量 | +| supplierBatchNo | String | 否 | 供应商来料批次号 | +| supplier | String | 是 | 供应商 | +| secondSupplier | String | 否 | 第二供应商 | +| remark | String | 否 | 备注 | +| materialAttrs | Array | 否 | 批次物料属性 | + + +__materialAttrs:__ +| 参数名 | 类型 | 必填 | 说明 | +| :-- | :-- | :-- | :-- | +| materialTypeCode | String | 否 | 物料类别代码 | +| materialTypeDesc | String | 否 | 物料类别名称 | +| attrCode | String | 否 | 属性代码 | +| attrName | String | 否 | 属性名称 | +| valueCode | String | 否 | 属性值代码 | +| value | String | 否 | 属性值名称 | + +__请求示例:__ +``` +{ + "data":{ + "profile": "测试", + "batches":[ + { + "profile": "测试", + "workOrder": "12346", + "batchNumber": "CELL1000", + "subBatchNumber": "CELL1000-01", + "materialCode": "CELL12", + "uom": "块", + "count": 100, + "supplierBatchNo": "ZL0203001", + "supplier": "中来", + "secondSupplier": "中来", + "remark": "这里是备注", + "materialAttrs":[ + { + "materialTypeCode": "CELL", + "materialTypeDesc": "电池片", + "attrCode": "GG", + "attrName": "规格", + "valueCode": "middle", + "value": "中号" + } + ] + } + ] + } +} +```` + +--- + +### 响应 +__响应字段__ +| 字段 | 类型 | 说明 | +| :-- | :-- | :-- | +| clock | string | 当前服务器时钟。 | +| status | string | 状态,ok:成功,error:错误,exception:异常 | +| data | object | 成功后返回具体内容 | + +__data:__ +| 字段 | 类型 | 说明 | +| :-- | :-- | :-- | + +``` +{ + "clock": "2023-06-25 20:00:00.000", + "status": "ok", + "data": { + + } +} + +``` + +