获取单据的分录下拉列表的标题和值原创
1人赞赏了该文章
360次浏览
编辑于2024年07月12日 08:58:12
public static Map<String, Object> getDownList(String fromMark(单据标识), String entry(单据体标识),String fieldMark(下拉列表字段标识)) { DynamicObject dynamicObject = BusinessDataServiceHelper.newDynamicObject(fromMark); //单据所有标识 DataEntityPropertyCollection properties = dynamicObject.getDataEntityType().getProperties(); HashMap<String, Object> mapSetResult = new HashMap<>(); for (IDataEntityProperty property : properties) { if (property instanceof EntryProp){ String entryName = property.getName(); if (entry.equals(entryName) ){ DataEntityPropertyCollection entryProperties = ((EntryProp) property).getDynamicCollectionItemPropertyType().getProperties(); for (IDataEntityProperty entryProperty : entryProperties) { String fileName = entryProperty.getName(); if(fileName.equals(fieldMark)){ ComboProp iDataEntityProperty = (ComboProp) entryProperty; for (ValueMapItem comboItem : iDataEntityProperty.getComboItems()) { String key = comboItem.getValue(); String value = String.valueOf(comboItem.getName()); if (!StringUtils.isEmpty(value)) { mapSetResult.put(key, value); } } } } } } }
赞 1
1人点赞
还没有人点赞,快来当第一个点赞的人吧!
打赏
0人打赏
还没有人打赏,快来当第一个打赏的人吧!
推荐阅读