在 `DailyFeePaymentRepository.cs` 文件中,新增子费用类型 `会务部报销费用`,ID 为 1451。更新了方法 `GMAutoApprovalType` 的文档注释,并在 `subIds` 列表中包含该费用类型,以确保在查询中正确使用。
@@ -175,6 +175,7 @@ namespace OASystem.Infrastructure.Repositories.Financial
/// 104 Parent 团组费用
/// 672 Sub 办公费用-信息部申请费用
/// 1433 Sub 团组/会务储备物资采购
+ /// 1451 Sub 会务部报销费用
/// </summary>
/// <param name="typeId"></param>
/// <returns></returns>
@@ -191,6 +192,7 @@ namespace OASystem.Infrastructure.Repositories.Financial
{
672, //办公费用-信息部申请费用
1433, //团组/会务储备物资采购
+ 1451, //会务部报销费用
};
var parentTypeDatas = await _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0 && parentIds.Contains(x.STid)).ToListAsync();