人员卡片,排序、去除附件字段
This commit is contained in:
parent
fcf177c194
commit
f928ea04d5
|
|
@ -61,5 +61,6 @@
|
|||
<if test="null!=parentId and parentId !=0">
|
||||
and viewtype = 1
|
||||
</if>
|
||||
order by scopeorder
|
||||
</select>
|
||||
</mapper>
|
||||
|
|
@ -186,6 +186,11 @@ public class HrmPersonnelCardServiceImpl extends Service implements HrmPersonnel
|
|||
continue;
|
||||
}
|
||||
JSONObject hrmFieldConf = hfm.getHrmFieldConf(fieldName);
|
||||
String fieldhtmltype = hrmFieldConf.getString("fieldhtmltype");
|
||||
if("6".equals(fieldhtmltype)){
|
||||
// 去除附件类型字段
|
||||
continue;
|
||||
}
|
||||
String fieldLabel = Util.toScreen(SystemEnv.getHtmlLabelName(hrmFieldConf.getInt("fieldlabel"), user.getLanguage()), user.getLanguage());
|
||||
if ("resourceimageid".equals(fieldName) || "messagerurl".equals(fieldName) || "职等职级".equals(fieldLabel)) {
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Reference in New Issue