Diff
checker
テキスト
テキスト
画像
ドキュメント
Excel
フォルダ
Legal
Enterprise
デスクトップ
料金
ログイン
Diffchecker デスクトップのダウンロード
テキスト比較
2 つのテキスト ファイルの違いを見つける
ツール
履歴
ライブエディター
未変更行を折りたたむ
折り返しなし
レイアウト
分割
統合
比較精度
スマート
単語
文字
シンタックスハイライト
構文を選択
無視
テキスト変換
最初の差分へ移動
入力を編集
Diffchecker Desktop
Diffcheckerを実行する最も安全な方法。Diffchecker Desktopアプリを入手:あなたの差分はコンピューターから出ることはありません!
Desktopを入手
Untitled diff
作成日
11 年前
差分は期限切れになりません
クリア
エクスポート
共有
説明
2 削除
行
合計
削除
文字
合計
削除
この機能を引き続き使用するには、アップグレードしてください
Diff
checker
Pro
価格を見る
53 行
すべてコピー
1 追加
行
合計
追加
文字
合計
追加
この機能を引き続き使用するには、アップグレードしてください
Diff
checker
Pro
価格を見る
52 行
すべてコピー
<!-------------------------------------------------------------------------------------------
<!-------------------------------------------------------------------------------------------
Created By: Soumya
Created By: Soumya
Created Date: 25/10/2013
Created Date: 25/10/2013
Description: This page is used as an Inline VF in Service Order to display related LineItems
Description: This page is used as an Inline VF in Service Order to display related LineItems
-------------------------------------------------------------------------------------------->
-------------------------------------------------------------------------------------------->
コピー
コピー済み
コピー
コピー済み
<apex:page standardController="PPS_Service_Order__c" extensions="lineItemsListCntrl
2
" sidebar="true">
<apex:page standardController="PPS_Service_Order__c" extensions="lineItemsListCntrl
" sidebar="true">
<apex:form >
<apex:form >
<apex:pageMessages />
<apex:pageMessages />
<apex:pageBlock rendered="{!displayTable}">
<apex:pageBlock rendered="{!displayTable}">
<apex:pageblockButtons >
<apex:pageblockButtons >
<apex:commandButton value="Submit" action="{!submit}"/>
<apex:commandButton value="Submit" action="{!submit}"/>
</apex:pageblockButtons>
</apex:pageblockButtons>
<apex:outputPanel rendered="{!displayTable}">
<apex:outputPanel rendered="{!displayTable}">
<apex:pageBlockTable value="{!LineItemsList}" var="SO">
<apex:pageBlockTable value="{!LineItemsList}" var="SO">
<apex:column headerValue="Service Name" >
<apex:column headerValue="Service Name" >
<apex:outputfield value="{!SO.lineItem.Service_Name__c}" />
<apex:outputfield value="{!SO.lineItem.Service_Name__c}" />
</apex:column>
</apex:column>
<apex:column headerValue="Service Type" >
<apex:column headerValue="Service Type" >
<apex:outputfield value="{!SO.lineItem.Service_Type__c}" />
<apex:outputfield value="{!SO.lineItem.Service_Type__c}" />
</apex:column>
</apex:column>
<apex:column headerValue="Service Description" >
<apex:column headerValue="Service Description" >
<apex:outputfield value="{!SO.lineItem.DetailDescription__c}" />
<apex:outputfield value="{!SO.lineItem.DetailDescription__c}" />
</apex:column>
</apex:column>
<apex:column headerValue="Part Number" rendered="{!partFlag}">
<apex:column headerValue="Part Number" rendered="{!partFlag}">
<apex:outputfield value="{!SO.lineItem.Part_Number__c}" />
<apex:outputfield value="{!SO.lineItem.Part_Number__c}" />
</apex:column>
</apex:column>
<apex:column headerValue="Part Description" rendered="{!partFlag}">
<apex:column headerValue="Part Description" rendered="{!partFlag}">
<apex:outputfield value="{!SO.lineItem.Part_Description__c}" />
<apex:outputfield value="{!SO.lineItem.Part_Description__c}" />
</apex:column>
</apex:column>
<apex:column headerValue="Driver Number" rendered="{!driverFlag}">
<apex:column headerValue="Driver Number" rendered="{!driverFlag}">
<apex:outputfield value="{!SO.lineItem.Driver_Number__c}"/>
<apex:outputfield value="{!SO.lineItem.Driver_Number__c}"/>
</apex:column>
</apex:column>
<apex:column headerValue="Driver Description" rendered="{!driverFlag}">
<apex:column headerValue="Driver Description" rendered="{!driverFlag}">
<apex:outputfield value="{!SO.lineItem.Driver_Description__c}" />
<apex:outputfield value="{!SO.lineItem.Driver_Description__c}" />
</apex:column>
</apex:column>
<apex:column headerValue="PudoFlag" >
<apex:column headerValue="PudoFlag" >
<apex:outputfield value="{!SO.lineItem.Pudo_Flag__c}" />
<apex:outputfield value="{!SO.lineItem.Pudo_Flag__c}" />
</apex:column>
</apex:column>
<apex:column headerValue="Ext Reference" >
<apex:column headerValue="Ext Reference" >
<apex:outputfield value="{!SO.lineItem.Ext_Reference__c}" />
<apex:outputfield value="{!SO.lineItem.Ext_Reference__c}" />
</apex:column>
</apex:column>
<apex:column headerValue="Status" >
<apex:column headerValue="Status" >
<apex:selectList size="1" value="{!SO.status}">
<apex:selectList size="1" value="{!SO.status}">
<apex:selectOptions value="{!options}" />
<apex:selectOptions value="{!options}" />
</apex:selectList>
</apex:selectList>
</apex:column>
</apex:column>
</apex:pageBlockTable>
</apex:pageBlockTable>
</apex:outputPanel>
</apex:outputPanel>
</apex:pageBlock>
</apex:pageBlock>
</apex:form>
</apex:form>
</apex:page>
</apex:page>
保存された差分
原文
ファイルを開く
<!------------------------------------------------------------------------------------------- Created By: Soumya Created Date: 25/10/2013 Description: This page is used as an Inline VF in Service Order to display related LineItems --------------------------------------------------------------------------------------------> <apex:page standardController="PPS_Service_Order__c" extensions="lineItemsListCntrl" sidebar="true"> <apex:form > <apex:pageMessages /> <apex:pageBlock rendered="{!displayTable}"> <apex:pageblockButtons > <apex:commandButton value="Submit" action="{!submit}"/> </apex:pageblockButtons> <apex:outputPanel rendered="{!displayTable}"> <apex:pageBlockTable value="{!LineItemsList}" var="SO"> <apex:column headerValue="Service Name" > <apex:outputfield value="{!SO.lineItem.Service_Name__c}" /> </apex:column> <apex:column headerValue="Service Type" > <apex:outputfield value="{!SO.lineItem.Service_Type__c}" /> </apex:column> <apex:column headerValue="Service Description" > <apex:outputfield value="{!SO.lineItem.DetailDescription__c}" /> </apex:column> <apex:column headerValue="Part Number" rendered="{!partFlag}"> <apex:outputfield value="{!SO.lineItem.Part_Number__c}" /> </apex:column> <apex:column headerValue="Part Description" rendered="{!partFlag}"> <apex:outputfield value="{!SO.lineItem.Part_Description__c}" /> </apex:column> <apex:column headerValue="Driver Number" rendered="{!driverFlag}"> <apex:outputfield value="{!SO.lineItem.Driver_Number__c}"/> </apex:column> <apex:column headerValue="Driver Description" rendered="{!driverFlag}"> <apex:outputfield value="{!SO.lineItem.Driver_Description__c}" /> </apex:column> <apex:column headerValue="PudoFlag" > <apex:outputfield value="{!SO.lineItem.Pudo_Flag__c}" /> </apex:column> <apex:column headerValue="Ext Reference" > <apex:outputfield value="{!SO.lineItem.Ext_Reference__c}" /> </apex:column> <apex:column headerValue="Status" > <apex:selectList size="1" value="{!SO.status}"> <apex:selectOptions value="{!options}" /> </apex:selectList> </apex:column> </apex:pageBlockTable> </apex:outputPanel> </apex:pageBlock> </apex:form> </apex:page>
変更されたテキスト
ファイルを開く
<!------------------------------------------------------------------------------------------- Created By: Soumya Created Date: 25/10/2013 Description: This page is used as an Inline VF in Service Order to display related LineItems --------------------------------------------------------------------------------------------> <apex:page standardController="PPS_Service_Order__c" extensions="lineItemsListCntrl2" sidebar="true"> <apex:form > <apex:pageMessages /> <apex:pageBlock rendered="{!displayTable}"> <apex:pageblockButtons > <apex:commandButton value="Submit" action="{!submit}"/> </apex:pageblockButtons> <apex:outputPanel rendered="{!displayTable}"> <apex:pageBlockTable value="{!LineItemsList}" var="SO"> <apex:column headerValue="Service Name" > <apex:outputfield value="{!SO.lineItem.Service_Name__c}" /> </apex:column> <apex:column headerValue="Service Type" > <apex:outputfield value="{!SO.lineItem.Service_Type__c}" /> </apex:column> <apex:column headerValue="Service Description" > <apex:outputfield value="{!SO.lineItem.DetailDescription__c}" /> </apex:column> <apex:column headerValue="Part Number" rendered="{!partFlag}"> <apex:outputfield value="{!SO.lineItem.Part_Number__c}" /> </apex:column> <apex:column headerValue="Part Description" rendered="{!partFlag}"> <apex:outputfield value="{!SO.lineItem.Part_Description__c}" /> </apex:column> <apex:column headerValue="Driver Number" rendered="{!driverFlag}"> <apex:outputfield value="{!SO.lineItem.Driver_Number__c}"/> </apex:column> <apex:column headerValue="Driver Description" rendered="{!driverFlag}"> <apex:outputfield value="{!SO.lineItem.Driver_Description__c}" /> </apex:column> <apex:column headerValue="PudoFlag" > <apex:outputfield value="{!SO.lineItem.Pudo_Flag__c}" /> </apex:column> <apex:column headerValue="Ext Reference" > <apex:outputfield value="{!SO.lineItem.Ext_Reference__c}" /> </apex:column> <apex:column headerValue="Status" > <apex:selectList size="1" value="{!SO.status}"> <apex:selectOptions value="{!options}" /> </apex:selectList> </apex:column> </apex:pageBlockTable> </apex:outputPanel> </apex:pageBlock> </apex:form> </apex:page>
違いを見つける