From f423e1277f91427f0a767bd1224c1260dcb73086 Mon Sep 17 00:00:00 2001
From: wanshenmean <cathay_xy@163.com>
Date: 星期一, 20 四月 2026 22:47:54 +0800
Subject: [PATCH] feat: 添加空箱入库功能及相关优化

---
 Code/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/TaskService.cs |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/Code/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/TaskService.cs b/Code/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/TaskService.cs
index 0b7d8e4..1bee12d 100644
--- a/Code/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/TaskService.cs
+++ b/Code/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/TaskService.cs
@@ -41,6 +41,7 @@
         private readonly IUnitOfWorkManage _unitOfWorkManage;
         private readonly IRecordService _recordService;
         private readonly IMESDeviceConfigService _mesDeviceConfigService;
+        private readonly IMesLogService _mesLogService;
 
         public IRepository<Dt_Task> Repository => BaseDal;
 
@@ -66,7 +67,8 @@
             IStockInfo_HtyService stockInfo_HtyService,
             IUnitOfWorkManage unitOfWorkManage,
             IRecordService recordService,
-            IMESDeviceConfigService mesDeviceConfigService) : base(BaseDal)
+            IMESDeviceConfigService mesDeviceConfigService,
+            IMesLogService mesLogService) : base(BaseDal)
         {
             _mapper = mapper;
             _stockInfoService = stockInfoService;
@@ -80,6 +82,7 @@
             _unitOfWorkManage = unitOfWorkManage;
             _recordService = recordService;
             _mesDeviceConfigService = mesDeviceConfigService;
+            _mesLogService = mesLogService;
         }
 
         /// <summary>

--
Gitblit v1.9.3