From 7ca9651f81d7b84f054194d3d46fdbd1d9c8b922 Mon Sep 17 00:00:00 2001
From: dengjunjie <dengjunjie@hnkhzn.com>
Date: 星期三, 09 七月 2025 22:55:27 +0800
Subject: [PATCH] 增加质检出入库逻辑

---
 项目代码/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/PartialTaskService_ProductionLine.cs |   84 ++++++++++++++++++++++++++++++++++++------
 1 files changed, 72 insertions(+), 12 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/PartialTaskService_ProductionLine.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/PartialTaskService_ProductionLine.cs"
index 13fe744..7cfc6a2 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/PartialTaskService_ProductionLine.cs"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/PartialTaskService_ProductionLine.cs"
@@ -1,14 +1,14 @@
-锘縰sing System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
+锘縰sing Magicodes.IE.Core;
+using MailKit.Search;
+using System;
 using System.Threading.Tasks;
-using WIDESEA_Core.Enums;
 using WIDESEA_Core;
+using WIDESEA_Core.Enums;
+using WIDESEA_Core.Helper;
+using WIDESEA_DTO.Inbound;
 using WIDESEA_DTO.WCSInfo;
 using WIDESEA_Model.Models;
 using WIDESEAWCS_DTO.WCSInfo;
-using WIDESEA_Core.Helper;
 
 namespace WIDESEA_TaskInfoService
 {
@@ -25,14 +25,74 @@
             WebResponseContent content = new WebResponseContent();
             try
             {
-                (bool, string) result = CheckRequestInbound(productionlineDTO.Station, productionlineDTO.TrayBarcode, false);
-                if (!result.Item1) return content = WebResponseContent.Instance.Error(result.Item2);
-                var task = BaseDal.QueryFirst(x => x.PalletCode == productionlineDTO.TrayBarcode);
-                if (task != null && task.TaskType == TaskTypeEnum.Inbound.ObjToInt())
-                    return content.OK(data: task);
+                #region MyRegion
+                Dt_InventoryInfo inventoryInfo = _inventoryInfoRepository.QueryFirst(x => x.PalletCode == productionlineDTO.Barcode);
+                if (inventoryInfo != null) throw new Exception($"鎵樼洏銆恵productionlineDTO.Barcode}銆戝凡瀛樺湪搴撳瓨淇℃伅");
+                Dt_InboundOrderDetail inboundOrderDetail = _inboundService.InboundOrderDetailService.Repository.QueryFirst(x => x.BatchNo == productionlineDTO.batchNo);
+                if (inboundOrderDetail == null) throw new Exception($"鏈壘鍒版壒鍙枫�恵productionlineDTO.batchNo}銆戠殑鍏ュ簱鍗�");
+                if (inboundOrderDetail.OrderQuantity - inboundOrderDetail.ReceiptQuantity < 1) throw new Exception($"鎵瑰彿銆恵productionlineDTO.batchNo}銆戠殑鍙粍鐩樻暟閲忎笉瓒�");
+                Dt_InboundOrder inboundOrder = _inboundService.InbounOrderService.Repository.QueryFirst(x => x.Id == inboundOrderDetail.OrderId);
+                if (inboundOrder == null) throw new Exception($"鏈壘鍒版壒鍙蜂负銆恵productionlineDTO.batchNo}銆戠殑鍏ュ簱鍗�");
+                var materielInfo = _basicRepository.MaterielInfoRepository.QueryFirst(x => x.MaterielCode == inboundOrderDetail.MaterielCode);
+                if (materielInfo == null) throw new Exception($"鏈壘鍒扮墿鏂欎俊鎭�,鐗╂枡缂栫爜銆恵inboundOrderDetail.MaterielCode}銆�");
+                Dt_Task dt_Task = new Dt_Task()
+                {
+                    CurrentAddress = productionlineDTO.stationCode,
+                    NextAddress = "SC01",
+                    SourceAddress = productionlineDTO.stationCode,
+                    TargetAddress = "SC01",
+                    Creater = "System",
+                    PalletCode = productionlineDTO.Barcode,
+                    Roadway = "SC01",
+                    OrderNo = productionlineDTO.batchNo,// inboundOrder.OrderNo,
+                    TaskNum = BaseDal.GetTaskNum(nameof(SequenceEnum.SeqTaskNum)),
+                    TaskState = InTaskStatusEnum.InNew.ObjToInt(),
+                    TaskType = TaskTypeEnum.Inbound.ObjToInt(),
+                    CreateDate = DateTime.Now,
+                    Dispatchertime = DateTime.Now,
+                };
+
+                var productionDate = DateTime.Now.ToString("yyyy-MM-dd");
+                var validityPeriod = DateTime.Now.AddDays(materielInfo.Validity).ToString("yyyy-MM-dd");//鍔犲ぉ
+                //var validityPeriod = DateTime.Now.AddMonths(materielInfo.Validity).ToString("yyyy-MM-dd");//鍔犳湀
+                //var validityPeriod = DateTime.Now.AddYears(materielInfo.Validity).ToString("yyyy-MM-dd");//鍔犲勾
+                #region 搴撳瓨
+                inventoryInfo = new Dt_InventoryInfo()
+                {
+                    BatchNo = productionlineDTO.batchNo,
+                    MaterielCode = inboundOrderDetail.MaterielCode,
+                    MaterielName = inboundOrderDetail.MaterielName,
+                    PalletCode = productionlineDTO.Barcode,
+                    ProductionDate = productionDate,
+                    StockStatus = StockStatusEmun.缁勭洏鏆傚瓨.ObjToInt(),
+                    ProductStatus = ProductStatusEmun.寰呮1.ObjToInt(),
+                    ShelfLife = materielInfo.Validity,
+                    ValidityPeriod = validityPeriod,
+                    Creater = "System"
+                };
+                #endregion
+
+                #region 鍏ュ簱鍗�
+                inboundOrder.OrderStatus = InboundStatusEnum.鍏ュ簱涓�.ObjToInt();
+                var Item1 = _inboundService.InboundOrderDetailService.GetBoxStockQuantity(inboundOrderDetail);
+                inventoryInfo.StockQuantity = Item1.StockQuantity;
+                inventoryInfo.BoxQuantity = Item1.BoxQuantity;
+                inboundOrderDetail.ReceiptQuantity = inboundOrderDetail.ReceiptQuantity + Item1.StockQuantity;
+                inboundOrderDetail.OrderDetailStatus = OrderDetailStatusEnum.GroupAndInbound.ObjToInt();
+                #endregion
+
+                Db.Ado.BeginTran();
+                _inboundService.InbounOrderService.UpdateData(inboundOrder);
+                _inboundService.InboundOrderDetailService.UpdateData(inboundOrderDetail);
+                _inventoryInfoRepository.AddData(inventoryInfo);
+                AddData(dt_Task);
+                content.OK(data: dt_Task);
+                Db.Ado.CommitTran();
+                #endregion
             }
             catch (Exception ex)
             {
+                Db.Ado.RollbackTran();
                 content.Error(ex.Message);
             }
             return content;
@@ -67,7 +127,7 @@
                     PalletCode = lineDTO.Barcode,
                     OrderNo = StockInfoDetails.Count() == 1 ? StockInfoDetails.First().OrderNo : null,
                     Roadway = "SC01",
-                    TaskNum = Convert.ToInt32(DateTime.Now.ToString("HHmmss")),
+                    TaskNum = BaseDal.GetTaskNum(nameof(SequenceEnum.SeqTaskNum)),
                     TaskState = InTaskStatusEnum.InNew.ObjToInt(),
                     TaskType = TaskTypeEnum.Inbound.ObjToInt(),
                 };

--
Gitblit v1.9.3