appendCapabilityAssessment
parent
73d01a0a28
commit
155049e659
|
|
@ -29,7 +29,7 @@ public enum ProfessionalCapabilitySourceEnum {
|
|||
return null;
|
||||
}
|
||||
for (ProfessionalCapabilitySourceEnum item : values()) {
|
||||
if (item.getValue().equals(name)) {
|
||||
if (item.getLabel().equals(name)) {
|
||||
return item;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ public enum SafetyCategoryEnum {
|
|||
return null;
|
||||
}
|
||||
for (SafetyCategoryEnum item : values()) {
|
||||
if (item.getValue().equals(name)) {
|
||||
if (item.getLabel().equals(name)) {
|
||||
return item;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue