binxie
2024-01-22 102afa21c115e8c8b9333a326c3d1af08fe76faf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<WebLink xmlns="http://soap.sforce.com/2006/04/metadata">
    <fullName>Quotation_Product_New</fullName>
    <availability>online</availability>
    <displayType>button</displayType>
    <linkType>javascript</linkType>
    <masterLabel>报价产品.</masterLabel>
    <openType>onClickJavaScript</openType>
    <protected>false</protected>
    <url>var foo = function() { 
 
var Currency = &apos;{!Opportunity.CurrencyIsoCode}&apos;; 
var OppID = &apos;{!Opportunity.Id}&apos;; 
 
 
if (Currency == &apos;CNY&apos;){ 
var url = &apos;/00O10000002jviu?pv0=&apos; + OppID; 
else if (Currency == &apos;USD&apos;){ 
var url = &apos;/00O10000005Ju6L?pv0=&apos; + OppID; 
 
window.open(url); 
 
 
foo();</url>
</WebLink>