hudong
2025-05-23 27d187d5834cc6eabc0fba79c13f9d8efd6bec19
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using System.Web.Http;
using System.Xml.Linq;
using System.Xml;
using static HH.WCS.Mobox3.pinggao.models.SapRoot;
using HH.WCS.Mobox3.pinggao;
using Newtonsoft.Json.Linq;
using static HH.WCS.Mobox3.pinggao.api.ApiModel;
using System.Reflection;
using HH.WCS.Mobox3.pinggao.api;
using static HH.WCS.Mobox3.pinggao.api.OtherModel;
using static HH.WCS.Mobox3.pinggao.api.ApibackModel;
using HH.WCS.Mobox3.pinggao.models;
 
namespace HH.WCS.Mobox3.pinggao.api
{
    public class WmsSapController : System.Web.Http.ApiController
    {
        /// <summary>
        /// 供应商接收接口获取
        /// </summary>
        /// <param name="xmlData"></param>
        /// <returns></returns>
        [HttpPost]
        public GYSReturnRoot.Root GYSReceiveXmlData([FromBody] GYSDto.Root xmlData)
        {
            #region xml数据接收转数组
 
            LogHelper.Info("供应商接收接口:" + JsonConvert.SerializeObject(xmlData));
 
            ////接收xml数据
            //XmlDocument xmlDoc = new XmlDocument();
            //xmlDoc.LoadXml(xmlData.ToString());
 
            //// 将 XmlDocument 转换为 JSON 字符串
            //JObject jsonObject = JsonConvert.DeserializeObject<JObject>(JsonConvert.SerializeXmlNode(xmlDoc));
 
            //// 处理特定字段,强制转换为数组
            //WmsSpaHelper.EnsureArrayFormats(jsonObject, "ITEM");
            //// 反序列化为RootWithArray
            //var data = JsonConvert.DeserializeObject<OrderDto.Root>(jsonObject.ToString());
            #endregion
 
            #region 外采入库业务流程
            GYSReturnRoot.Root simpleResult = WmsSpaHelper.GYS_In(xmlData);
            //接收返回参数 生成sap对接文档返回格式
            //var json = WmsSpaHelper.GetJsonResult(simpleResult.WLPZBH, simpleResult.resultCode.ToString(), simpleResult.resultMsg);
 
            #endregion
            #region  返回xml
            //string xml = JsonConvert.DeserializeXmlNode(json, "root").OuterXml;
            ////返回json
            //var response = new HttpResponseMessage()
            //{
            //    Content = new StringContent(xml, Encoding.UTF8, "application/xml")
            //};
            //return response;
            return simpleResult;
            #endregion
        }
 
 
        /// <summary>
        /// 生产订单信息获取
        /// </summary>
        /// <param name="xmlData"></param>
        /// <returns></returns>
        [HttpPost]
        public Orderback.Root OrderReceiveXmlData([FromBody] OrderDto.Root xmlData)
        {
            #region xml数据接收转数组
 
            LogHelper.Info("生产订单接收接口:" + JsonConvert.SerializeObject(xmlData));
 
            ////接收xml数据
            //XmlDocument xmlDoc = new XmlDocument();
            //xmlDoc.LoadXml(xmlData.ToString());
 
            //// 将 XmlDocument 转换为 JSON 字符串
            //JObject jsonObject = JsonConvert.DeserializeObject<JObject>(JsonConvert.SerializeXmlNode(xmlDoc));
 
            //// 处理特定字段,强制转换为数组
            //WmsSpaHelper.EnsureArrayFormats(jsonObject, "ITEM");
            //// 反序列化为RootWithArray
            //var data = JsonConvert.DeserializeObject<OrderDto.Root>(jsonObject.ToString());
            #endregion
 
            #region 外采入库业务流程
            Orderback.Root simpleResult = WmsSpaHelper.Mater_In(xmlData);
            //接收返回参数 生成sap对接文档返回格式
            //var json = WmsSpaHelper.GetJsonResult(simpleResult.WLPZBH, simpleResult.resultCode.ToString(), simpleResult.resultMsg);
 
            #endregion
            #region  返回xml
            //string xml = JsonConvert.DeserializeXmlNode(json, "root").OuterXml;
            ////返回json
            //var response = new HttpResponseMessage()
            //{
            //    Content = new StringContent(xml, Encoding.UTF8, "application/xml")
            //};
            //return response;
            return simpleResult;
            #endregion
        }
        /// <summary>
        /// 主物料信息获取
        /// </summary>
        /// <param name="xmlData"></param>
        /// <returns></returns>
 
