<?xml version="1.0" encoding="UTF-8"?> 
 | 
<WebLink xmlns="http://soap.sforce.com/2006/04/metadata"> 
 | 
    <fullName>cancelApply</fullName> 
 | 
    <availability>online</availability> 
 | 
    <displayType>button</displayType> 
 | 
    <linkType>javascript</linkType> 
 | 
    <masterLabel>取消</masterLabel> 
 | 
    <openType>onClickJavaScript</openType> 
 | 
    <protected>false</protected> 
 | 
    <url>{!REQUIRESCRIPT('/soap/ajax/51.0/connection.js')} 
 | 
{!REQUIRESCRIPT('/soap/ajax/51.0/apex.js')} 
 | 
//2021-10-22 gwy 版本更改为51.0 
 | 
if (confirm("确定取消?")) { 
 | 
    var rs = sforce.apex.execute("TransferApplyWebService","cancelApply",{taId:'{!TransferApply__c.Id}'}); 
 | 
    if(rs == '1'){ 
 | 
        alert('取消成功'); 
 | 
        window.location.href = window.location; 
 | 
    } 
 | 
    else{ 
 | 
        alert(rs); 
 | 
    } 
 | 
}</url> 
 | 
</WebLink> 
 |