пофиксил баг при рефакторинге условия; см. коммит 53320c53
This commit is contained in:
parent
b225b1accb
commit
aaf3543dd0
1 changed files with 2 additions and 1 deletions
|
|
@ -152,7 +152,8 @@ public class InspectionObligationsV2Action extends ReviseStage1Action {
|
|||
boolean sessTypesBySecuritiesReg = SessionType.FINL.equals(sessionType) ||
|
||||
SessionType.MEDM.equals(sessionType) ||
|
||||
(SessionType.UNIT.equals(sessionType) && !Section.FOND.equalsByKey(obligation.getSection()));
|
||||
if (sessTypesBySecuritiesReg || SessionType.PAYM.equals(sessionType)) {
|
||||
boolean S_InstrTypeRegistry = RegistryInstrumentType.S.equalsByKey(obligation.getRegistryInstrumentType());
|
||||
if ((sessTypesBySecuritiesReg && S_InstrTypeRegistry) || SessionType.PAYM.equals(sessionType)) {
|
||||
checkResults.add(new CheckResult(obligation, false));
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue