|
@@ -169,8 +169,8 @@ public class ExemptionMattersServiceImpl extends ServiceImpl<ExemptionMattersMap
|
|
PaymentInfo paymentInfo = paymentInfoService.getById(paymentApply.getPaymentInfoId());
|
|
PaymentInfo paymentInfo = paymentInfoService.getById(paymentApply.getPaymentInfoId());
|
|
|
|
|
|
List<PaymentCondition> conditions = paymentApplyService.findConditions(paymentApplyId);
|
|
List<PaymentCondition> conditions = paymentApplyService.findConditions(paymentApplyId);
|
|
- boolean anyMatch = conditions.stream().anyMatch(r -> r.getFollow().equals("1"));
|
|
|
|
- if (anyMatch){
|
|
|
|
|
|
+ boolean anyMatch = conditions.stream().anyMatch(r -> r.getFollow() != null && r.getFollow().equals("1"));
|
|
|
|
+ if (anyMatch) {
|
|
//获取项目经理
|
|
//获取项目经理
|
|
ProjectInformationVo projectInformationVo = projectInformationService.getByBusinessNo(paymentInfo.getBusinessNo());
|
|
ProjectInformationVo projectInformationVo = projectInformationService.getByBusinessNo(paymentInfo.getBusinessNo());
|
|
ProjectInformation projectInformation = projectInformationService.get(projectInformationVo.getProjectInformationId());
|
|
ProjectInformation projectInformation = projectInformationService.get(projectInformationVo.getProjectInformationId());
|