<?xml version="1.0" encoding="UTF-8"?>
|
<WebLink xmlns="http://soap.sforce.com/2006/04/metadata">
|
<fullName>CreateAssessmentReport</fullName>
|
<availability>online</availability>
|
<displayType>massActionButton</displayType>
|
<linkType>javascript</linkType>
|
<masterLabel>新建授课/考核报告</masterLabel>
|
<openType>onClickJavaScript</openType>
|
<protected>false</protected>
|
<requireRowSelection>true</requireRowSelection>
|
<url>{!RequireScript("/soap/ajax/51.0/connection.js")}
|
{!RequireScript("/soap/ajax/51.0/apex.js")}
|
//2021-10-21 gwy 版本更改为51.0
|
var foo = function(){
|
var status = "{!Campaign.Status}";
|
if(status == '公开中'){
|
window.open( "/apex/AssessmentReport?camid={!URLENCODE(Campaign.Id)}", "_top");
|
}else{
|
alert("只有批准后才能创建报告!");
|
}
|
}
|
foo();</url>
|
</WebLink>
|