liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
public without sharing class StandardFieldDefaultsController {
 
    public String SObjId{get;set;}
    public String SObjName{get;set;}
    public String linkId{get;set;}
    public String Pagefrom{get;set;}
    public String Pageto{get;set;}
    
    public StandardFieldDefaultsController() {
 
    }
 
    public StandardFieldDefaultsController(ApexPages.StandardController controller) {
        String sobject_type = controller.getRecord().getSObjectType().getDescribe().getName();
        if (sobject_type == 'LastbuyProduct__c') {
            Apexpages.currentPage().getParameters().put('Pageto', 'LastbuyProduct');
        }
    }
 
    public PageReference init(){
 
        this.SObjId =Apexpages.currentPage().getParameters().get('SObjId');
        this.SObjName = Apexpages.currentPage().getParameters().get('SObjName');
        this.linkId = Apexpages.currentPage().getParameters().get('linkId');
        this.Pagefrom =Apexpages.currentPage().getParameters().get('Pagefrom');
        this.Pageto =Apexpages.currentPage().getParameters().get('Pageto');
 
        //'retURL=%2F' + this.SObjId + 
        String url = '';
        switch on Pageto {
            when 'LastbuyProduct'{
                url = '/' + System.Label.LastBuyUrl + '/e?' + 'Name=*';
                if ('Product'.equals(this.Pagefrom)) {
                    url += '&CF' + this.linkId + '=' + this.SObjName + '&CF' + this.linkId + '_lkid=' + this.SObjId;
                }
            }
        }
        url += '&nooverride=1';   //跳转到标准页面用
        PageReference pg = new Pagereference(System.Url.getSalesforceBaseUrl().toExternalForm() + url);
        pg.setRedirect(true);
        return pg;
    }
}