<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>
|