<apex:page standardController="Maintenance_Product_Data__c" showHeader="true" sidebar="true" lightningStylesheets="true">
|
<apex:stylesheet value="{!URLFOR($Resource.StyleUtilColorCss)}"/>
|
<script type="text/javascript">
|
function init() {
|
// var test = window.location.search;
|
var str = '/apex/MaintenanceProductData?cpn1=*';
|
console.log("123124215125");
|
if(getParam('RecordType') != null){
|
str += '&RecordType='+getParam('RecordType');
|
}
|
if(getParam('recordTypeId') != null){
|
str += '&RecordType='+getParam('recordTypeId');
|
}
|
if(getParam('CMRT') != null){
|
str += '&CMRT='+getParam('CMRT');
|
}
|
if(getParam('retURL') != null){
|
str += '&retURL='+getParam('retURL');
|
}
|
if(getParam('p8') != null){
|
str += '&p8='+getParam('p8');
|
}
|
console.log(getParam({! "'" + $Label.DataManage_1 + "'"}));//niwu CF00N10000002DIsr -->DataManage_1
|
if(getParam({! "'" + $Label.DataManage_1 + "'"}) != null){
|
str += '&{!$Label.DataManage_1}='+getParam({! "'" + $Label.DataManage_1 + "'"});
|
}
|
if(getParam('ent') != null){
|
str += '&ent='+getParam('ent');
|
}
|
if(getParam({! "'" + $Label.DataManage_2 + "'"}) != null){ // DataManage_2 - CF00N10000002DIsr_lkid
|
str += '&{!$Label.DataManage_2}='+getParam({! "'" + $Label.DataManage_2 + "'"});
|
}
|
str += '&nooverride=1';
|
console.log('str>>>>' + str);
|
window.open(str,'_self');
|
|
}
|
function getParam(paramName) {
|
paramValue = "", isFound = !1;
|
console.log(this.location.search);
|
if (this.location.search.indexOf("?") == 0 && this.location.search.indexOf("=") > 1) {
|
arrSource = unescape(this.location.search).substring(1, this.location.search.length).split("&"), i = 0;
|
while (i < arrSource.length && !isFound) arrSource[i].indexOf("=") > 0 && arrSource[i].split("=")[0].toLowerCase() == paramName.toLowerCase() && (paramValue = arrSource[i].split("=")[1], isFound = !0), i++
|
}
|
return paramValue == "" && (paramValue = null), paramValue
|
}
|
document.addEventListener("DOMContentLoaded", function(event) {
|
init();
|
});
|
</script>
|
<body onload="init()">
|
|
</body>
|
</apex:page>
|