<apex:page Controller="ProductRepairQuoteController" showHeader="false" sidebar="false" id="allPage" action="{!init}" title="产品修理报价预估" lightningStylesheets="true">
|
<apex:stylesheet value="{!URLFOR($Resource.StyleUtilCss)}"/>
|
<apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}"/>
|
<style>
|
body,body .mainTitle{
|
font-size: 15px;
|
}
|
</style>
|
<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>
|
<!-- lighting升级 20230210 lt 文字串行问题 add ;width:200px;height:25px; -->
|
<th style="text-align:right ;width:200px;height:25px;">
|
{!$ObjectType.Product2.fields.RepairListPriceLevelA__c.label} :
|
</th>
|
<td align="left">
|
<apex:outputText value="{!repairListPriceLevelA}" />
|
</td>
|
<!-- lighting升级 20230210 lt 文字串行问题 add ;width:200px;height:25px; -->
|
<th style="text-align:right;width:200px;height:25px;">
|
{!$ObjectType.Product2.fields.Can_Repair__c.label} :
|
</th>
|
<td align="left">
|
<apex:outputText value="{!canRepair}" />
|
</td>
|
|
</tr>
|
<tr>
|
<th style="text-align:right;width:200px;height:25px;">
|
{!$ObjectType.Product2.fields.RepairListPriceLevelB__c.label} :
|
</th>
|
<td align="left">
|
<apex:outputText value="{!repairListPriceLevelB}" />
|
</td>
|
<!-- lighting升级 20230210 lt 文字串行问题 add ;height:25px; -->
|
|
|
<th style="text-align:right;width:200px;height:25px;">
|
{!$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>
|
|
|
<!-- lighting升级 20230210 lt 文字串行问题 add ;height:25px; -->
|
</tr>
|
<tr>
|
<th style="text-align:right;width:200px;height:25px;">
|
{!$ObjectType.Product2.fields.RepairListPriceLevelC__c.label} :
|
</th>
|
<td align="left">
|
<apex:outputText value="{!repairListPriceLevelC}" />
|
</td>
|
<th style="text-align:right;width:200px;height:25px;">
|
{!$ObjectType.Product2.fields.PartSupplyFinishDateExp__c.label} :
|
</th>
|
|
<td align="left">
|
<apex:outputText value="{0,date,yyyy/MM/dd}">
|
<apex:param value="{!partSupplyFinishDateExp}" />
|
</apex:outputText>
|
<!-- <apex:outputText value="{!partSupplyFinishDateExp}"/> -->
|
</td>
|
</tr>
|
|
</table>
|
</apex:pageBlock>
|
|
|
|
|
|
|
</apex:pageBlock>
|
</apex:outputPanel>
|
</apex:form>
|
</apex:page>
|