using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core;
|
|
namespace WIDESEA_StoragIntegrationServices
|
{
|
/// <summary>
|
/// 订单、工单撤排
|
/// 接口描述:通知BDC涂装工单/总装工单/订单撤排
|
/// 1- 工单/订单撤排支持部分撤排
|
/// 2- 试制类型工单/订单撤排BDC库已过BDC03/BDC05工单不支持撤排
|
/// 3-非试制类型工单/订单撤排一句绑定状态,已完成绑定的工单/订单不支持撤排
|
/// 4-总装工单已拉动锁车的车身工单不支持撤排
|
/// </summary>
|
public partial class MESService
|
{
|
public WebResponseContent removeWorkOrderInfo(string jsonData)
|
{
|
WebResponseContent content = new WebResponseContent();
|
try
|
{
|
|
|
return content.OK();
|
}
|
catch (Exception ex)
|
{
|
|
return content.OK(ex.Message);
|
}
|
|
}
|
}
|
}
|