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
<apex:page Controller="ConsumableAllOtherDetController" 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="{!allOtherDetIifo}" 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>