高章伟
2022-03-18 4bfe21c4b5ddc089ae5a95f4b10f6cff148b690d
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
<apex:page Controller="Morethan7daysController" sidebar="false" showHeader="false" action="{!init}" title="还没发货数量">
<style>
    tr.dataRow {
        background-color:white;
    }
    td.columus {
        background-color:white;
        text-align: right;
    }
</style>
    <apex:form id="allForm">
        <apex:pageBlock id="allBlock" title="发货七天还未到货数" >
            
                <table class="list" border="0" cellpadding="0" cellspacing="0" id="example">
                    <tr class="headerRow">
                        <th style="text-align: center;">{!$ObjectType.Consumable_order_details2__c.fields.Asset_Model_No__c.label}</th>
                        <th style="text-align: center;">数量</th>
                    </tr>
                    <apex:repeat value="{!MorethansevendaysIifo}" var="records" id="re">
                    <tr class="dataRow">
                        <td class="dataCell" style="text-align: center;">
                            {!records.prodModel}
                        </td>
                        <td class="dataCell" style="text-align: center;">
                            {!records.recordCount}
                        </td>
                    </tr>
                    </apex:repeat>
                </table>
        </apex:pageBlock>
    </apex:form>
</apex:page>