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.

54 lines
821 B

### LeaptonDeleteDeliveryPlan
此接口用于删除发货计划。
不能删除的情况:
- WMS 已经开始执行这项发货计划
- 要删除的发货计划不属于当前厂区
---
### 基本信息
方法:POST
URL: http://localhost:8033/open/leaptonDeleteDeliveryPlan
---
### 请求
请求参数
| 参数名 | 类型 | 必填 | 说明 |
| :-- | :-- | :-- | :-- |
| profile | string | 是 | 厂区 |
| key | string | 是 | 主键 |
请求示例
```
{
"data": {
"profile": "测试",
"key": "0b9bed8807a04f678a7ac9761270fffd"
}
}
```
---
### 响应
此 API 没有返回的数据,只许获取状态即可。执行失败时状态不是 `ok`,会附加 message 字段。
```
{
"clock": "2023-08-22 16:09:58.294",
"duration": "124ms",
"status": "ok",
"data": {}
}
```