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.
 

2.7 KiB

LeaptonAddDeliveryPlan

此接口用于添加一项发货计划记录。


基本信息

方法:POST

URL: http://localhost:8033/open/leaptonAddDeliveryPlan


请求

请求参数

参数名 类型 必填 说明
profile string 厂区代码
billType string 单据类型 手选
planner string 计划员 创建人
maker string 制单人 创建人
sourceType string 来源类型 销售订单
billCode string 来源单号 销售订单号
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": "",
        "planner": "",
        "maker": "",
        "sourceType": "",
        "billCode": "",
        "customer": "",
        "receivingLocation": "",
        "matCode": "",
        "matName": "",
        "qty": "",
        "unit": "",
        "dispatchingDate": "",
        "storageLocation": "",
        "detailBillCode": "",
        "totalPrice": "",
        "untaxedPrice": "",
        "unitPrice": ""
    }
}

响应

保存成功时,服务端将返回此条记录,和记录的主键。

新增的字段:

字段 类型 说明
key string
profile string 厂区代码
{
  "clock": "2023-08-21 16:38:58.955",
  "duration": "60ms",
  "status": "ok",
  "data": {
    "profile": "profile",
    "billType": "",
    "planner": "",
    "maker": "",
    "sourceType": "",
    "billCode": "",
    "customer": "",
    "receivingLocation": "",
    "matCode": "",
    "matName": "",
    "qty": "",
    "unit": "",
    "dispatchingDate": "",
    "storageLocation": "",
    "detailBillCode": "",
    "totalPrice": "",
    "untaxedPrice": "",
    "unitPrice": "",
    "key": "d12d28c9ea634d6c9aee8eb99ce56201",
    "flag": 1
    "created": "2023-08-21 16:38:58.910",
    "updated": "2023-08-21 16:38:58.910",
    "deleted": null,
  }
}