<?xml version="1.0" encoding="UTF-8"?>
|
<WebLink xmlns="http://soap.sforce.com/2006/04/metadata">
|
<fullName>CB_LBP_New</fullName>
|
<availability>online</availability>
|
<displayType>massActionButton</displayType>
|
<linkType>javascript</linkType>
|
<masterLabel>新建</masterLabel>
|
<openType>onClickJavaScript</openType>
|
<protected>false</protected>
|
<requireRowSelection>false</requireRowSelection>
|
<url>{!REQUIRESCRIPT('/soap/ajax/51.0/connection.js')}
|
{!REQUIRESCRIPT('/soap/ajax/51.0/apex.js')}
|
var foo = function(){
|
var url = '/apex/StandardFieldDefaults?';
|
|
var product = '{!Product2.Id}';
|
if (product != undefined && product != '') {
|
url = url + 'SObjId=' + '{!URLENCODE(Product2.Id)}' + '&SObjName=' + '{!URLENCODE(Product2.Name)}' + '&linkId=00N10000009HD8q' + '&Pagefrom=Product';
|
}
|
|
url = url + '&Pageto=LastbuyProduct';
|
window.open(url);
|
}
|
foo();</url>
|
</WebLink>
|