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.
 

1.1 KiB

AddDeliveryPlan

此接口用于更新发货计划(发货通知单)发货状态。


基本信息

方法:POST

URL: http://localhost:8033/open/UpdateDeliveryPlanErpStatus


请求

请求参数

参数名 类型 必填 说明
profile string 厂区代码
ordNo string 计划单号(通知单号)
ERP_Status int 状态

请求示例

{
    "data": {
        "profile": "测试",
        "OrdNo": "20230706",
        "ERP_Status": 1
    }
}


响应

响应字段

字段 类型 说明
clock string 当前服务器时钟。
status string 状态,ok:成功,error:错误,exception:异常
message string 异常返回信息
data object 成功后返回{}

data:

字段 类型 说明
{
  "clock": "2023-06-25 20:00:00.000",
  "status": "ok",
  "data": {

  }
}

{
	"clock": "2024-01-17 16:36:27.606",
	"status": "error",
	"message": "通知单 20230706 不存在!",
	"data": {}
}