        [HttpPost]
        public WLReturnRoot.Root MaterReceiveXmlData([FromBody] MaterDto.Root xmlData)
        {
            #region xml数据接收转数组
 
            LogHelper.Info("物料接收接口:" + JsonConvert.SerializeObject(xmlData));
 
            ////接收xml数据
            //XmlDocument xmlDoc = new XmlDocument();
            //xmlDoc.LoadXml(xmlData.ToString());
 
            //// 将 XmlDocument 转换为 JSON 字符串
            //JObject jsonObject = JsonConvert.DeserializeObject<JObject>(JsonConvert.SerializeXmlNode(xmlDoc));
 
            //// 处理特定字段,强制转换为数组
            //WmsSpaHelper.EnsureArrayFormats(jsonObject, "ITEM");
            //// 反序列化为RootWithArray
            //var data = JsonConvert.DeserializeObject<MaterDto.Root>(jsonObject.ToString());
            #endregion
 
            #region 外采入库业务流程
            WLReturnRoot.Root simpleResult = WmsSpaHelper.Mater_In(xmlData);
            //接收返回参数 生成sap对接文档返回格式
            //var json = WmsSpaHelper.GetJsonResult(simpleResult.WLPZBH, simpleResult.resultCode.ToString(), simpleResult.resultMsg);
 
            //#endregion
            //#region  返回xml
            //string xml = JsonConvert.DeserializeXmlNode(json, "root").OuterXml;
            ////返回json
            //var response = new HttpResponseMessage()
            //{
            //    Content = new StringContent(xml, Encoding.UTF8, "application/xml")
            //};
            //return response;
 
            var json = JsonConvert.SerializeObject(simpleResult);
            return simpleResult;
            #endregion
        }
 
        /// <summary>
        /// 外采收货
        /// </summary>
        /// <param name="xmlData"></param>
        /// <returns></returns>
 
        [HttpPost]
        public WcReturnRoot.Root WCReceiveXmlData([FromBody] SapRoot.Root xmlData)
        {
            #region xml数据接收转数组
            LogHelper.Info("外采收货接口:" + JsonConvert.SerializeObject(xmlData));
            //接收xml数据
            //XmlDocument xmlDoc = new XmlDocument();
            //xmlDoc.LoadXml(xmlData.ToString());
 
            // 将 XmlDocument 转换为 JSON 字符串
            //JObject jsonObject = JsonConvert.DeserializeObject<JObject>(JsonConvert.SerializeXmlNode(xmlDoc));
 
            // 处理特定字段,强制转换为数组
            //WmsSpaHelper.EnsureArrayFormat(jsonObject, "ITME", "ITEM1");
            // 反序列化为RootWithArray
            //var data = JsonConvert.DeserializeObject<Root>(jsonObject.ToString());
            #endregion
 
            #region 外采入库业务流程
            List<SimpleResult> simpleResult = WmsSpaHelper.Inbound_Order_In(xmlData);
            //接收返回参数 生成sap对接文档返回格式
            List<WcReturnRoot.ITEM> wcReturnRoots = new List<WcReturnRoot.ITEM>();
            foreach (var item in simpleResult)
            {
                WcReturnRoot.ITEM wcReturnRoot = new WcReturnRoot.ITEM();
                wcReturnRoot.WLPZH = item.WLPZBH;
                wcReturnRoot.WLPZND = item.WLPZND;
                wcReturnRoot.MSGCODE = item.resultCode;
                wcReturnRoot.MSGDESP = item.resultMsg;
                wcReturnRoots.Add(wcReturnRoot);
            }
            //var json = WmsSpaHelper.GetJsonResult(simpleResult.WLPZBH, simpleResult.resultCode.ToString(), simpleResult.resultMsg);
            // 完整嵌套实例化
            var result = new WcReturnRoot.Root
            {
                ROOT = new WcReturnRoot.ROOT
                {
                    ITEM = wcReturnRoots
                }
            };
            #endregion
            #region  返回xml
            var json = JsonConvert.SerializeObject(result);
            //string xml = JsonConvert.DeserializeXmlNode(json, "ROOT").OuterXml;
            ////返回json
            //var response = new HttpResponseMessage()
            //{
            //    Content = new StringContent(xml, Encoding.UTF8, "application/xml")
            //};
            return result;
            #endregion
        }
 
