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.
 

895 B

删除单个BOM内容(DeleteBomMfgEntry)

此接口用于删除单个BOM内容


基本信息

方法:POST

URL: http://localhost:8033/open/DeleteBomMfgEntry


请求

请求参数

参数名 类型 必填 说明
profile string 厂区代码
Workorder string 工单号
ProductCode string 产品编码
MaterialCode string 物料编码

示例 1:删除指定产品

{
	"data": {
		"profile": "测试",
		"Workorder": "2014568",
		"ProductCode": "D020200-00038",
		"MaterialCode": "自制"
	}
}

响应

执行成功时,响应如下:

{
  "clock": "2023-06-25 20:00:00.000",
  "status": "ok",
  "data": {}
}

执行报错:

{
  "clock": "2023-06-25 20:00:00.000",
  "status": "exception",
  "message": "删除产品失败",
  "data": {}
}