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.

166 lines
5.6 KiB

### LeaptonAddDeliveryPlan
此接口用于添加发货计划。
---
### 基本信息
方法:POST
URL: http://localhost:8033/open/leaptonAddDeliveryPlan
---
### 请求
请求参数
| 参数名 | 类型 | 必填 | 说明 |
| :-- | :-- | :-- | :-- |
| profile | string | 是 | 厂区代码 |
| billType | string | 否 | 单据类型 手选 |
| planner | string | 否 | 计划员 创建人 |
| maker | string | 否 | 制单人 创建人 |
| sourceType | string | 否 | 来源类型 销售订单 |
| billCode | string | 否 | 来源单号 销售订单号 |
| lines | array | 是 | 行记录 |
行记录参数
| 参数名 | 类型 | 必填 | 说明 |
| :-- | :-- | :-- | :-- |
| customer | string | 否 | 订货客户 来源销售订单 |
| receivingLocation | string | 否 | 收货位置 来源客户 |
| matCode | string | 否 | 料号 来源销售订单 |
| matName | string | 否 | 品名 来源销售订单 |
| qty | string | 否 | 数量 来源销售订单 |
| unit | string | 否 | 单位 来源销售订单 |
| dispatchingDate | string | 否 | 出货日期 单据默认日期可修改 |
| storageLocation | string | 否 | 存储地点 来源销售订单 |
| detailBillCode | string | 否 | 明细行来源单号 来源销售订单 |
| totalPrice | string | 否 | 价税合计 来源销售订单 |
| untaxedPrice | string | 否 | 未税金额 来源销售订单 |
| unitPrice | string | 否 | 单价 来源销售订单 |
请求示例
```
{
"data": {
"profile": "profile",
"billType": "billType",
"planner": "planner",
"maker": "maker",
"sourceType": "sourceType",
"billCode": "billCode",
"lines": [
{
"customer": "line 1: customer",
"receivingLocation": "line 1: receivingLocation",
"matCode": "line 1: matCode",
"matName": "line 1: matName",
"qty": "line 1: qty",
"unit": "line 1: unit",
"dispatchingDate": "line 1: dispatchingDate",
"storageLocation": "line 1: storageLocation",
"detailBillCode": "line 1: detailBillCode",
"totalPrice": "line 1: totalPrice",
"untaxedPrice": "line 1: untaxedPrice",
"unitPrice": "line 1: unitPrice"
},
{
"customer": "line 2: customer",
"receivingLocation": "line 2: receivingLocation",
"matCode": "line 2: matCode",
"matName": "line 2: matName",
"qty": "line 2: qty",
"unit": "line 2: unit",
"dispatchingDate": "line 2: dispatchingDate",
"storageLocation": "line 2: storageLocation",
"detailBillCode": "line 2: detailBillCode",
"totalPrice": "line 2: totalPrice",
"untaxedPrice": "line 2: untaxedPrice",
"unitPrice": "line 2: unitPrice"
}
]
}
}
```
---
### 响应
保存成功时,服务端将返回此条记录,和记录的主键。
新增的字段:
| 字段 | 类型 | 说明 |
| :-- | :-- | :-- |
| key | string | 主键,由系统自动生成。 |
| headKey | string | 主记录的主键,由系统自动填写。 |
| lineIndex | integer | 行索引,由系统自动填写,从 0 开始。 |
```
{
"clock": "2023-08-22 08:44:43.549",
"duration": "132ms",
"status": "ok",
"data": {
"deleted": null,
"profile": "profile",
"billType": "billType",
"planner": "planner",
"maker": "maker",
"sourceType": "sourceType",
"billCode": "billCode",
"lines": [
{
"headKey": "4246f006287f4ce38ae1d04207421a9e",
"lineIndex": 0,
"customer": "line 1: customer",
"receivingLocation": "line 1: receivingLocation",
"matCode": "line 1: matCode",
"matName": "line 1: matName",
"qty": "line 1: qty",
"unit": "line 1: unit",
"dispatchingDate": "line 1: dispatchingDate",
"storageLocation": "line 1: storageLocation",
"detailBillCode": "line 1: detailBillCode",
"totalPrice": "line 1: totalPrice",
"untaxedPrice": "line 1: untaxedPrice",
"unitPrice": "line 1: unitPrice",
"created": "2023-08-22 08:44:43.499",
"updated": "2023-08-22 08:44:43.499",
"key": "e5c5d2dfd8bc4de49439bbd007526db0",
"flag": 1
},
{
"headKey": "4246f006287f4ce38ae1d04207421a9e",
"lineIndex": 1,
"customer": "line 2: customer",
"receivingLocation": "line 2: receivingLocation",
"matCode": "line 2: matCode",
"matName": "line 2: matName",
"qty": "line 2: qty",
"unit": "line 2: unit",
"dispatchingDate": "line 2: dispatchingDate",
"storageLocation": "line 2: storageLocation",
"detailBillCode": "line 2: detailBillCode",
"totalPrice": "line 2: totalPrice",
"untaxedPrice": "line 2: untaxedPrice",
"unitPrice": "line 2: unitPrice",
"created": "2023-08-22 08:44:43.509",
"updated": "2023-08-22 08:44:43.509",
"key": "1f5a4b2f0b084f7495cf60fe1886b8c1",
"flag": 1
}
],
"created": "2023-08-22 08:44:43.489",
"updated": "2023-08-22 08:44:43.489",
"key": "4246f006287f4ce38ae1d04207421a9e",
"flag": 1
}
}
```