- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
public boolean getOrgType() throws SIRException {
int type = StoredProcedures.getOrgType(getOrgId());
boolean result = true;
try {
if (type == 3 || type == 4) {
result = false;
}
return result;
} catch (NumberFormatException e) {
log.error(e.getMessage(), e);
throw new SIRException(e.getMessage(), "Ошибка кода организации");
} catch (Exception e) {
log.error(e.getMessage(), e);
throw new SIRException(e.getMessage(), "Ошибка кода организации");
}
}