|
|
@ -356,7 +356,12 @@ public class TbsCostApplyOperationServiceImpl implements SeeYonOperationService |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
//移除非申请状态异常
|
|
|
|
LambdaQueryWrapper<TbsBudgetLog> budgetLogRmLqw = new LambdaQueryWrapper<>(); |
|
|
|
budgetLogRmLqw.eq(TbsBudgetLog::getCostApplyId,costApply.getId()); |
|
|
|
budgetLogRmLqw.ne(TbsBudgetLog::getOptType,1); |
|
|
|
tbsBudgetLogMapper.delete(budgetLogRmLqw); |
|
|
|
//重新合计申请状态异常
|
|
|
|
LambdaQueryWrapper<TbsBudgetLog> budgetLogLqw = new LambdaQueryWrapper<>(); |
|
|
|
budgetLogLqw.eq(TbsBudgetLog::getCostApplyId,costApply.getId()); |
|
|
|
budgetLogLqw.eq(TbsBudgetLog::getOptType,1); |
|
|
|