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