高章伟
2022-02-18 650847118307a1c9ae0ada15b7c69bbf5792c54c
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<apex:page controller="PersonalProcessInstanceController" showHeader="false" sidebar="false" action="{!init}" id="allPage">
    <apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}"/>
    <apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}"/>
    <apex:includeScript value="{!URLFOR($Resource.PleaseWaitDialog)}"/>
 
    <apex:form id="allForm">
        <apex:pageBlock id="accountBlock" title="客户审批">
            <table style="border-style:none;" border="0" width="750px">
                <colgroup>
                    <col width="20%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                </colgroup>
                <tr>
                    <th style="text-align: left;">操作</th>
                    <th style="text-align: left;">相关项</th>
                    <th style="text-align: left;">提交人姓名</th>
                    <th style="text-align: left;">提交日期</th>
                    <th style="text-align: left;">经过天数</th>
                    <th style="text-align: left;">原审批人</th>
                </tr>
                <apex:repeat value="{!accPIList}" var="pi">
                <tr>
                    <td style="text-align: left;"><a href="/{!URLENCODE(pi.piw.id)}/e?et=REASSIGN&retURL=%2Fhome%2Fhome.jsp">重新分配</a> | <a href="/p/process/ProcessInstanceWorkitemWizardStageManager?id={!URLENCODE(pi.piw.id)}">批准/拒绝</a></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.ProcessInstance.TargetObjectId}" style="width: 95%"/></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.ProcessInstance.SubmittedbyId}" style="width: 95%"/></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.CreatedDate}" style="width: 95%;"/></td>
                    <td style="text-align: left;"><apex:outputText value="{!pi.elapsedTimeInDays}" style="width: 95%;"/></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.OriginalActorId}" style="width: 95%"/></td>
                </tr>
            </apex:repeat>
            </table>
        </apex:pageBlock>
        <apex:pageBlock id="contactBlock" title="联系人审批">
            <table style="border-style:none;" border="0" width="750px">
                <colgroup>
                    <col width="20%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                </colgroup>
                <tr>
                    <th style="text-align: left;">操作</th>
                    <th style="text-align: left;">相关项</th>
                    <th style="text-align: left;">提交人姓名</th>
                    <th style="text-align: left;">提交日期</th>
                    <th style="text-align: left;">经过天数</th>
                    <th style="text-align: left;">原审批人</th>
                </tr>
                <apex:repeat value="{!conPIList}" var="pi">
                <tr>
                    <td style="text-align: left;"><a href="/{!URLENCODE(pi.piw.id)}/e?et=REASSIGN&retURL=%2Fhome%2Fhome.jsp">重新分配</a> | <a href="/p/process/ProcessInstanceWorkitemWizardStageManager?id={!URLENCODE(pi.piw.id)}">批准/拒绝</a></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.ProcessInstance.TargetObjectId}" style="width: 95%"/></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.ProcessInstance.SubmittedbyId}" style="width: 95%"/></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.CreatedDate}" style="width: 95%;"/></td>
                    <td style="text-align: left;"><apex:outputText value="{!pi.elapsedTimeInDays}" style="width: 95%;"/></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.OriginalActorId}" style="width: 95%"/></td>
                </tr>
            </apex:repeat>
            </table>
        </apex:pageBlock>
        <apex:pageBlock id="opportuntyBlock" title="询价审批">
            <table style="border-style:none;" border="0" width="750px">
                <colgroup>
                    <col width="20%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                </colgroup>
                <tr>
                    <th style="text-align: left;">操作</th>
                    <th style="text-align: left;">相关项</th>
                    <th style="text-align: left;">提交人姓名</th>
                    <th style="text-align: left;">提交日期</th>
                    <th style="text-align: left;">经过天数</th>
                    <th style="text-align: left;">原审批人</th>
                </tr>
                <apex:repeat value="{!oppPIList}" var="pi">
                <tr>
                    <td style="text-align: left;"><a href="/{!URLENCODE(pi.piw.id)}/e?et=REASSIGN&retURL=%2Fhome%2Fhome.jsp">重新分配</a> | <a href="/p/process/ProcessInstanceWorkitemWizardStageManager?id={!URLENCODE(pi.piw.id)}">批准/拒绝</a></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.ProcessInstance.TargetObjectId}" style="width: 95%"/></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.ProcessInstance.SubmittedbyId}" style="width: 95%"/></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.CreatedDate}" style="width: 95%;"/></td>
                    <td style="text-align: left;"><apex:outputText value="{!pi.elapsedTimeInDays}" style="width: 95%;"/></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.OriginalActorId}" style="width: 95%"/></td>
                </tr>
            </apex:repeat>
            </table>
        </apex:pageBlock>
        <apex:pageBlock id="orderBlock" title="合同审批">
            <table style="border-style:none;" border="0" width="750px">
                <colgroup>
                    <col width="20%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                </colgroup>
                <tr>
                    <th style="text-align: left;">操作</th>
                    <th style="text-align: left;">相关项</th>
                    <th style="text-align: left;">提交人姓名</th>
                    <th style="text-align: left;">提交日期</th>
                    <th style="text-align: left;">经过天数</th>
                    <th style="text-align: left;">原审批人</th>
                </tr>
                <apex:repeat value="{!odrPIList}" var="pi">
                <tr>
                    <td style="text-align: left;"><a href="/{!URLENCODE(pi.piw.id)}/e?et=REASSIGN&retURL=%2Fhome%2Fhome.jsp">重新分配</a> | <a href="/p/process/ProcessInstanceWorkitemWizardStageManager?id={!URLENCODE(pi.piw.id)}">批准/拒绝</a></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.ProcessInstance.TargetObjectId}" style="width: 95%"/></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.ProcessInstance.SubmittedbyId}" style="width: 95%"/></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.CreatedDate}" style="width: 95%;"/></td>
                    <td style="text-align: left;"><apex:outputText value="{!pi.elapsedTimeInDays}" style="width: 95%;"/></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.OriginalActorId}" style="width: 95%"/></td>
                </tr>
            </apex:repeat>
            </table>
        </apex:pageBlock>
        <apex:pageBlock id="othersBlock" title="其他审批">
            <table style="border-style:none;" border="0" width="750px">
                <colgroup>
                    <col width="20%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                    <col width="16%"/>
                </colgroup>
                <tr>
                    <th style="text-align: left;">操作</th>
                    <th style="text-align: left;">相关项</th>
                    <th style="text-align: left;">提交人姓名</th>
                    <th style="text-align: left;">提交日期</th>
                    <th style="text-align: left;">经过天数</th>
                    <th style="text-align: left;">原审批人</th>
                </tr>
                <apex:repeat value="{!othPIList}" var="pi">
                <tr>
                    <td style="text-align: left;"><a href="/{!URLENCODE(pi.piw.id)}/e?et=REASSIGN&retURL=%2Fhome%2Fhome.jsp">重新分配</a> | <a href="/p/process/ProcessInstanceWorkitemWizardStageManager?id={!URLENCODE(pi.piw.id)}">批准/拒绝</a></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.ProcessInstance.TargetObjectId}" style="width: 95%"/></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.ProcessInstance.SubmittedbyId}" style="width: 95%"/></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.CreatedDate}" style="width: 95%;"/></td>
                    <td style="text-align: left;"><apex:outputText value="{!pi.elapsedTimeInDays}" style="width: 95%;"/></td>
                    <td style="text-align: left;"><apex:outputField value="{!pi.piw.OriginalActorId}" style="width: 95%"/></td>
                </tr>
            </apex:repeat>
            </table>
        </apex:pageBlock>
    </apex:form>
</apex:page>