|
@@ -1092,8 +1092,8 @@ public class PartyAServiceImpl implements PartyAService {
|
|
SettleAmountMonitorOutput deptMonitorOutput = deptAmountMonitor.stream().filter(item -> item.getUserId()
|
|
SettleAmountMonitorOutput deptMonitorOutput = deptAmountMonitor.stream().filter(item -> item.getUserId()
|
|
.equals(member.getUserId())).findFirst().orElse(null);
|
|
.equals(member.getUserId())).findFirst().orElse(null);
|
|
|
|
|
|
- SettleAmountMonitorOutput yaoyiMonitorOutput = yaoyiAmountMonitor.stream().filter(item -> item.getUserId()
|
|
|
|
- .equals(member.getUserId())).findFirst().orElse(null);
|
|
|
|
|
|
+ SettleAmountMonitorOutput yaoyiMonitorOutput = yaoyiAmountMonitor.stream().filter(item -> item.getIdCardNumber()
|
|
|
|
+ .equals(member.getIdCardNumber())).findFirst().orElse(null);
|
|
|
|
|
|
MonitoringIndicator monitoringIndicator = monitoringIndicatorService.getBySubType(note.getSubType());
|
|
MonitoringIndicator monitoringIndicator = monitoringIndicatorService.getBySubType(note.getSubType());
|
|
SysDeptSub sysDeptSub = sysDeptSubService.getOne(Wrappers.<SysDeptSub>lambdaQuery()
|
|
SysDeptSub sysDeptSub = sysDeptSubService.getOne(Wrappers.<SysDeptSub>lambdaQuery()
|
|
@@ -1321,8 +1321,8 @@ public class PartyAServiceImpl implements PartyAService {
|
|
SettleAmountMonitorOutput deptMonitorOutput = deptAmountMonitor.stream().filter(item -> item.getUserId()
|
|
SettleAmountMonitorOutput deptMonitorOutput = deptAmountMonitor.stream().filter(item -> item.getUserId()
|
|
.equals(String.valueOf(user.getUserId()))).findFirst().orElse(null);
|
|
.equals(String.valueOf(user.getUserId()))).findFirst().orElse(null);
|
|
|
|
|
|
- SettleAmountMonitorOutput yaoyiMonitorOutput = yaoyiAmountMonitor.stream().filter(item -> item.getUserId()
|
|
|
|
- .equals(String.valueOf(user.getUserId()))).findFirst().orElse(null);
|
|
|
|
|
|
+ SettleAmountMonitorOutput yaoyiMonitorOutput = yaoyiAmountMonitor.stream().filter(item -> item.getIdCardNumber()
|
|
|
|
+ .equals(user.getIdCardNumber())).findFirst().orElse(null);
|
|
|
|
|
|
MonitoringIndicator monitoringIndicator =
|
|
MonitoringIndicator monitoringIndicator =
|
|
monitoringIndicatorService.getBySubType(SubjectTypeEnum.TYPE_SHUIBANGYUN.getCode());
|
|
monitoringIndicatorService.getBySubType(SubjectTypeEnum.TYPE_SHUIBANGYUN.getCode());
|