<?xml version="1.0" encoding="UTF-8"?> 
 | 
<WebLink xmlns="http://soap.sforce.com/2006/04/metadata"> 
 | 
    <fullName>Accessory_Add</fullName> 
 | 
    <availability>online</availability> 
 | 
    <displayType>massActionButton</displayType> 
 | 
    <linkType>javascript</linkType> 
 | 
    <masterLabel>附属品追加</masterLabel> 
 | 
    <openType>onClickJavaScript</openType> 
 | 
    <protected>false</protected> 
 | 
    <requireRowSelection>true</requireRowSelection> 
 | 
    <url>var ids = {!GETRECORDIDS($ObjectType.Consum_Apply_Equipment_Set_Detail__c)}; 
 | 
if (ids.length == 0) { 
 | 
    alert("请选择一个耗材备品配套一览明细信息"); 
 | 
} else { 
 | 
    window.open("/apex/AccessoryAdd?recid=" + ids[0], "_top"); 
 | 
}</url> 
 | 
</WebLink> 
 |