Explorar el Código

添加团组费用验证逻辑

在 `DailyFeePaymentRepository.cs` 文件中,新增了对 `GroupId` 的处理逻辑。实现了对费用类型为团组费用时的验证,确保所选的团组名称有效。如果团组名称无效,将回滚事务并返回错误信息。
LEIYI hace 1 semana
padre
commit
464a903b48

+ 18 - 0
OASystem/OASystem.Infrastructure/Repositories/Financial/DailyFeePaymentRepository.cs

@@ -4,6 +4,7 @@ using OASystem.Domain;
 using OASystem.Domain.Dtos;
 using OASystem.Domain.Dtos.Financial;
 using OASystem.Domain.Entities.Financial;
+using OASystem.Domain.Entities.Groups;
 using OASystem.Domain.ViewModels.Financial;
 using OASystem.Infrastructure.Repositories.System;
 using System;
@@ -379,6 +380,7 @@ namespace OASystem.Infrastructure.Repositories.Financial
 
             var _fee = _mapper.Map<Fin_DailyFeePayment>(dto);
             _fee.CreateUserId = dto.UserId;
+            _fee.GroupId = dto.GroupId;
 
             /*
              * 2024-10-29
@@ -387,10 +389,26 @@ namespace OASystem.Infrastructure.Repositories.Financial
              * 团组费用 默认总经理审核通过
              * 2025-03-25
              * 各部门基础固定费用明细”里的费用数据新增后,默认老张通过 财务手动审核 
+             * 
              */
             var priceTypeInfo = await _sqlSugar.Queryable<Sys_SetData>().FirstAsync(x => x.IsDel == 0 && x.Id == dto.PriceTypeId);
             if (priceTypeInfo != null && (priceTypeInfo.STid == 90 || priceTypeInfo.STid == 104))
             {
+
+                //费用类型为团组费用时 验证groupId
+                if (priceTypeInfo.STid == 104)
+                {
+                    var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(x => x.IsDel == 0 && x.Id == _fee.GroupId);
+                    if (groupInfo == null)
+                    {
+                        _sqlSugar.RollbackTran();
+
+                        result.Msg = $"请选择有效的团组名称!";
+                        return result;
+                    }
+                }
+
+
                 //if (priceTypeInfo.STid == 90)
                 //{
                 //    _fee.FAudit = 1;