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