huanghongfeng
2025-04-22 3c75ba788897a524771bfde12feddcc94aaf14c6
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
 
using Masuit.Tools;
using Newtonsoft.Json;
using WIDESEA.Common;
using WIDESEA_Common;
using WIDESEA_Common.ZY;
using WIDESEA_Core;
using WIDESEA_Core.Helper;
using WIDESEA_IStoragIntegrationServices;
 
namespace WIDESEA_StoragIntegrationServices
{
    public partial class ToZYService
    {
        //public static string ZY_Interface = "http://172.21.1.117/barcode/Webservice/WebService_ZY/WebServiceZY.asmx";
 
        //public static string POSTURL = "http://172.21.1.117/barcode/Webservice/WebService_ZY/Service_EQP.asmx";
        /// <summary>
        /// 获取车轮信息接口
        /// </summary>
        /// <param name="">车轮</param>
        /// <returns></returns>
        public WebResponseContent ZY_GetCLInfo(SaveModel saveModel)
        {
            WebResponseContent content = new WebResponseContent();
            try
            {
                string cltm = saveModel.MainData["cltm"].ToString();
                //cltm = "L E1700844 0037";
 
                if (string.IsNullOrEmpty(cltm)) throw new Exception("请求车轮号不能为空");
 
                string ipaddress = ZY_Interface + "/getCLInfostring";
 
                CLInfo Info = new CLInfo { cltm = cltm };
 
                var dic = Info.ToDictionary();
 
                var responStr = HttpsClient.PostXml(ipaddress, dic);
 
                //CLInfo_ZY info = JsonConvert.DeserializeObject<CLInfo_ZY>(responStr);
 
                CLInfo_ZY inf2o = XMLSerializationTool.DeserializeXmlToObject<CLInfo_ZY>(responStr);
 
                if (inf2o.FLAG != "S") throw new Exception($"获取信息失败:接口返回失败:{inf2o.ERROR}");
                //string info2 = XMLSerializationTool.SerializeObjectToXml<string>(responStr);
 
                //CLInfo_ZY info_ZY = new CLInfo_ZY()  //测试数据
                //{
                //    //level = "1",
                //    //InboundDate = "2020-04-10",
                //    //gkzjjz = "520.11",
                //    //gkjmz = "421.1",
                //    //czh = "100",
                //    //clh = "L E123-52 4A",
                //    //cartype = "CRH1A",
                //    //Ltype = "SDA",
                //    //lx = "DA",
                //    //mttype = "crh",
                //    //NewOrOld = "NEW",
                //    //psj = "动车组",
                //    //sx = "da",
                //    //xlh = "1",
                //    //ygljz = "121"
                //};
 
                //inf2o.CHEXING = "CRH1A";
                //inf2o.MTTYPE = "M";
                if (!string.IsNullOrEmpty(inf2o.NEWOLD))  //将数字转为新旧
                {
                    inf2o.NEWOLD = inf2o.NEWOLD == "1" ? "旧" : "新";
                }
 
 
                //CLInfo_ZY info_ZY = XmlToJson(responStr);
 
                content.OK(data: inf2o);
            }
            catch (Exception ex)
            {
                content.Error("获取车轮信息失败.异常:" + ex.Message);
            }
            finally
            {
                //LogRecord.WriteLog((int)LogEnum.Mes, $"组盘查询轴承信息结果:{resultString}");
            }
            return content;
        }
    }
}