DESKTOP-0K9VGFE\hp
2022-03-11 6d766b0c8e9b31e7e03ffd344a94c2851aa9beb9
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
<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>