|
|
@@ -170,7 +170,7 @@ public class DictionarydetailController {
|
|
|
if(dictionaryItem!=null) {
|
|
|
if ("job_state".equals(dictionaryItem.getCode())) {
|
|
|
Integer isNormal = 1;
|
|
|
- if (dictionaryDetail.getExtendField1().equals("0")) {
|
|
|
+ if ("0".equals(dictionaryDetail.getExtendField1())) {
|
|
|
isNormal = 0;
|
|
|
}
|
|
|
teacherbaseManagerService.changeIsNormal(dictionaryDetail.getCode(), isNormal);
|
|
|
@@ -178,7 +178,7 @@ public class DictionarydetailController {
|
|
|
|
|
|
if("archives_status".equals(dictionaryItem.getCode())){
|
|
|
Integer isNormal = 1;
|
|
|
- if (dictionaryDetail.getExtendField1().equals("0")) {
|
|
|
+ if ("0".equals(dictionaryDetail.getExtendField1())) {
|
|
|
isNormal = 0;
|
|
|
}
|
|
|
baseStudentService.changeIsNormal(dictionaryDetail.getCode(), isNormal);
|