19626
2023-10-23 1727a4f4d02e429475608e60f142a63bc24127bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public with sharing class ISO_DemandOperAndDemonsJumpController {
    
    public String lid { get; private set; }
    public IS_Opportunity_Demand__c isid;
 
    public ISO_DemandOperAndDemonsJumpController(IS_Opportunity_Demand__c iso){
        this.isid = iso;
    }
    public ISO_DemandOperAndDemonsJumpController(ApexPages.StandardController controller){
        this.isid = (IS_Opportunity_Demand__c)controller.getRecord();
    }
    public void init() {
        String Id = ApexPages.currentPage().getParameters().get('Id');
        String oppId = ApexPages.currentPage().getParameters().get('oppId');
        //IS_Opportunity_Demand__c isod = [select Id, Operating_Room_Count__c,Opportunity_ID__c,Demonstration_Number__c from IS_Opportunity_Demand__c where Id = :Id];
        lid = 'ISO_DemandOperAndDemonsNew?id='+Id+'&OppoerID='+oppId;
    }
}