wangxinhui
2026-02-05 13ca4d6e7ca157092dac6e369cd52654a34b9465
代码管理/WMS/WMSServices/WIDESEA_TaskInfoService/TaskService.cs
@@ -72,6 +72,9 @@
        private readonly IOutboundService _outboundService;
        private readonly IInboundRepository _inboundRepository;
        private readonly IInboundService _inboundService;
        private readonly IRepository<Dt_BlankStockInfo> _blankStockInfoRepository;
        private readonly IRepository<Dt_PalletCodeInfo> _palletCodeInfoRepository;
        private readonly IApiInfoRepository _apiInfoRepository;
        public ITaskRepository Repository => BaseDal;
        private Dictionary<string, OrderByType> _taskOrderBy = new()
@@ -84,7 +87,7 @@
        public List<int> TaskOutboundTypes => typeof(TaskTypeEnum).GetEnumIndexList().Where(x => x >= 100 && x < 500).ToList();
        public TaskService(ITaskRepository BaseDal, IMapper mapper, IUnitOfWorkManage unitOfWorkManage, IStockRepository stockRepository, IBasicService basicService, IRecordService recordService, IStockService stockService, IBasicRepository basicRepository, IInvokeERPService invokeERPService,  IOutboundRepository outboundRepository, IOutboundService outboundService, IInboundRepository inboundRepository,IInboundService inboundService,IInvokeMESService invokeMESService) : base(BaseDal)
        public TaskService(ITaskRepository BaseDal, IMapper mapper, IUnitOfWorkManage unitOfWorkManage, IStockRepository stockRepository, IBasicService basicService, IRecordService recordService, IStockService stockService, IBasicRepository basicRepository, IInvokeERPService invokeERPService,  IOutboundRepository outboundRepository, IOutboundService outboundService, IInboundRepository inboundRepository,IInboundService inboundService,IInvokeMESService invokeMESService, IRepository<Dt_BlankStockInfo> blankStockInfoRepository, IRepository<Dt_PalletCodeInfo> palletCodeInfoRepository,IApiInfoRepository _apiInfoRepository) : base(BaseDal)
        {
            _mapper = mapper;
            _unitOfWorkManage = unitOfWorkManage;
@@ -99,6 +102,9 @@
            _outboundService = outboundService;
            _inboundRepository = inboundRepository;
            _inboundService = inboundService;
            _blankStockInfoRepository = blankStockInfoRepository;
            _palletCodeInfoRepository = palletCodeInfoRepository;
            this._apiInfoRepository = _apiInfoRepository;
        }
        /// <summary>