张宇恒
2022-12-23 b4b8a2df1f478030bb321b6ac558f13fbbffbb07
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<WebLink xmlns="http://soap.sforce.com/2006/04/metadata">
    <fullName>SelectProduct2CIC</fullName>
    <availability>online</availability>
    <displayType>massActionButton</displayType>
    <linkType>javascript</linkType>
    <masterLabel>新建CIC/产品</masterLabel>
    <openType>onClickJavaScript</openType>
    <protected>false</protected>
    <requireRowSelection>false</requireRowSelection>
    <url>// 必ず iframeからと想定
var pathnames = window.self.location.pathname.split(&apos;/&apos;);
if (pathnames[1]==&quot;emptyHtmlDoc.html&quot;) {
    window.open(&quot;/apex/SelectProduct2CIC?cicid={!URLENCODE(Case.Id)}&quot;, &quot;_parent&quot;);
}
else {
    window.open(&quot;/apex/SelectProduct2CIC?cicid={!URLENCODE(Case.Id)}&quot;, &quot;_self&quot;);
}</url>
</WebLink>