WindChill BOM结构相关

public class BomUtil {
	/**
	 * @param parentPart
	 * @return
	 * @throws WTException
	 * @description  取第一层子部件对象
	 */
	public static ArrayList<WTPart> getAllChildrenParts(WTPart parentPart) throws WTException {
		boolean access = SessionServerHelper.manager.setAccessEnforced(false);
		ArrayList<WTPart> childparts = new ArrayList<WTPart>();
		try {
			ConfigSpec config = new LatestConfigSpec();//最新配置
			QueryResult qr = WTPartHelper.service.getUsesWTParts(parentPart, config);
			while (qr.hasMoreElements()) {
				Persistable[] pts = (Persistable[]) qr.nextElement();
				if ((pts instanceof Persistable[]) && (pts[1] instanceof WTPart)) { //数组0 是link关系对象
					WTPart childPart = (WTPart) pts[1];
					childparts.add(childPart);
				}
			}
		} catch (Exception e) {
			e.printStackTrace();
		} finally {
			SessionServerHelper.manager.setAccessEnforced(access);
		}
		return childparts;
	}
	/**
	 * @Title:getAllChildPart
	 * @param part
	 * @param childList
	 * @throws Exception
	 * @description 递归取所有的子部件对象
	 * @date:2020年1月15日上午10:51:40
	 */
	public static void getAllChildPart(WTPart part , List<WTPart> childList) throws Exception {
		ArrayList<WTPart> allChildrenParts = getAllChildrenParts(part);
		childList.addAll(allChildrenParts);
		for (WTPart wtPart : allChildrenParts) {
			getAllChildPart(wtPart, childList);
		}
	}
	/**
	 * 
	 * @Title: getNodes   
	 * @Description: TODO(获取参考文档 和 说明文档)   
	 * @param: @param partList
	 * @param: @param docLists
	 * @param: @return
	 * @param: @throws WTException      
	 * @return: List<WTDocument>      
	 * @throws
	 */
	public static List<WTDocument> getNodes(List<WTPart> partList, List<WTDocument> docLists) throws WTException {
		for (WTPart part : partList) {
			List<WTDocument> descDocsByPart = PartUtil.getDescDocsByPart(part); //说明文档
			if (!StringUtils.isEmpty(descDocsByPart)) {
				docLists.addAll(descDocsByPart);
			}
			List<WTDocumentMaster> refDocMastersByPart = PartUtil.getRefDocMastersByPart(part); //参考文档
			if (!StringUtils.isEmpty(refDocMastersByPart)) {
				for (WTDocumentMaster object : refDocMastersByPart) {
					WTDocument latestVersionByMaster = (WTDocument)CommonUtils.getLatestVersionByMaster(object);
					docLists.add(latestVersionByMaster);
				}
			}
		}
		return docLists;
	}
}
  • 3
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 5
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值