岗位导入增加备注 多语言字段不支持导入
This commit is contained in:
parent
45bf0438b0
commit
2ec9e55d8e
|
|
@ -255,6 +255,10 @@ public class JobInfoImportUtil {
|
|||
other.put("index", (lsPromptLabel.size() + 1));
|
||||
other.put("value", "注意:分部和部门存在多层级时候用 > 分割");
|
||||
itemList.add(other);
|
||||
Map<String, Object> other1 = new HashMap<>();
|
||||
other1.put("index", (lsPromptLabel.size() + 2));
|
||||
other1.put("value", "注意:如果必填字段存在多语言不支持导入");
|
||||
itemList.add(other1);
|
||||
groupItem.put("items", itemList);
|
||||
lsGroup.add(groupItem);
|
||||
return lsGroup;
|
||||
|
|
|
|||
|
|
@ -119,7 +119,7 @@ public class WorkflowStaffOperateAction implements Action {
|
|||
MapperProxyFactory.getProxy(StaffMapper.class).insertIgnoreNull(staffPO);
|
||||
});
|
||||
|
||||
return Action.FAILURE_AND_CONTINUE;
|
||||
return Action.SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue