ApiSendWmsTaskAction.cs
35 KB
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
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
using System;
using System.Collections.Generic;
using System.Data;
using Infrastructure;
using Quartz;
using WebApp;
using WebRepository;
using System.Linq;
using OfficeOpenXml.FormulaParsing.Excel.Functions.DateTime;
namespace WebMvc
{
/// <summary>
/// 分解出库单
/// </summary>
[PersistJobDataAfterExecution]
[DisallowConcurrentExecution]
public class ApiSendWmsTaskAction
{
private string ConnString { set; get; }
IJobExecutionContext Context { set; get; }
public ApiSendWmsTaskAction(string _ConnString, IJobExecutionContext _Context)
{
ConnString = _ConnString;
Context = _Context;
}
public void Execute(JobContainer jobContainer)
{
UnitWork _unitWork = new UnitWork(AppSettingsJson.JobContext(ConnString));
string str = "";
try
{
List<ApiShipmentDetail> ApishipmentDetails = _unitWork.Find<ApiShipmentDetail>(n => n.Status == ShipmentHeaderStatus.新建).OrderBy(n => n.CreateTime).ToList();
foreach (ApiShipmentDetail ApishipmentDetail in ApishipmentDetails)
{
ApiShipmentHeader ApishipmentHeader = _unitWork.Find<ApiShipmentHeader>(n => n.Code == ApishipmentDetail.ShipmentCode).FirstOrDefault();
if (ApishipmentHeader == null)
{
ApishipmentDetail.Error = "未找到主表数据";
_unitWork.Update(ApishipmentDetail);
continue;
}
//判断铜箔出库需要标记完成才可以通过
if (ApishipmentHeader.Type == "CallCopperFoil")
{
if (ApishipmentHeader.Status == 1)
{
str = TBTaskInfo(ApishipmentDetail, ApishipmentHeader);
}
else
{
continue;
}
}
else
{
str = AddTBTaskInfo(ApishipmentDetail, ApishipmentHeader);
}
if (str == "")
{
if (_unitWork.IsExist<ApiShipmentDetail>(n => n.Id == ApishipmentDetail.Id))
{
if (ApishipmentDetail.Status != ShipmentHeaderStatus.回传)
{
ApishipmentDetail.Status = ShipmentHeaderStatus.分配完成;
_unitWork.Update(ApishipmentDetail);
}
}
List<ApiShipmentDetail> ApiStatusshipmentDetail = _unitWork.Find<ApiShipmentDetail>(n => n.SourceCode == ApishipmentDetail.SourceCode && n.ShipmentCode == ApishipmentDetail.ShipmentCode).OrderBy(a => a.Status).ToList();
ApishipmentHeader.FirstStatus = ApiStatusshipmentDetail.Last().Status;
ApishipmentHeader.LastStatus = ApiStatusshipmentDetail.First().Status;
_unitWork.Update(ApishipmentHeader);
}
//出库单未找到物料,已经结束单据,删除出库单
else if (str == "E")
{
List<ApiShipmentDetail> ApiStatusshipmentDetails = _unitWork.Find<ApiShipmentDetail>(n => n.SourceCode == ApishipmentDetail.SourceCode && n.ShipmentCode == ApishipmentDetail.ShipmentCode).OrderBy(a => a.Status).ToList();
if (ApiStatusshipmentDetails.Count() > 0)
{
foreach (var ApiStatusshipmentDetail in ApiStatusshipmentDetails)
{
ApiStatusshipmentDetail.Status = 2;
_unitWork.Update(ApiStatusshipmentDetail);
}
ApishipmentHeader.Status = 2;
_unitWork.Update(ApishipmentHeader);
}
//List<ApiShipmentDetail> ApiStatusshipmentDetail = _unitWork.Find<ApiShipmentDetail>(n => n.SourceCode == ApishipmentDetail.SourceCode && n.ShipmentCode == ApishipmentDetail.ShipmentCode).OrderBy(a => a.Status).ToList();
//ApishipmentHeader.FirstStatus = ApiStatusshipmentDetail.Last().Status;
//ApishipmentHeader.LastStatus = ApiStatusshipmentDetail.First().Status;
//_unitWork.Update(ApishipmentHeader);
////出库单据迁移至历史出库单据
//ApiShipmentHeaderHistory ApishipmentHeaderHistory = new ApiShipmentHeaderHistory();
//ApishipmentHeader.CopyTo(ApishipmentHeaderHistory);
//ApishipmentHeaderHistory.Id = null;
//ApishipmentHeaderHistory.UpdateBy = "ApiSendWmsTaskAction";
//_unitWork.Add(ApishipmentHeaderHistory);
//List<ApiShipmentDetail> Apishipdtls = _unitWork.Find<ApiShipmentDetail>(u => u.ShipmentCode == ApishipmentHeaderHistory.Code).ToList();
//foreach (ApiShipmentDetail Apishipdtl in Apishipdtls)
//{
// ApiShipmentDetailHistory ApishipmentDetailHistory = new ApiShipmentDetailHistory();
// Apishipdtl.CopyTo(ApishipmentDetailHistory);
// ApishipmentDetailHistory.Id = null;
// ApishipmentDetailHistory.ShipmentId = ApishipmentHeaderHistory.Id;
// ApishipmentDetailHistory.UpdateBy = "InterfaceLogAction";
// _unitWork.Add(ApishipmentDetailHistory);
// _unitWork.Delete(Apishipdtl);
//}
//_unitWork.Delete(ApishipmentHeader);
}
else
{
ApishipmentDetail.Error = str;
_unitWork.Update(ApishipmentDetail);
continue;
}
}
}
catch (Exception ex)
{
throw ex;
}
}
//创建出库任务
public string AddTBTaskInfo(ApiShipmentDetail ApishipmentDetail, ApiShipmentHeader ApishipmentHeader)
{
string strError = "";
try
{
UnitWork _unitWork = new UnitWork(AppSettingsJson.JobContext(ConnString));
Task task = _unitWork.Find<Task>(n => n.OrderCode == ApishipmentDetail.ShipmentCode).FirstOrDefault();
var tno = "";
if (task != null)
{
tno = task.TaskNo;
}
else
{
//创建分拣出库或整盘出库Task主任务
tno = _unitWork.GetTaskNo(TaskNo.出库自动分配);
task = new Task
{
OrderCode = ApishipmentDetail.ShipmentCode,
TaskNo = tno,
SourceCode = ApishipmentDetail.SourceCode,
FirstStatus = TaskStatus.待下发任务,
LastStatus = TaskStatus.待下发任务,
CreateTime = DateTime.Now
};
}
StationRoadway stationRoadway = _unitWork.Find<StationRoadway>(n => n.StationCode == ApishipmentHeader.Station).FirstOrDefault();
var Roadway = 0;
if (stationRoadway != null)
{
Roadway = (int)stationRoadway.RoadWay;
}
Inventory inventory = new Inventory();
//铜箔出库
if (ApishipmentHeader.Type == "CallCopperFoil")
{
//根据出库子表数据创建任务主表数据:物料编码加供应商,一个出库单据只出一个托盘
inventory = _unitWork.Find<Inventory>(n => n.MaterialCode == ApishipmentDetail.MaterialCode && n.TaskStatus == InventoryTaskType.无任务 && n.Supplier == ApishipmentHeader.ShipTo).FirstOrDefault();
}
//自用PP出库
else if (ApishipmentHeader.Type == "CallPPForPrivateUse")
{
//根据出库子表数据创建任务主表数据:工单号,一个出库单据只出一个托盘
inventory = _unitWork.Find<Inventory>(n => n.Lot == ApishipmentDetail.Lot && n.TaskStatus == InventoryTaskType.无任务 && n.WarehouseType == "PP_WareCell").OrderBy(X => X.CreateTime).FirstOrDefault();
}
if (inventory != null)
{
if (_unitWork.IsExist<TaskDetail>(n => n.ContainerCode == inventory.ContainerCode))
{
ApishipmentDetail.Error = "库存ID:" + inventory.Id + "有任务执行!";
_unitWork.Update(ApishipmentDetail);
strError = "库存ID:" + inventory.Id + "有任务执行!";
return strError;
}
if (!_unitWork.IsExist<Task>(n => n.TaskNo == task.TaskNo))
{
_unitWork.Add(task);
}
//出库主表任务明细
//创建整盘出库类型任务子表数据
TaskDetail detail = new TaskDetail
{
TaskNo = tno,
TaskType = TaskType.整盘出库,
SourceCode = ApishipmentDetail.SourceCode,
ContainerCode = inventory.ContainerCode,
OrderCode = ApishipmentDetail.ShipmentCode,
Batch = inventory.OldBatch,
MaterialCode = inventory.MaterialCode,
Lot = inventory.Lot,
SourceLocation = inventory.LocationCode,
DestinationLocation = ApishipmentHeader.Station,
Roadway = Roadway,
Station = ApishipmentHeader.Station,
Status = TaskStatus.待下发任务,
Priority = ApishipmentHeader.Priority,
HadQty = 0,
OderQty = ApishipmentDetail.Qty,
ContainerQty = 0,
CreateTime = DateTime.Now,
CreateBy = ApishipmentHeader.CreateBy
};
_unitWork.Add(detail);
//查询当前容器是否已经创建
if (!_unitWork.IsExist<TaskDetail>(n => n.ContainerCode == inventory.ContainerCode && n.Status > TaskStatus.新建任务 && n.Status < TaskStatus.已经完成 && n.TaskType == TaskType.容器出库))
{
// 创建容器出库类型任务主表数据
var taskNo = _unitWork.GetTaskNo(TaskNo.容器出库);
var taskOut = new Task
{
OrderCode = ApishipmentDetail.ShipmentCode,
TaskNo = taskNo,
BusinessType = BusinessType.出库_其他出库单,
SourceCode = ApishipmentDetail.SourceCode,
FirstStatus = TaskStatus.待下发任务,
LastStatus = TaskStatus.待下发任务,
CreateTime = DateTime.Now
};
_unitWork.Add(taskOut);
//创建容器出库类型任务子表数据
TaskDetail taskDetail = new TaskDetail
{
TaskNo = taskNo,
TaskType = TaskType.容器出库,
SourceCode = ApishipmentDetail.SourceCode,
ContainerCode = inventory.ContainerCode,
OrderCode = ApishipmentDetail.ShipmentCode,
Batch = inventory.OldBatch,
MaterialCode = inventory.MaterialCode,
Lot = inventory.Lot,
ContainerQty = 0,
HadQty = 0,
OderQty = 0,
SourceLocation = inventory.LocationCode,
DestinationLocation = ApishipmentHeader.Station,
Roadway = Roadway,
Station = ApishipmentHeader.Station,
Status = TaskStatus.待下发任务,
Priority = ApishipmentHeader.Priority,
CreateTime = DateTime.Now,
CreateBy = ApishipmentHeader.CreateBy
};
_unitWork.Add(taskDetail);
List<Inventory> inventories = _unitWork.Find<Inventory>(n => n.ContainerCode == inventory.ContainerCode).ToList();
foreach (Inventory inv in inventories)
{
InventoryOut inventoryOut = new InventoryOut
{
SourceCode = ApishipmentDetail.SourceCode,
ReceiptCode = ApishipmentDetail.ShipmentCode,
ReceiptId = ApishipmentDetail.ShipmentId,
ReceiptDetailId = ApishipmentDetail.Id,
ContainerCode = inv.ContainerCode,
MaterialCode = inv.MaterialCode,
Batch = inv.Batch,
Lot = inv.Lot,
Qty = inv.Qty,
WarehouseType = inv.WarehouseType,
QrCode = inv.QrCode,
Supplier = inv.Supplier,
ResidualWeight = inv.ResidualWeight,
Retreat = inv.Retreat,
Specification = inv.Specification,
NameDescription = inv.NameDescription,
Unit = inv.Unit,
Size = inv.Size,
NumberofSheets = inv.NumberofSheets,
Groupnum = inv.Groupnum,
OldBatch = inv.OldBatch,
Combo = inv.Combo,
Status = inv.Status,
IsFold = inv.IsFold,
IsPack = inv.IsPack,
LocationCode = ApishipmentHeader.Station,
StackingNumber = inv.StackingNumber,
ShipmentState = 0,
CreateTime = DateTime.Now,
CreateBy = "Api",
WH = inv.WH,
LWH = inv.LWH,
LWHSL = inv.LWHSL,
BLot = inv.BLot,
};
_unitWork.Add(inventoryOut);
inv.SourceCode = ApishipmentDetail.SourceCode;
inv.TaskStatus = InventoryTaskType.任务锁定中;
_unitWork.Update(inv);
}
}
else
{
detail.Status = TaskStatus.下达任务;
List<TaskDetail> list = new List<TaskDetail>();
list = _unitWork.Find<TaskDetail>(n => n.TaskNo == task.TaskNo && n.Id != detail.Id).ToList();
if (list.Count > 0)
{
foreach (TaskDetail td in list)
{
if (!_unitWork.IsExist<TaskDetail>(n => n.TaskNo == td.TaskNo && n.Status > detail.Status))
{
task = _unitWork.Find<Task>(n => n.TaskNo == td.TaskNo).FirstOrDefault();
if (task != null)
{
task.FirstStatus = td.Status;
}
}
if (!_unitWork.IsExist<TaskDetail>(n => n.TaskNo == td.TaskNo && n.Status < detail.Status))
{
task = _unitWork.Find<Task>(n => n.TaskNo == td.TaskNo).FirstOrDefault();
if (task != null)
{
task.LastStatus = td.Status;
}
}
}
_unitWork.Update(task);
}
}
//shipmentDetail.QtyCompleted = shipmentDetail.QtyDivided;
//_unitWork.Update(shipmentDetail);
}
else
{
//未找到物料,回传并结束单据
strError = "E";
ApiInterfaceLog Apiinter = _unitWork.Find<ApiInterfaceLog>(n => n.TaskNo == ApishipmentDetail.SourceCode).FirstOrDefault();
if (Apiinter != null)
{
//回传单头
InAndBackModel inAndBackModel = new InAndBackModel();
inAndBackModel.State = "E";
inAndBackModel.MO = ApishipmentDetail.Lot;
inAndBackModel.PN = ApishipmentDetail.MaterialCode;
inAndBackModel.TaskNumber = Apiinter.TaskNo;
//回传单身
List<InAndBackDetailModel> inAndBackDetails = new List<InAndBackDetailModel>();
InAndBackDetailModel inAndBackDetail = new InAndBackDetailModel();
inAndBackDetail.LWH = ApishipmentDetail.LWH;
inAndBackDetail.LWHSL = ApishipmentDetail.LWHSL;
inAndBackDetail.Quantity = (decimal)ApishipmentDetail.Qty;
inAndBackDetail.Lot = ApishipmentDetail.Lot;
inAndBackDetail.Supllier = "";
inAndBackDetail.Barcode = ApishipmentDetail.Project;
inAndBackDetail.Uow = "";
inAndBackDetails.Add(inAndBackDetail);
inAndBackModel.DeliveryResults = inAndBackDetails;
ApiRequest apiRequest = new ApiRequest("MES");
MesResponse MESesponse = apiRequest.TokenPost<MesResponse>(JsonHelper.Instance.Serialize(inAndBackModel), "WmsService/ReportMaterialDistribution", "出库异常回传");
if (MESesponse.Status == "S")
{
//修改接口表状态
ApiInterfaceLog Back = new ApiInterfaceLog();
Back.TaskNo = Apiinter.TaskNo;
Back.Request = inAndBackModel.ToJson();
Back.Type = "未找到符合物料";
Back.Status = 4;
Back.CreateTime = DateTime.Now;
Back.CreateBy = "ApiinterfaceLog";
_unitWork.Add(Back);
}
else
{
ApiInterfaceLog Back = new ApiInterfaceLog();
Back.TaskNo = Apiinter.TaskNo;
Back.Request = inAndBackModel.ToJson();
Back.Type = "出库异常回传失败";
Back.Status = 4;
Back.Message = MESesponse.ToJson();
Back.CreateTime = DateTime.Now;
Back.CreateBy = "ERPShipmentAction";
_unitWork.Add(Back);
}
Apiinter.Status = 4;
Apiinter.Message = MESesponse.ToJson();
_unitWork.Update(Apiinter);
}
}
}
catch (Exception ex)
{
strError = ex.Message;
return strError;
}
return strError;
}
//创建铜箔出库
public string TBTaskInfo(ApiShipmentDetail ApishipmentDetail, ApiShipmentHeader ApishipmentHeader)
{
string strError = "";
try
{
UnitWork _unitWork = new UnitWork(AppSettingsJson.JobContext(ConnString));
Task task = _unitWork.Find<Task>(n => n.OrderCode == ApishipmentDetail.ShipmentCode).FirstOrDefault();
var tno = "";
if (task != null)
{
tno = task.TaskNo;
}
else
{
//创建分拣出库或整盘出库Task主任务
tno = _unitWork.GetTaskNo(TaskNo.出库自动分配);
task = new Task
{
OrderCode = ApishipmentDetail.ShipmentCode,
TaskNo = tno,
SourceCode = ApishipmentDetail.SourceCode,
FirstStatus = TaskStatus.待下发任务,
LastStatus = TaskStatus.待下发任务,
CreateTime = DateTime.Now
};
}
StationRoadway stationRoadway = _unitWork.Find<StationRoadway>(n => n.StationCode == ApishipmentHeader.Station).FirstOrDefault();
var Roadway = 0;
if (stationRoadway != null)
{
Roadway = (int)stationRoadway.RoadWay;
}
Inventory inventory = new Inventory();
//根据出库子表数据创建任务主表数据:物料编码加供应商,一个出库单据只出一个托盘
inventory = _unitWork.Find<Inventory>(n =>n.ContainerCode == ApishipmentHeader.ContainerCode && n.MaterialCode == ApishipmentDetail.MaterialCode && n.TaskStatus == InventoryTaskType.无任务 && n.Supplier == ApishipmentHeader.ShipTo).OrderBy(x => x.CreateTime).FirstOrDefault();
if (inventory != null)
{
if (_unitWork.IsExist<TaskDetail>(n => n.ContainerCode == inventory.ContainerCode))
{
ApishipmentDetail.Error = "库存ID:" + inventory.Id + "有任务执行!";
_unitWork.Update(ApishipmentDetail);
strError = "库存ID:" + inventory.Id + "有任务执行!";
return strError;
}
if (!_unitWork.IsExist<Task>(n => n.TaskNo == task.TaskNo))
{
_unitWork.Add(task);
}
//出库主表任务明细
//创建整盘出库类型任务子表数据
TaskDetail detail = new TaskDetail
{
TaskNo = tno,
TaskType = TaskType.整盘出库,
SourceCode = ApishipmentDetail.SourceCode,
ContainerCode = inventory.ContainerCode,
OrderCode = ApishipmentDetail.ShipmentCode,
Batch = inventory.OldBatch,
MaterialCode = inventory.MaterialCode,
Lot = inventory.Lot,
SourceLocation = inventory.LocationCode,
DestinationLocation = ApishipmentHeader.Station,
Roadway = Roadway,
Station = ApishipmentHeader.Station,
Status = TaskStatus.待下发任务,
Priority = ApishipmentHeader.Priority,
HadQty = 0,
OderQty = ApishipmentDetail.Qty,
ContainerQty = 0,
CreateTime = DateTime.Now,
CreateBy = ApishipmentHeader.CreateBy
};
_unitWork.Add(detail);
//查询当前容器是否已经创建
if (!_unitWork.IsExist<TaskDetail>(n => n.ContainerCode == inventory.ContainerCode && n.Status > TaskStatus.新建任务 && n.Status < TaskStatus.已经完成 && n.TaskType == TaskType.容器出库))
{
// 创建容器出库类型任务主表数据
var taskNo = _unitWork.GetTaskNo(TaskNo.容器出库);
var taskOut = new Task
{
OrderCode = ApishipmentDetail.ShipmentCode,
TaskNo = taskNo,
BusinessType = BusinessType.出库_其他出库单,
SourceCode = ApishipmentDetail.SourceCode,
FirstStatus = TaskStatus.待下发任务,
LastStatus = TaskStatus.待下发任务,
CreateTime = DateTime.Now
};
_unitWork.Add(taskOut);
//创建容器出库类型任务子表数据
TaskDetail taskDetail = new TaskDetail
{
TaskNo = taskNo,
TaskType = TaskType.容器出库,
SourceCode = ApishipmentDetail.SourceCode,
ContainerCode = inventory.ContainerCode,
OrderCode = ApishipmentDetail.ShipmentCode,
Batch = inventory.OldBatch,
MaterialCode = inventory.MaterialCode,
Lot = inventory.Lot,
ContainerQty = 0,
HadQty = 0,
OderQty = 0,
SourceLocation = inventory.LocationCode,
DestinationLocation = ApishipmentHeader.Station,
Roadway = Roadway,
Station = ApishipmentHeader.Station,
Status = TaskStatus.待下发任务,
Priority = ApishipmentHeader.Priority,
CreateTime = DateTime.Now,
CreateBy = ApishipmentHeader.CreateBy
};
_unitWork.Add(taskDetail);
List<Inventory> inventories = _unitWork.Find<Inventory>(n => n.ContainerCode == inventory.ContainerCode).ToList();
foreach (Inventory inv in inventories)
{
InventoryOut inventoryOut = new InventoryOut
{
SourceCode = ApishipmentDetail.SourceCode,
ReceiptCode = ApishipmentDetail.ShipmentCode,
ReceiptId = ApishipmentDetail.ShipmentId,
ReceiptDetailId = ApishipmentDetail.Id,
ContainerCode = inv.ContainerCode,
MaterialCode = inv.MaterialCode,
Batch = inv.Batch,
Lot = inv.Lot,
Qty = inv.Qty,
WarehouseType = inv.WarehouseType,
QrCode = inv.QrCode,
Supplier = inv.Supplier,
ResidualWeight = inv.ResidualWeight,
Retreat = inv.Retreat,
Specification = inv.Specification,
NameDescription = inv.NameDescription,
Unit = inv.Unit,
Size = inv.Size,
NumberofSheets = inv.NumberofSheets,
Groupnum = inv.Groupnum,
OldBatch = inv.OldBatch,
Combo = inv.Combo,
Status = inv.Status,
IsFold = inv.IsFold,
IsPack = inv.IsPack,
LocationCode = ApishipmentHeader.Station,
StackingNumber = inv.StackingNumber,
ShipmentState = 0,
CreateTime = DateTime.Now,
CreateBy = "Api",
WH = inv.WH,
LWH = inv.LWH,
LWHSL = inv.LWHSL,
BLot = inv.BLot,
};
_unitWork.Add(inventoryOut);
inv.SourceCode = ApishipmentDetail.SourceCode;
inv.TaskStatus = InventoryTaskType.任务锁定中;
_unitWork.Update(inv);
}
}
else
{
detail.Status = TaskStatus.下达任务;
List<TaskDetail> list = new List<TaskDetail>();
list = _unitWork.Find<TaskDetail>(n => n.TaskNo == task.TaskNo && n.Id != detail.Id).ToList();
if (list.Count > 0)
{
foreach (TaskDetail td in list)
{
if (!_unitWork.IsExist<TaskDetail>(n => n.TaskNo == td.TaskNo && n.Status > detail.Status))
{
task = _unitWork.Find<Task>(n => n.TaskNo == td.TaskNo).FirstOrDefault();
if (task != null)
{
task.FirstStatus = td.Status;
}
}
if (!_unitWork.IsExist<TaskDetail>(n => n.TaskNo == td.TaskNo && n.Status < detail.Status))
{
task = _unitWork.Find<Task>(n => n.TaskNo == td.TaskNo).FirstOrDefault();
if (task != null)
{
task.LastStatus = td.Status;
}
}
}
_unitWork.Update(task);
}
}
//shipmentDetail.QtyCompleted = shipmentDetail.QtyDivided;
//_unitWork.Update(shipmentDetail);
}
else
{
//未找到物料,回传并结束单据
strError = "E";
ApiInterfaceLog Apiinter = _unitWork.Find<ApiInterfaceLog>(n => n.TaskNo == ApishipmentDetail.SourceCode).FirstOrDefault();
if (Apiinter != null)
{
//回传单头
InAndBackModel inAndBackModel = new InAndBackModel();
inAndBackModel.State = "E";
inAndBackModel.MO = ApishipmentDetail.Lot;
inAndBackModel.PN = ApishipmentDetail.MaterialCode;
inAndBackModel.TaskNumber = Apiinter.TaskNo;
//回传单身
List<InAndBackDetailModel> inAndBackDetails = new List<InAndBackDetailModel>();
InAndBackDetailModel inAndBackDetail = new InAndBackDetailModel();
inAndBackDetail.LWH = ApishipmentDetail.LWH;
inAndBackDetail.LWHSL = ApishipmentDetail.LWHSL;
inAndBackDetail.Quantity = (decimal)ApishipmentDetail.Qty;
inAndBackDetail.Lot = ApishipmentDetail.Lot;
inAndBackDetail.Supllier = "";
inAndBackDetail.Barcode = ApishipmentDetail.Project;
inAndBackDetail.Uow = "";
inAndBackDetails.Add(inAndBackDetail);
inAndBackModel.DeliveryResults = inAndBackDetails;
ApiRequest apiRequest = new ApiRequest("MES");
MesResponse MESesponse = apiRequest.TokenPost<MesResponse>(JsonHelper.Instance.Serialize(inAndBackModel), "WmsService/ReportMaterialDistribution", "出库异常回传");
if (MESesponse.Status == "S")
{
Apiinter.Status = 4;
Apiinter.Message = "库内未找到符合条件的物料!";
_unitWork.Update(Apiinter);
//修改接口表状态
ApiInterfaceLog Back = new ApiInterfaceLog();
Back.TaskNo = Apiinter.TaskNo;
Back.Request = inAndBackModel.ToJson();
Back.Type = "未找到符合物料";
Back.Status = 4;
Back.CreateTime = DateTime.Now;
Back.CreateBy = "ApiinterfaceLog";
_unitWork.Add(Back);
}
else
{
ApiInterfaceLog Back = new ApiInterfaceLog();
Back.TaskNo = Apiinter.TaskNo;
Back.Request = inAndBackModel.ToJson();
Back.Type = "出库异常回传失败";
Back.Status = 4;
Back.Message = MESesponse.Status + "," + MESesponse.ErrorMsg + "," + DateTime.Now;
Back.CreateTime = DateTime.Now;
Back.CreateBy = "ERPShipmentAction";
_unitWork.Add(Back);
}
}
}
}
catch (Exception ex)
{
strError = ex.Message;
return strError;
}
return strError;
}
}
}