-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathapexOutputLink.vfp.html
26 lines (24 loc) · 1.45 KB
/
apexOutputLink.vfp.html
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
<apex:outputLink target="_top" value="{!IF(AND(isUserInNewNoteGroup),
'/apex/NoteApprovalProcessPage',
'/p/process/ProcessInstanceWorkitemWizardStageManager'))?id=
{!item_to_approve.processid}&
noteID={!item_to_approve.id}&
notetype={!item_to_approve.notetype}"
rendered="{!(item_to_approve.notetype == 'Relationship Note')}">
Approve/Reject</apex:outputLink>
<apex:outputLink target="_top" value="{!IF(AND(isUserInNewNoteGroup, item_to_approve.noteV2),
'/apex/InvestmentNoteApproval',
'/p/process/ProcessInstanceWorkitemWizardStageManager')}?id=
{!item_to_approve.processid}&
noteID={!item_to_approve.id}&
notetype={!item_to_approve.notetype}"
rendered={!(item_to_approve.notetype == 'Investment Note')}">
Approve/Reject</apex:outputLink>
<apex:outputLink target="_top" value="{!IF(AND(isUserInNewNoteGroup),
'/apex/ApproveMassEmailSendRequestPage',
'/p/process/ProcessInstanceWorkitemWizardStageManager')}?id=
{!item_to_approve.processid}&
noteID={!item_to_approve.id}&
notetype={!item_to_approve.notetype}"
rendered={!(item_to_approve.notetype == 'Approve Mass Email')}">
Approve/Reject</apex:outputLink>