岗位导入增加备注 多语言字段不支持导入

宜通世纪科技股份有限公司
Chengliang 3 weeks ago
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…
Cancel
Save