        /// <summary>
        /// 内采入库/出库
        /// </summary>
        /// <param name="xmlData"></param>
        /// <returns></returns>
 
        [HttpPost]
        public WcReturnRoot.Root NCReceiveXmlData([FromBody] NcDto.Root xmlData)
        {
            #region xml数据接收转数组
 
 
            //NcDto.ROOT rOOT = new NcDto.ROOT();
            //rOOT.WLPZ = new NcDto.WLPZ();
            LogHelper.Info("内采收货接口:" + JsonConvert.SerializeObject(xmlData));
 
            ////接收xmloo
            //XmlDocument xmlDoc = new XmlDocument();
            //xmlDoc.LoadXml(xmlData.ToString());
 
            //// 将 XmlDocument 转换为 JSON 字符串
            //JObject jsonObject = JsonConvert.DeserializeObject<JObject>(JsonConvert.SerializeXmlNode(xmlDoc));
 
            //// 处理特定字段,强制转换为数组
            //WmsSpaHelper.EnsureArrayFormat(jsonObject, "ITME", "ITEM1");
            //// 反序列化为RootWithArray
            //var data = JsonConvert.DeserializeObject<NcDto.Root>(jsonObject.ToString());
 
            //// SimpleResult simpleResult = WmsSpaHelper.OtherOut_Order_Ins(data); 
 
 
            //#endregion
            //#region  返回xml
            //string xml = JsonConvert.DeserializeXmlNode(json, "ROOT").OuterXml;
            ////返回json
            //var response = new HttpResponseMessage()
            //{
            //    Content = new StringContent(xml, Encoding.UTF8, "application/xml")
            //};
            //return response;
 
            #endregion
 
            List<SimpleResult> simpleResult = WmsSpaHelper.NCInbound_Order_In(xmlData);
            //接收返回参数 生成sap对接文档返回格式
            List<WcReturnRoot.ITEM> wcReturnRoots = new List<WcReturnRoot.ITEM>();
            foreach (var item in simpleResult)
            {
                WcReturnRoot.ITEM wcReturnRoot = new WcReturnRoot.ITEM();
                wcReturnRoot.WLPZH = item.WLPZBH;
                wcReturnRoot.WLPZND = item.WLPZND;
                wcReturnRoot.MSGCODE = item.resultCode;
                wcReturnRoot.MSGDESP = item.resultMsg;
                wcReturnRoots.Add(wcReturnRoot);
            }
            //var json = WmsSpaHelper.GetJsonResult(simpleResult.WLPZBH, simpleResult.resultCode.ToString(), simpleResult.resultMsg);
            // 完整嵌套实例化
            var result = new WcReturnRoot.Root
            {
                ROOT = new WcReturnRoot.ROOT
                {
                    ITEM = wcReturnRoots
                }
            };
            #region  返回xml
            var json = JsonConvert.SerializeObject(result);
            return result;
            #endregion
 
        }
        /// <summary>
        /// 其他出入库[FromBody] XElement xmlData
        /// </summary>
        /// <param name="xmlData"></param>
        /// <returns></returns>
        [HttpPost]
        public OtherReturnRoot.Root OtherReceiveXmlData([FromBody] otherDto.Root xmlData)
        {
            #region xml数据接收转数组
            LogHelper.Info("其他出入库sap接口:" + JsonConvert.SerializeObject(xmlData));
 
            ////接收xml数据
            //XmlDocument xmlDoc = new XmlDocument();
            //xmlDoc.LoadXml(xmlData.ToString());
 
            //// 将 XmlDocument 转换为 JSON 字符串
            //JObject jsonObject = JsonConvert.DeserializeObject<JObject>(JsonConvert.SerializeXmlNode(xmlDoc));
 
            //// 处理特定字段,强制转换为数组
            //WmsSpaHelper.EnsureArrayFormat(jsonObject, "ITEM", "ITEM1");
            //// 反序列化为RootWithArray
            //var data = JsonConvert.DeserializeObject<otherDto.Root>(jsonObject.ToString());
            #endregion
            #region 其他出入库业务流程
            List<SimpleResult> simpleResult = WmsSpaHelper.Otherbound_Order_In(xmlData);
            //接收返回参数 生成sap对接文档返回格式
            //var json = WmsSpaHelper.GetJsonResult(simpleResult.WLPZBH, simpleResult.resultCode.ToString(), simpleResult.resultMsg);
 
            #endregion
            #region  返回xml
            //string xml = JsonConvert.DeserializeXmlNode(json, "ROOT").OuterXml;
            ////返回json
            //var response = new HttpResponseMessage()
            //{
            //    Content = new StringContent(xml, Encoding.UTF8, "application/xml")
            //};
            //return response;
            #endregion
            List<OtherReturnRoot.ITEM> wcReturnRoots = new List<OtherReturnRoot.ITEM>();
            foreach (var item in simpleResult)
            {
                OtherReturnRoot.ITEM wcReturnRoot = new OtherReturnRoot.ITEM();
                wcReturnRoot.WLPZBH = item.WLPZBH;
                wcReturnRoot.WLPZND = item.WLPZND;
                wcReturnRoot.MSGCODE = item.resultCode;
                wcReturnRoot.MSGDESP = item.resultMsg;
                wcReturnRoots.Add(wcReturnRoot);
            }
            //var json = WmsSpaHelper.GetJsonResult(simpleResult.WLPZBH, simpleResult.resultCode.ToString(), simpleResult.resultMsg);
            // 完整嵌套实例化
            var result = new OtherReturnRoot.Root
            {
                ROOT = new OtherReturnRoot.ROOT
                {
                    ITEM = wcReturnRoots
                }
            };
            return result;
            // 处理XML数据
            // ...
        }
 
 
 
 
        /// <summary>
        /// 码盘入库
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost]
        public SimpleResult InboundOrderSorting(MPSorting model)
        {
            return WmsSpaHelper.InboundOrderSorting(model);
        }
 
