<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"> {!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>
|