高章伟
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
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
<apex:page Controller="ProductRepairQuoteController" showHeader="false" sidebar="false" id="allPage" action="{!init}" title="产品修理报价预估">
    
    <apex:form id="allForm">
        <apex:outputPanel id="allPanel">
            <apex:pageBlock title="产品修理报价预估" id="allBlock">
 
                <apex:outputPanel id="message">
                    <apex:pageMessages />
                </apex:outputPanel>
                <font color="red">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{!msg}</font>
                <apex:pageBlock id="dateBlock" rendered="{!viewFlag}">
                    <table>
                        <colgroup>
                            <col width="120"/>
                            <col width="100"/>
                            <col width="120"/>
                            <col width="100"/>
                        </colgroup>
                        <tr>
                            <th style="text-align:right">
                                {!$ObjectType.Product2.fields.RepairListPriceLevelA__c.label} :
                            </th>
                            <td align="left">
                                <apex:outputText value="{!repairListPriceLevelA}" />
                            </td>
                            <th style="text-align:right">
                                {!$ObjectType.Product2.fields.RepairListPriceLevelB__c.label} :
                            </th>
                            <td align="left">
                                <apex:outputText value="{!repairListPriceLevelB}" />
                            </td>
                        </tr>
                        <tr>
                            <th style="text-align:right">
                                {!$ObjectType.Product2.fields.RepairListPriceLevelC__c.label} :
                            </th>
                            <td align="left">
                                <apex:outputText value="{!repairListPriceLevelC}" />
                            </td>
                            <th style="text-align:right">
                                {!$ObjectType.Product2.fields.PartSupplyFinishDate__c.label} :
                            </th>
                            <td align="left">
                                <apex:outputText value="{0,date,yyyy/MM/dd}">
                                    <apex:param value="{!partSupplyFinishDate}" />
                                </apex:outputText>
                            </td>
                        </tr>
                    </table>
                </apex:pageBlock>
 
 
 
 
 
 
            </apex:pageBlock>
        </apex:outputPanel>
    </apex:form>
</apex:page>