        /// <summary>
        /// pda分拣
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost]
        public Task<SimpleResult> OutboundOrderSorting(FJSorting model)
        {
            return WmsSpaHelper.OutboundOrderSorting(model);
        }
 
        /// <summary>
        /// 空托出入库
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost]
        public Task<SimpleResult> InOutKT(KtSorting model)
        {
            return WmsSpaHelper.KtSorting(model);
        }
 
 
        /// <summary>
        /// 生产订单领料单(出库单)
        /// </summary>
        /// <param name="xmlData"></param>
        /// <returns></returns>
 
        //[HttpPost]
        //public HttpResponseMessage ReceiveXmlCKData([FromBody] XElement xmlData)
        //{
        //    #region xml数据接收转数组
        //    ROOT rOOT = new ROOT();
        //    rOOT.WLPZ = new WLPZ();
        //    LogHelper.Info("外采收货接口:" + xmlData.ToString());
 
        //    //接收xml数据
        //    XmlDocument xmlDoc = new XmlDocument();
        //    xmlDoc.LoadXml(xmlData.ToString());
 
        //    // 将 XmlDocument 转换为 JSON 字符串
        //    JObject jsonObject = JsonConvert.DeserializeObject<JObject>(JsonConvert.SerializeXmlNode(xmlDoc));
 
        //    // 处理特定字段,强制转换为数组
 
        //    //WmsSpaHelper.EnsureArrayFormat(jsonObject, "ITME");
        //    WmsSpaHelper.EnsureArrayFormat(jsonObject["ROOT"]["SCDDLL"] as JObject, "ITEM");
        //    // 反序列化为RootWithArray
        //    var data = JsonConvert.DeserializeObject<CKDdto.Root>(jsonObject.ToString());
        //    #endregion
 
        //    #region 出库业务流程
        //    var json = WmsSpaHelper.Out_Order_In(data);
        //    //接收返回参数 生成sap对接文档返回格式
        //    //var json = WmsSpaHelper.GetJsonResult(simpleResult.WLPZBH, simpleResult.resultCode.ToString(), simpleResult.resultMsg);
 
        //    #endregion
        //    #region  返回xml
        //    string xml = JsonConvert.DeserializeXmlNode(json, "root").OuterXml;
        //    //返回json
        //    var response = new HttpResponseMessage()
        //    {
        //        Content = new StringContent(xml, Encoding.UTF8, "application/xml")
        //    };
        //    return response;
        //    #endregion
        //}
 
 
 
        /// <summary>
        /// 生产订单领料单(生成领料单)
        /// </summary>
        /// <param name="xmlData"></param>
        /// <returns></returns>
 
        [HttpPost]
        public LLDReturnRoot.Root LLDReceiveXmlData([FromBody] CKDdto.Root xmlData)
        {
            #region xml数据接收转数组
            LogHelper.Info("生产订单领料单(生成领料单)接口:" + JsonConvert.SerializeObject(xmlData));
 
            ////接收xml数据
            //XmlDocument xmlDoc = new XmlDocument();
            //xmlDoc.LoadXml(xmlData.ToString());
 
            //// 将 XmlDocument 转换为 JSON 字符串
            //JObject jsonObject = JsonConvert.DeserializeObject<JObject>(JsonConvert.SerializeXmlNode(xmlDoc));
 
            //// 处理特定字段,强制转换为数组
 
            ////WmsSpaHelper.EnsureArrayFormat(jsonObject, "ITME");
            //WmsSpaHelper.EnsureArrayFormat(jsonObject["ROOT"]["SCDDLL"] as JObject, "ITEM");
            //// 反序列化为RootWithArray
            //var data = JsonConvert.DeserializeObject<CKDdto.Root>(jsonObject.ToString());
            #endregion
 
            #region 出库业务流程
            LLDReturnRoot.Root json = WmsSpaHelper.Out_Order_Ins(xmlData);
            //接收返回参数 生成sap对接文档返回格式
            //var json = WmsSpaHelper.GetJsonResult(simpleResult.WLPZBH, simpleResult.resultCode.ToString(), simpleResult.resultMsg);
            //接收返回参数 生成sap对接文档返回格式
            List<WcReturnRoot.ITEM> wcReturnRoots = new List<WcReturnRoot.ITEM>();
 
            return json;
            #endregion
            //#region  返回xml
            //string xml = JsonConvert.DeserializeXmlNode(json, "root").OuterXml;
            ////返回json
            //var response = new HttpResponseMessage()
            //{
            //    Content = new StringContent(xml, Encoding.UTF8, "application/xml")
            //};
            //return response;
            //#endregion
        }
 
        /// <summary>
        /// 领料单生成出库单
        /// </summary>
        /// <param name="xmlData"></param>
        /// <returns></returns>
 
        [HttpPost]
        public WeiLiResult GetLLDReceiveXmlData(LLDDto dto)
        {
 
 
            var json = WmsSpaHelper.Out_Order_Inss(dto.S_NO);
 
 
            return json;
        }
        #region wms-sap接口
 
 
        /// <summary>
        /// 外采入库/内采入库/计划外退料入库审核接口
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost]
        public async Task<SimpleResult> WcInboundOrderAccieve(WcRkDto model)
        {
            return await WmsSpaHelper.NcRkBacking(model);
        }
 
 
        ///// <summary>
        ///// 内采收货入库接口
        ///// </summary>
        ///// <param name="model"></param>
        ///// <returns></returns>
        //[HttpPost]
        //public async Task<SimpleResult> NcInboundOrderAccieve(WcRkDto model)
        //{
        //    return await WmsSpaHelper.NcRkBacking(model);
        //}
        #endregion
 
 
        /// <summary>
        /// 测试接口
        /// </summary>
        /// <param name="xmlData"></param>
        /// <returns></returns>
        [HttpPost]
        public HttpResponseMessage cesReceiveXmlData([FromBody] XElement xmlData)
        {
            string xmlDatas = "{\r\n  \"ROOT\": {\r\n    \"ITEM\": {\r\n      \"KEY\": \"唯一标识\",\r\n      \"WLPZBH\": \"物料凭证号\",\r\n    " +
               "  \"WLPZND\": \"物料凭年度\",\r\n      \"MSGCODE\": \"1\",\r\n      \"MSGDESP\": \"失败原因或者成功信息字符长度255\"\r\n    }\r\n  }\r\n}";
            var data = JsonConvert.DeserializeObject<ReturnWcBcak.Root>(xmlDatas);
 
            string xml = JsonConvert.DeserializeXmlNode(xmlDatas, "").OuterXml;
            //返回json
            var response = new HttpResponseMessage()
            {
                Content = new StringContent(xml, Encoding.UTF8, "application/xml")
            };
            return response;
 
        }
    }
 
 
}