You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.8 KiB
51 lines
1.8 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<?eclipse version="3.4"?>
|
|
<plugin>
|
|
|
|
<extension
|
|
point="org.eclipse.ui.commands">
|
|
<!-- 功能菜单 -->
|
|
<command name="BOM批量管理" id="BOMManagement"></command>
|
|
<command name="批量创建物料" id="MateriaBatchCreate"></command>
|
|
<command name="批量创建BOM" id="BOMBatchCreate"></command>
|
|
|
|
<!-- 右键菜单 -->
|
|
<command name="批量新建流程" id="FlowBatchCreate"></command>
|
|
|
|
</extension>
|
|
|
|
|
|
<extension
|
|
point="org.eclipse.ui.handlers">
|
|
|
|
<handler commandId="BOMManagement" class="com.connor.jd.plm.handlers.BOMManagementHandler"></handler>
|
|
<handler commandId="MateriaBatchCreate" class="com.connor.fh.plm.handlers.MateriaBatchCreateHandler"></handler>
|
|
<handler commandId="BOMBatchCreate" class="com.connor.fh.plm.handlers.BOMBatchCreateHandler"></handler>
|
|
<handler commandId="FlowBatchCreate" class="com.connor.fh.plm.handlers.FlowBatchCreateHandler"></handler>
|
|
|
|
|
|
</extension>
|
|
|
|
<extension
|
|
point="org.eclipse.ui.menus">
|
|
|
|
<menuContribution locationURI="menu:org.eclipse.ui.main.menu?after=additions">
|
|
<menu label="BOM批量菜单" id="cn.net.connor.kwc.plm.seconddevelop.menus">
|
|
<command id="BOMManagement" commandId="BOMManagement"></command>
|
|
</menu>
|
|
<menu label="批处理功能菜单" id="cn.net.connor.fh.plm.seconddevelop.menus">
|
|
<command id="MateriaBatchCreate" commandId="MateriaBatchCreate"></command>
|
|
<command id="BOMBatchCreate" commandId="BOMBatchCreate"></command>
|
|
</menu>
|
|
|
|
|
|
|
|
</menuContribution>
|
|
<!-- 右键-->
|
|
<menuContribution locationURI="popup:org.eclipse.ui.popup.any?after=additions">
|
|
<command id="FlowBatchCreate" commandId="FlowBatchCreate"/>
|
|
</menuContribution>
|
|
</extension>
|
|
|
|
</plugin>
|