Guest User

Untitled

a guest
Oct 20th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. if('{!Opportunity.Commitment_Type__c}' == 'Portfolio'){
  2. if('{!CONTAINS(Opportunity.RecordTypeId,$Label.ENT_CommitRT_ID)}'){
  3. window.open('/apex/VF_opportunityProductEntry?id={!Opportunity.Id}')
  4. }
  5. }
  6. else if('{!CONTAINS(Opportunity.RecordTypeName_ENT__c,"Premier")}'){
  7.  
  8. if(window.location.href.indexOf("premierreseller") > -1){
  9. window.open('/premierreseller/apex/opportunityProductEntry?id={!Opportunity.Id}')
  10. }
  11. else {
  12. window.open('/apex/opportunityProductEntry?id={!Opportunity.Id}')
  13. }
  14. }
  15.  
  16. else if(window.location.href.indexOf("premierreseller") > -1){
  17. window.open('/premierreseller/p/opp/SelectSearch?addTo={!Opportunity.Id}&retURL=%2F{!Opportunity.Id}')
  18. }
  19.  
  20. else if('{!CONTAINS(Opportunity.RecordTypeId,$Label.ENT_ExclusiveRT_ID)}'){
  21. window.open('/apex/opportunityProductEntry_Exclusive?id={!Opportunity.Id}')
  22. }
  23.  
  24. else{
  25. window.open('/p/opp/SelectSearch?addTo={!Opportunity.Id}&retURL=%2F{!Opportunity.Id}')
  26. }
Add Comment
Please, Sign In to add comment