<apex:page Controller="ConsumableOtherArrDetController" 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="还没发货数量" >
|
<!--<apex:pageblocktable value="{!notArrDetIifo}" var="records" id="re">
|
<apex:column style="text-align: center;">
|
<apex:facet name="header">
|
{!$ObjectType.Consumable_order_details2__c.fields.Asset_Model_No__c.label}</apex:facet>
|
<apex:outputText value="{!records.prodModel}"/>
|
</apex:column>
|
<apex:column style="text-align: center;">
|
<apex:facet name="header">数量</apex:facet>
|
<apex:outputText id="consumablesCountSinglePrice" value="{!records.recordCount}"/>
|
</apex:column>
|
</apex:pageblocktable>-->
|
<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="{!otherArrDetIifo}" var="records" id="re">
|
<tr class="dataRow">
|
<td class="dataCell" style="text-align: center;">
|
{!records.Asset_Model_No__c}
|
</td>
|
<td class="dataCell" style="text-align: center;">
|
{!records.Consumable_count__c}
|
</td>
|
</tr>
|
</apex:repeat>
|
</table>
|
</apex:pageBlock>
|
</apex:form>
|
</apex:page>
|