Browse Source

添加发货计划,分离请求参数为表头、表体。

master
王厅 1 year ago
parent
commit
78520dc5c7
  1. 141
      wms/发货通知/LeaptonAddDeliveryPlan.md

141
wms/发货通知/LeaptonAddDeliveryPlan.md

@ -1,6 +1,6 @@
### LeaptonAddDeliveryPlan
此接口用于添加一项发货计划记录
此接口用于添加发货计划。
---
@ -24,6 +24,12 @@ URL: http://localhost:8033/open/leaptonAddDeliveryPlan
| maker | string | 否 | 制单人 创建人 |
| sourceType | string | 否 | 来源类型 销售订单 |
| billCode | string | 否 | 来源单号 销售订单号 |
| lines | array | 是 | 行记录 |
行记录参数
| 参数名 | 类型 | 必填 | 说明 |
| :-- | :-- | :-- | :-- |
| customer | string | 否 | 订货客户 来源销售订单 |
| receivingLocation | string | 否 | 收货位置 来源客户 |
| matCode | string | 否 | 料号 来源销售订单 |
@ -43,23 +49,41 @@ URL: http://localhost:8033/open/leaptonAddDeliveryPlan
{
"data": {
"profile": "profile",
"billType": "",
"planner": "",
"maker": "",
"sourceType": "",
"billCode": "",
"customer": "",
"receivingLocation": "",
"matCode": "",
"matName": "",
"qty": "",
"unit": "",
"dispatchingDate": "",
"storageLocation": "",
"detailBillCode": "",
"totalPrice": "",
"untaxedPrice": "",
"unitPrice": ""
"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"
}
]
}
}
```
@ -74,38 +98,69 @@ URL: http://localhost:8033/open/leaptonAddDeliveryPlan
| 字段 | 类型 | 说明 |
| :-- | :-- | :-- |
| key | string | 是 | 记录主键,由系统自动生成。 |
| profile | string | 厂区代码 |
| key | string | 主键,由系统自动生成。 |
| headKey | string | 主记录的主键,由系统自动填写。 |
| lineIndex | integer | 行索引,由系统自动填写,从 0 开始。 |
```
{
"clock": "2023-08-21 16:38:58.955",
"duration": "60ms",
"clock": "2023-08-22 08:44:43.549",
"duration": "132ms",
"status": "ok",
"data": {
"deleted": null,
"profile": "profile",
"billType": "",
"planner": "",
"maker": "",
"sourceType": "",
"billCode": "",
"customer": "",
"receivingLocation": "",
"matCode": "",
"matName": "",
"qty": "",
"unit": "",
"dispatchingDate": "",
"storageLocation": "",
"detailBillCode": "",
"totalPrice": "",
"untaxedPrice": "",
"unitPrice": "",
"key": "d12d28c9ea634d6c9aee8eb99ce56201",
"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
"created": "2023-08-21 16:38:58.910",
"updated": "2023-08-21 16:38:58.910",
"deleted": null,
}
}
```
Loading…
Cancel
Save