刘磊
2025-11-17 efbeb93b3d454f06d65dbcc68ad828cc95bc9404
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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);
            }
 
        }
    }
}