<apex:page controller="RentalSequenceWatchController"  showHeader="false" sidebar="false" id="allPage" action="{!init}" title="异常数据查看">
<apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}"/>
<apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}"/>
<apex:includeScript value="{!URLFOR($Resource.PleaseWaitDialog)}"/>
<apex:includeScript value="/soap/ajax/29.0/connection.js"/>
<apex:includeScript value="/soap/ajax/29.0/apex.js"/>
<apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}"/>
<apex:form id="allForm">
<apex:outputPanel rendered="{!!haveErrCF_X}">
此时没有重复序列数据，开森<br/>
</apex:outputPanel>
<apex:outputPanel rendered="{!!haveErrTH_X}">
此时没有跳号序列数据，开森<br/>
</apex:outputPanel>
<apex:outputPanel rendered="{!!haveErrCF_D}">
此时没有重复队列数据，开森<br/>
</apex:outputPanel>
<apex:outputPanel rendered="{!!haveErrTH_D}">
此时没有跳号队列数据，开森<br/>
</apex:outputPanel>
<apex:outputPanel rendered="{!haveErrCF_X}">
重复序列
<table class="list" border="0" cellpadding="0" cellspacing="0" width="10%" >
    <thead>
    <tr class="headerRow" >
        <th style="padding-bottom: 6px;">Id</th>
        <th style="padding-bottom: 6px;">ExternalKey__c</th>
        <th style="padding-bottom: 6px;">Series_No__c</th>
    </tr>
    </thead>
    <tbody>
    <apex:repeat value="{!rasShowCFList}" var="info"  >
    <tr>
        <td><apex:outputText value="{!info.Id}"/></td>
        <td><apex:outputText value="{!info.ExternalKey__c}"/></td>
        <td><apex:outputText value="{!info.Series_No__c}"/></td>
    </tr>
	</apex:repeat>
	</tbody>
</table>
</apex:outputPanel>
<apex:outputPanel rendered="{!haveErrTH_X}">
跳号序列<br/>
<table class="list" border="0" cellpadding="0" cellspacing="0" width="10%" >
    <thead>
    <tr class="headerRow" >
        <th style="padding-bottom: 6px;">Id</th>
        <th style="padding-bottom: 6px;">ExternalKey__c</th>
        <th style="padding-bottom: 6px;">Series_No__c</th>
    </tr>
    </thead>
    <tbody>
    <apex:repeat value="{!rasShowTHList}" var="info"  >
    <tr>
        <td><apex:outputText value="{!info.Id}"/></td>
        <td><apex:outputText value="{!info.ExternalKey__c}"/></td>
        <td><apex:outputText value="{!info.Series_No__c}"/></td>
    </tr>
	</apex:repeat>
	</tbody>
</table>
</apex:outputPanel>
<apex:outputPanel rendered="{!haveErrCF_D}">
重复队列<br/>
<table class="list" border="0" cellpadding="0" cellspacing="0" width="10%" >
    <thead>
    <tr class="headerRow" >
        <th style="padding-bottom: 6px;">Id</th>
        <th style="padding-bottom: 6px;">ExternalKey__c</th>
        <th style="padding-bottom: 6px;">Queue_Number__c</th>
    </tr>
    </thead>
    <tbody>
    <apex:repeat value="{!raesDShowCFList}" var="info"  >
    <tr>
        <td><apex:outputText value="{!info.Id}"/></td>
        <td><apex:outputText value="{!info.ExternalKey__c}"/></td>
        <td><apex:outputText value="{!info.Queue_Number__c}"/></td>
    </tr>
	</apex:repeat>
	</tbody>
</table>
</apex:outputPanel>
<apex:outputPanel rendered="{!haveErrTH_D}">
跳号队列<br/>
<table class="list" border="0" cellpadding="0" cellspacing="0" width="10%" >
    <thead>
    <tr class="headerRow" >
        <th style="padding-bottom: 6px;">Id</th>
        <th style="padding-bottom: 6px;">ExternalKey__c</th>
        <th style="padding-bottom: 6px;">Queue_Number__c</th>
    </tr>
    </thead>
    <tbody>
    <apex:repeat value="{!raesDShowTHList}" var="info"  >
    <tr>
        <td><apex:outputText value="{!info.Id}"/></td>
        <td><apex:outputText value="{!info.ExternalKey__c}"/></td>
        <td><apex:outputText value="{!info.Queue_Number__c}"/></td>
    </tr>
	</apex:repeat>
	</tbody>
</table>
</apex:outputPanel>
</apex:form>
</apex:page>