| | |
| | | using WIDESEA_Model.Models; |
| | | using WIDESEA_Model.Models.Basic; |
| | | using WIDESEA_Model.Models.ERP; |
| | | using WIDESEA_OrderRepository; |
| | | using WIDESEA_StorageTaskRepository; |
| | | using WIDESEAWCS_BasicInfoRepository; |
| | | using WIDESEAWCS_QuartzJob.Models; |
| | | using static System.Collections.Specialized.BitVector32; |
| | |
| | | private readonly IDt_AreaInfoRepository _areaInfoRepository; //åºå |
| | | private readonly IDt_StationManagerRepository _stationManagerRepository; |
| | | private readonly ISys_ConfigService _configService; |
| | | private readonly IDt_OtherOutboundOrderRepository _OtheroutorderRepository; |
| | | private readonly IDt_OtherOutboundOrderDetailRepository _OtheroutorderdetailRepository; |
| | | |
| | | public Dt_TaskService(IDt_TaskRepository BaseDal, |
| | | IUnitOfWorkManage unitOfWorkManage, |
| | |
| | | IDt_AreaInfoRepository areaInfoRepository, |
| | | IStockInfoDetailRepository stockInfoDetailRepository, |
| | | IDt_StationManagerRepository stationManagerRepository, |
| | | ISys_ConfigService configService, |
| | | IDt_OtherOutboundOrderRepository OtheroutorderRepository, |
| | | IDt_OtherOutboundOrderDetailRepository OtheroutorderdetailRepository) : base(BaseDal) |
| | | ISys_ConfigService configService) : base(BaseDal) |
| | | { |
| | | _unitOfWorkManage = unitOfWorkManage; |
| | | _stockInfoRepository = stockInfoRepository; |
| | |
| | | _stockInfoDetailRepository = stockInfoDetailRepository; |
| | | _stationManagerRepository = stationManagerRepository; |
| | | _configService = configService; |
| | | _OtheroutorderRepository = OtheroutorderRepository; |
| | | _OtheroutorderdetailRepository = OtheroutorderdetailRepository; |
| | | } |
| | | |
| | | #region å¤é¨æ¥å£æ¹æ³ |
| | |
| | | taskHty.FinishTime = DateTime.Now; |
| | | taskHty.OperateType = App.User.UserName != null ? (int)OperateTypeEnum.äººå·¥å®æ : (int)OperateTypeEnum.èªå¨å®æ; |
| | | taskHty.Creater = App.User.UserName != null ? App.User.UserName : "System"; |
| | | |
| | | //DtStockInfo_Hty stockInfo_Hty = stock.Adapt<DtStockInfo_Hty>(); |
| | | //stockInfo_Hty.ModifyDate = DateTime.Now; |
| | | stock.ModifyDate = DateTime.Now; |
| | | stock.LocationCode = task.TargetAddress; |
| | | var result1 = UpdateLocationStatus(locationStart, LocationEnum.Free, task.TaskNum.Value, (int)StatusChangeTypeEnum.AutomaticOutbound); |
| | | var result2 = UpdateLocationStatus(locationEnd, LocationEnum.InStock, task.TaskNum.Value, (int)StatusChangeTypeEnum.AutomaticOutbound); |
| | | |
| | | DtStockInfo_Hty stockInfo_Hty = null; |
| | | if (task.TaskType != (int)TaskOutboundTypeEnum.Outbound) |
| | | { |
| | | var stockDetailsToRemove = new List<DtStockInfoDetail>(); |
| | | |
| | | // å¤çåºåæç» |
| | | if (stock.StockInfoDetails == null || !stock.StockInfoDetails.Any()) |
| | | { |
| | | // å½åºåæç»ä¸ºç©ºæ¶ï¼å°æ´ä¸ªåºåç§»å
¥åå²è¡¨ |
| | | stockInfo_Hty = CreateStockInfoHty(stock, null, true); |
| | | } |
| | | else |
| | | { |
| | | foreach (var item in stock.StockInfoDetails.ToList()) |
| | | { |
| | | if (item.OutboundQuantity <= 0 || item.OutboundQuantity > item.Quantity) |
| | | { |
| | | throw new Exception($"åºåºæ°éå¼å¸¸ï¼ç©æ {item.MaterielCode} çåºåºæ°é {item.OutboundQuantity} ä¸åæ³"); |
| | | } |
| | | |
| | | if (item.OutboundQuantity == item.Quantity) |
| | | { |
| | | // å®å
¨åºåºï¼ç§»å
¥åå²è¡¨ |
| | | if (stockInfo_Hty == null) |
| | | { |
| | | stockInfo_Hty = CreateStockInfoHty(stock, new List<DtStockInfoDetail> { item }, false); |
| | | } |
| | | else |
| | | { |
| | | stockInfo_Hty.StockInfoDetails.Add(CreateStockInfoDetailHty(item)); |
| | | } |
| | | stockDetailsToRemove.Add(item); |
| | | } |
| | | else if (item.OutboundQuantity < item.Quantity && item.OutboundQuantity > 0) |
| | | { |
| | | // é¨ååºåºï¼æ´æ°æ°é |
| | | item.Quantity -= item.OutboundQuantity; |
| | | item.OutboundQuantity = 0; // éç½®åºåºæ°é |
| | | } |
| | | } |
| | | |
| | | // ç§»é¤å·²å®å
¨åºåºçæç» |
| | | foreach (var item in stockDetailsToRemove) |
| | | { |
| | | stock.StockInfoDetails.Remove(item); |
| | | } |
| | | } |
| | | } |
| | | |
| | | await _unitOfWorkManage.UseTranAsync(async () => |
| | | { |
| | | //await DeleteStockInfoAsync(stock.Id); |
| | | //await DeleteStockInfoDetailsAsync(stock.StockInfoDetails); |
| | | //await AddStockInfoHtyAsync(stockInfo_Hty); |
| | | // 妿åºåæç»å
¨é¨åºåºå®æ¯ï¼å é¤ååºåè®°å½ |
| | | if (stock.StockInfoDetails == null || !stock.StockInfoDetails.Any()) |
| | | { |
| | | await _stockInfoRepository.DeleteDataAsync(stock); |
| | | } |
| | | else |
| | | { |
| | | _stockInfoRepository.UpdateData(stock); |
| | | } |
| | | // æ·»å åå²è®°å½ |
| | | if (stockInfo_Hty != null) |
| | | { |
| | | await AddStockInfoHtyAsync(stockInfo_Hty); |
| | | } |
| | | |
| | | await _locationStatusChangeRecordRepository.AddDataAsync(result1.Item1); |
| | | await _locationStatusChangeRecordRepository.AddDataAsync(result2.Item1); |
| | | await _locationRepository.UpdateDataAsync(result1.Item2); |
| | |
| | | await AddTaskHtyAsync(taskHty); |
| | | }); |
| | | content.OK("åºåºå®æ"); |
| | | |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | |
| | | return content; |
| | | } |
| | | |
| | | private DtStockInfo_Hty CreateStockInfoHty(DtStockInfo stock, List<DtStockInfoDetail> details, bool isFullExit) |
| | | { |
| | | var stockInfoHty = new DtStockInfo_Hty() |
| | | { |
| | | PalletCode = stock.PalletCode, |
| | | LocationCode = stock.LocationCode, |
| | | IsFullExit = isFullExit, |
| | | StockStatus = stock.StockStatus, |
| | | OrderNo = stock.OrderNo, |
| | | OrderType = stock.OrderType, |
| | | Remark = stock.Remark, |
| | | StockInfoDetails = new List<DtStockInfoDetail_Hty>() |
| | | }; |
| | | |
| | | if (details != null) |
| | | { |
| | | foreach (var detail in details) |
| | | { |
| | | stockInfoHty.StockInfoDetails.Add(CreateStockInfoDetailHty(detail)); |
| | | } |
| | | } |
| | | |
| | | return stockInfoHty; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// å建åºåæç»åå²è®°å½ |
| | | /// </summary> |
| | | private DtStockInfoDetail_Hty CreateStockInfoDetailHty(DtStockInfoDetail detail) |
| | | { |
| | | return new DtStockInfoDetail_Hty |
| | | { |
| | | MaterielCode = detail.MaterielCode, |
| | | MaterielName = detail.MaterielName, |
| | | DemandClassification = detail.DemandClassification, |
| | | Warehouse = detail.Warehouse, |
| | | OrderNo = detail.OrderNo, |
| | | Unit = detail.Unit, |
| | | Specs = detail.Specs, |
| | | Weight = detail.Weight, |
| | | Quantity = detail.Quantity, |
| | | OutboundQuantity = detail.OutboundQuantity, |
| | | Status = detail.Status, |
| | | DrawingNumber = detail.DrawingNumber, |
| | | Date = detail.Date, |
| | | Remark = detail.Remark |
| | | }; |
| | | } |
| | | |
| | | #endregion åºåºä»»å¡å®æ |
| | | |
| | |
| | | WebResponseContent content = new WebResponseContent(); |
| | | try |
| | | { |
| | | var stock = await _stockInfoRepository.QueryFirstNavAsync(x => x.PalletCode == task.PalletCode && x.StockStatus == (int)StockStateEmun.ç»çæå); |
| | | var boxinfo = await _boxingInfoRepository.QueryFirstNavAsync(x => x.PalletCode == task.PalletCode); |
| | | var locationStart = await _locationRepository.QueryFirstAsync(x => x.LocationCode == task.SourceAddress); |
| | | var locationEnd = await _locationRepository.QueryFirstAsync(x => x.LocationCode == task.TargetAddress); |
| | | |
| | | if (stock == null) |
| | | if (boxinfo == null) |
| | | { |
| | | return content.Error("æªæ¾å°ç»çæ°æ®"); |
| | | } |
| | | stock.LocationCode = task.TargetAddress; |
| | | stock.StockStatus = (int)StockStateEmun.å·²å
¥åº; |
| | | |
| | | var stock = CreateStock(boxinfo, task); |
| | | |
| | | task.TaskState = (int)TaskInStatusEnum.InFinish; |
| | | var taskHty = task.Adapt<Dt_Task_Hty>(); |
| | | taskHty.FinishTime = DateTime.Now; |
| | | taskHty.OperateType = App.User.UserName != null ? (int)OperateTypeEnum.äººå·¥å®æ : (int)OperateTypeEnum.èªå¨å®æ; |
| | | taskHty.Creater = App.User.UserName != null ? App.User.UserName : "System"; |
| | | var result1 = UpdateLocationStatus(locationStart, LocationEnum.Free, task.TaskNum.Value, (int)StatusChangeTypeEnum.AutomaticInbound); |
| | | var result2 = UpdateLocationStatus(locationEnd, LocationEnum.InStock, task.TaskNum.Value, (int)StatusChangeTypeEnum.AutomaticInbound); |
| | | |
| | | var result1 = UpdateLocationStatus(task.SourceAddress, LocationEnum.InStockDisable, task.TaskNum.Value, (int)StatusChangeTypeEnum.AutomaticInbound); |
| | | var result2 = UpdateLocationStatus(task.TargetAddress, LocationEnum.Lock, task.TaskNum.Value, (int)StatusChangeTypeEnum.AutomaticInbound); |
| | | |
| | | await _unitOfWorkManage.UseTranAsync(async () => |
| | | { |
| | | await _stockInfoRepository.UpdateDataAsync(stock); |
| | | await _stockInfoRepository.AddDataNavAsync(stock); |
| | | await DeleteTaskAsync(task.TaskId); |
| | | await AddTaskHtyAsync(taskHty); |
| | | await _locationStatusChangeRecordRepository.AddDataAsync(result1.Item1); |
| | | await _locationStatusChangeRecordRepository.AddDataAsync(result2.Item1); |
| | | await _locationRepository.UpdateDataAsync(result1.Item2); |
| | | await _locationStatusChangeRecordRepository.AddDataAsync(result1.Item1); |
| | | await _locationRepository.UpdateDataAsync(result2.Item2); |
| | | |
| | | await _locationRepository.UpdateDataAsync(result1.Item2); |
| | | }); |
| | | content.OK("å
¥åºå®æ"); |
| | | } |
| | |
| | | return content; |
| | | } |
| | | |
| | | |
| | | public DtStockInfo CreateStock(DtBoxingInfo boxingInfo,Dt_Task task) |
| | | { |
| | | var boxDetail = boxingInfo.BoxingInfoDetails.Adapt<List<DtStockInfoDetail>>(); |
| | | boxDetail.ForEach(x => { x.Status = (int)StockStateEmun.å·²å
¥åº; }); |
| | | return new DtStockInfo() |
| | | { |
| | | PalletCode = task.PalletCode, |
| | | LocationCode = task.TargetAddress, |
| | | CreateDate = DateTime.Now, |
| | | Creater = "system", |
| | | IsFullExit = boxingInfo.IsFullExit, |
| | | StockInfoDetails = boxDetail, |
| | | StockStatus = (int)StockStateEmun.å·²å
¥åº |
| | | }; |
| | | } |
| | | #endregion å
¥åºä»»å¡å®æ |
| | | |
| | | #region AGVæ¬è¿ä»»å¡å®æ |
| | |
| | | WebResponseContent content = new WebResponseContent(); |
| | | try |
| | | { |
| | | var stock = await _stockInfoRepository.QueryFirstNavAsync(x => x.PalletCode == taskDto.PalletCode && x.StockStatus == (int)StockStateEmun.ç»çæå); |
| | | if (stock == null) |
| | | var boxingInfo = await _boxingInfoRepository.QueryFirstNavAsync(x => x.PalletCode == taskDto.PalletCode && x.StockStatus == (int)StockStateEmun.ç»çæå); |
| | | |
| | | if (boxingInfo == null) |
| | | { |
| | | return content.Error("æçä¿¡æ¯ä¸åå¨ï¼è¯·ç¡®è®¤æçå·²ç»çæå"); |
| | | } |
| | |
| | | await _locationRepository.UpdateDataAsync(result2.Item2); |
| | | BaseDal.AddData(taskNew); |
| | | }); |
| | | return content = await SendWCSTask(taskDTO); |
| | | //return content = await SendWCSTask(taskDTO); |
| | | return content.OK("æå"); |
| | | } |
| | | catch (Exception err) |
| | | { |
| | |
| | | #endregion |
| | | |
| | | #region 请æ±åºåº |
| | | public async Task<WebResponseContent> OtherOutBoundTaskAsync(string palletCode) |
| | | public async Task<WebResponseContent> OutBoundTaskAsync(string palletCode) |
| | | { |
| | | WebResponseContent content = new WebResponseContent(); |
| | | try |
| | | { |
| | | DtStockInfo stcok = await _stockInfoRepository.QueryFirstAsync(x => x.PalletCode == palletCode); |
| | | DtStockInfo stcok = await _stockInfoRepository.QueryFirstNavAsync(x => x.PalletCode == palletCode); |
| | | if (stcok == null) |
| | | { |
| | | return content.Error("æçä¿¡æ¯ä¸åå¨ï¼è¯·ç¡®è®¤æçå·²å
¥åºæå"); |
| | | } |
| | | |
| | | if (stcok.LocationInfo.LocationStatus != (int)LocationEnum.InStock) |
| | | { |
| | | return content.Error("请确认åºåè´§ä½ç¶ææ¯å¦ä¸ºæè´§"); |
| | | } |
| | | var task = await BaseDal.QueryFirstAsync(x => x.PalletCode == palletCode); |
| | | if (task != null) |
| | | { |
| | | return content.Error("该æçå·²åå¨ä»»å¡"); |
| | | } |
| | | |
| | | var location = await _locationRepository.QueryFirstAsync(x => x.LocationCode == stcok.LocationCode); |
| | | if (location.AreaId == 2) |
| | | { |
| | | return content.Error("该æçåºåå·²å¨åºåºç¼ååº"); |
| | | } |
| | | |
| | | Dt_Task taskNew= await RequestOutboundTaskAsync(new RequestTaskDto { PalletCode = palletCode, AreaId = 2, Position = stcok.LocationCode, TaskType = (int)TaskOutboundTypeEnum.OutOther }); |
| | | return content.OK(data: taskNew); |
| | | Dt_Task taskNew = await RequestOutboundTaskAsync(new RequestTaskDto { PalletCode = palletCode, AreaId = 2, Position = stcok.LocationCode, TaskType = (int)TaskOutboundTypeEnum.Outbound }); |
| | | |
| | | var taskDto = CreateListTaskDTO(taskNew); |
| | | var result = GetlcoationState(taskNew, (int)StatusChangeTypeEnum.AutomaticOutbound); |
| | | await _unitOfWorkManage.UseTranAsync(async () => |
| | | { |
| | | BaseDal.AddData(taskNew); |
| | | _stockInfoRepository.UpdateData(stcok); |
| | | await _locationStatusChangeRecordRepository.AddDataAsync(result.Item1); |
| | | await _locationRepository.UpdateDataAsync(result.Item2); |
| | | }); |
| | | return content = await SendWCSTask(taskDto); |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | return content.Error(ex.Message); |
| | | } |
| | | } |
| | | |
| | | public (List<DtLocationStatusChangeRecord>,List<DtLocationInfo>) GetlcoationState(Dt_Task task,int StatusChangeTypeEnum) |
| | | { |
| | | List<DtLocationStatusChangeRecord> locationStatusChangeRecords = new List<DtLocationStatusChangeRecord>(); |
| | | List<DtLocationInfo> locations = new List<DtLocationInfo>(); |
| | | var result1 = UpdateLocationStatus(task.SourceAddress, LocationEnum.InStockDisable, task.TaskNum.Value, StatusChangeTypeEnum); |
| | | var result2 = UpdateLocationStatus(task.TargetAddress, LocationEnum.Lock, task.TaskNum.Value, StatusChangeTypeEnum); |
| | | locationStatusChangeRecords.AddRange(result1.Item1); |
| | | locationStatusChangeRecords.AddRange(result2.Item1); |
| | | locations.AddRange(result1.Item2); |
| | | locations.AddRange(result2.Item2); |
| | | |
| | | return (locationStatusChangeRecords,locations); |
| | | } |
| | | |
| | | public (List<DtLocationStatusChangeRecord>, List<DtLocationInfo>) GetlcoationState(List<Dt_Task> tasks, int StatusChangeTypeEnum) |
| | | { |
| | | List<DtLocationStatusChangeRecord> locationStatusChangeRecords = new List<DtLocationStatusChangeRecord>(); |
| | | List<DtLocationInfo> locations = new List<DtLocationInfo>(); |
| | | foreach (var item in tasks) |
| | | { |
| | | var result1 = UpdateLocationStatus(item.SourceAddress, LocationEnum.InStockDisable, item.TaskNum.Value, StatusChangeTypeEnum); |
| | | var result2 = UpdateLocationStatus(item.TargetAddress, LocationEnum.Lock, item.TaskNum.Value, StatusChangeTypeEnum); |
| | | locationStatusChangeRecords.AddRange(result1.Item1); |
| | | locationStatusChangeRecords.AddRange(result2.Item1); |
| | | locations.AddRange(result1.Item2); |
| | | locations.AddRange(result2.Item2); |
| | | } |
| | | return (locationStatusChangeRecords, locations); |
| | | } |
| | | |
| | | |
| | |
| | | { |
| | | new issueList |
| | | { |
| | | //夿ID |
| | | PickListID = task.OrderNo, |
| | | //åå¨å°ç¹ |
| | | WhCode = "204", |
| | | //颿æ°é |
| | | IssueQty = task.OrderNo, |
| | | } |
| | | } |
| | |
| | | businessDate = DateTime.Now.ToString("yyyy-MM-dd"), |
| | | isApproved = true, |
| | | |
| | | transferInList = stock.StockInfoDetails.Select(item => new transferInList |
| | | transferInList = stock.StockInfoDetails.Where(x => x.OutboundQuantity > 0).Select(item => new transferInList |
| | | { |
| | | //ç©æç¼ç |
| | | ItemCode = item.MaterielCode, |
| | | TransInWHCode = item.Warehouse, |
| | | TransInQty = item.Quantity, |
| | | TransOutWHCode = "001", |
| | | //è°å
¥ä»åºå°å |
| | | TransInWHCode = item.Remark==""? item.Warehouse: item.Remark, |
| | | //è°å
¥æ°é |
| | | TransInQty = item.OutboundQuantity, |
| | | // è°åºä»åºç¼ç |
| | | TransOutWHCode = "201", |
| | | }).ToList() |
| | | }; |
| | | return content.OK(data: allocate); |
| | |
| | | try |
| | | { |
| | | DtStockInfo stock = await _stockInfoRepository.QueryFirstNavAsync(x => x.PalletCode == palletCode); |
| | | Allocate allocate = new Allocate |
| | | MixedSend send = new MixedSend |
| | | { |
| | | context = new Context |
| | | { |
| | |
| | | businessDate = DateTime.Now.ToString("yyyy-MM-dd"), |
| | | isApproved = true, |
| | | |
| | | transferInList = stock.StockInfoDetails.Select(item => new transferInList |
| | | miscShipList = stock.StockInfoDetails.Where(x => x.OutboundQuantity > 0).Select(item => new miscShipList |
| | | { |
| | | //ç©æç¼ç |
| | | ItemCode = item.MaterielCode, |
| | | TransInWHCode = item.Warehouse, |
| | | TransInQty = item.Quantity, |
| | | TransOutWHCode = "001", |
| | | //åå¨å°ç¹ç¼å· |
| | | WhCode = item.Warehouse, |
| | | //æåæ°é |
| | | Qty = item.OutboundQuantity, |
| | | BenefitDeptCode = "0505", |
| | | }).ToList() |
| | | }; |
| | | return content.OK(data: allocate); |
| | | return content.OK(data: send); |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | |
| | | try |
| | | { |
| | | DtStockInfo stock = await _stockInfoRepository.QueryFirstNavAsync(x => x.PalletCode == palletCode); |
| | | Allocate allocate = new Allocate |
| | | MixedReceive allocate = new MixedReceive |
| | | { |
| | | context = new Context |
| | | { |
| | |
| | | businessDate = DateTime.Now.ToString("yyyy-MM-dd"), |
| | | isApproved = true, |
| | | |
| | | transferInList = stock.StockInfoDetails.Select(item => new transferInList |
| | | miscRcvList = stock.StockInfoDetails.Where(x => x.OutboundQuantity > 0).Select(item => new miscRcvList |
| | | { |
| | | ItemCode = item.MaterielCode, |
| | | TransInWHCode = item.Warehouse, |
| | | TransInQty = item.Quantity, |
| | | TransOutWHCode = "001", |
| | | WhCode = item.Warehouse, |
| | | Qty = item.OutboundQuantity, |
| | | CostPrice = 0, |
| | | }).ToList() |
| | | }; |
| | | return content.OK(data: allocate); |
| | |
| | | try |
| | | { |
| | | DtStockInfo stock = await _stockInfoRepository.QueryFirstNavAsync(x => x.PalletCode == palletCode); |
| | | Allocate allocate = new Allocate |
| | | ReturnMaterials allocate = new ReturnMaterials |
| | | { |
| | | context = new Context |
| | | { |
| | |
| | | businessDate = DateTime.Now.ToString("yyyy-MM-dd"), |
| | | isApproved = true, |
| | | |
| | | transferInList = stock.StockInfoDetails.Select(item => new transferInList |
| | | returnMaterialList = stock.StockInfoDetails.Select(item => new returnMaterialList |
| | | { |
| | | ItemCode = item.MaterielCode, |
| | | TransInWHCode = item.Warehouse, |
| | | TransInQty = item.Quantity, |
| | | TransOutWHCode = "001", |
| | | PickListID = item.MaterielCode, |
| | | WhCode = item.Warehouse, |
| | | RecedeQty = item.OutboundQuantity, |
| | | RecedeReason = 1, |
| | | }).ToList() |
| | | }; |
| | | return content.OK(data: allocate); |