From f34ce6acd5e62bb5e8aced3c8efde2b16bb9e670 Mon Sep 17 00:00:00 2001 From: ningyuqi <1210478975@qq.com> Date: Mon, 22 Jan 2024 13:32:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=B9=E9=87=8F=E5=88=A0=E9=99=A4=E5=8E=9F?= =?UTF-8?q?=E6=9D=90=E6=96=99=E5=88=86=E6=89=B9=E6=8E=A5=E5=8F=A3=E5=BC=80?= =?UTF-8?q?=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../批量删除原材料分批.md | 105 ++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 mes/原材料分批/批量删除原材料分批.md diff --git a/mes/原材料分批/批量删除原材料分批.md b/mes/原材料分批/批量删除原材料分批.md new file mode 100644 index 0000000..17325e5 --- /dev/null +++ b/mes/原材料分批/批量删除原材料分批.md @@ -0,0 +1,105 @@ +### 批量删除原材料分批 +此接口用于ERP删除发料数据,支持母批发料删除。 +此接口需要认证,详情请查看《认证方式》。 + +--- + +### 基本信息 +方法:POST +URL: http://localhost:8033/open/DeleteMaterialBatches + +--- + +### 请求 + +__请求参数__ + +| 参数名 | 类型 | 必填 | 说明 | +| :-- | :-- | :-- | :-- | +| profile | String | 是 | 厂区| +| workorder | String | 是 | 工单号 | +| batches | String | 是 | 退料数据 | + +__batches__ + +| 参数名 | 类型 | 必填 | 说明 | +| :-- | :-- | :-- | :-- | +| workOrder | String | 是 | 工单号 | +| batchNumber | String | 是 | 母批号 | +| subBatchNumber | String | 否 | 子批号,发料对接子批号则传递子批号 | +| materialCode | String | 是 | 物料编码 | +| count | Double | 是 | 发料数量 | + +__请求示例:__ +``` +{ + "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:异常 | +| message | string | 返回报错信息 | +| data | object | 成功后返回具体内容 | + +__data:__ +| 字段 | 类型 | 说明 | +| :-- | :-- | :-- | + +``` +{ + "clock": "2024-01-22 13:30:52.964", + "duration": "1.56s", + "status": "ok", + "data": {} +} + +``` +{ + "clock": "2024-01-22 13:28:13.928", + "duration": "66.1s", + "status": "exception", + "message": "工单【SLTZ301-240100008】不存在。", + "data": { + "type": "System.Exception", + "message": "工单【SLTZ301-240100008】不存在。", + "stack": [ + "at One.MesGroup.Web.OpenController.InvokeMesMain() in F:\\Code管理\\L8WebNew\\L8WEB\\webapi\\One.MesGroup.Web\\OpenController.cs:line 306", + "at One.MesGroup.Web.OpenController.Default() in F:\\Code管理\\L8WebNew\\L8WEB\\webapi\\One.MesGroup.Web\\OpenController.cs:line 245" + ] + } +} +