You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by de...@apache.org on 2016/05/05 05:30:40 UTC

svn commit: r1742358 - in /ofbiz/trunk/applications/accounting: template/ template/ar/payment/ template/common/ template/invoice/ template/payment/ widget/ widget/ar/

Author: deepak
Date: Thu May  5 05:30:40 2016
New Revision: 1742358

URL: http://svn.apache.org/viewvc?rev=1742358&view=rev
Log:
(OFBIZ-7021) Renamed accounting component ftl file name from lower case to upper case. 

Added:
    ofbiz/trunk/applications/accounting/template/Main.ftl
      - copied unchanged from r1741940, ofbiz/trunk/applications/accounting/template/main.ftl
    ofbiz/trunk/applications/accounting/template/ar/payment/BatchPayments.ftl
      - copied unchanged from r1741940, ofbiz/trunk/applications/accounting/template/ar/payment/batchPayments.ftl
    ofbiz/trunk/applications/accounting/template/common/CreditCardFields.ftl
      - copied unchanged from r1741940, ofbiz/trunk/applications/accounting/template/common/creditcardfields.ftl
    ofbiz/trunk/applications/accounting/template/invoice/InvoiceReportContactMechs.fo.ftl
      - copied unchanged from r1741940, ofbiz/trunk/applications/accounting/template/invoice/invoiceReportContactMechs.fo.ftl
    ofbiz/trunk/applications/accounting/template/invoice/InvoiceReportHeaderInfo.fo.ftl
      - copied unchanged from r1741940, ofbiz/trunk/applications/accounting/template/invoice/invoiceReportHeaderInfo.fo.ftl
    ofbiz/trunk/applications/accounting/template/invoice/InvoiceReportItems.fo.ftl
      - copied unchanged from r1741940, ofbiz/trunk/applications/accounting/template/invoice/invoiceReportItems.fo.ftl
    ofbiz/trunk/applications/accounting/template/payment/DepositWithdrawPayments.ftl
      - copied unchanged from r1741940, ofbiz/trunk/applications/accounting/template/payment/depositWithdrawPayments.ftl
    ofbiz/trunk/applications/accounting/template/payment/ManualCCTx.ftl
      - copied unchanged from r1741940, ofbiz/trunk/applications/accounting/template/payment/manualCCTx.ftl
    ofbiz/trunk/applications/accounting/template/payment/ManualTx.ftl
      - copied unchanged from r1741940, ofbiz/trunk/applications/accounting/template/payment/manualTx.ftl
Removed:
    ofbiz/trunk/applications/accounting/template/ar/payment/batchPayments.ftl
    ofbiz/trunk/applications/accounting/template/common/creditcardfields.ftl
    ofbiz/trunk/applications/accounting/template/invoice/invoiceReportContactMechs.fo.ftl
    ofbiz/trunk/applications/accounting/template/invoice/invoiceReportHeaderInfo.fo.ftl
    ofbiz/trunk/applications/accounting/template/invoice/invoiceReportItems.fo.ftl
    ofbiz/trunk/applications/accounting/template/main.ftl
    ofbiz/trunk/applications/accounting/template/payment/depositWithdrawPayments.ftl
    ofbiz/trunk/applications/accounting/template/payment/manualCCTx.ftl
    ofbiz/trunk/applications/accounting/template/payment/manualTx.ftl
Modified:
    ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml
    ofbiz/trunk/applications/accounting/widget/CommonScreens.xml
    ofbiz/trunk/applications/accounting/widget/FinAccountScreens.xml
    ofbiz/trunk/applications/accounting/widget/PaymentScreens.xml
    ofbiz/trunk/applications/accounting/widget/ar/ArPaymentScreens.xml

Modified: ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml?rev=1742358&r1=1742357&r2=1742358&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml Thu May  5 05:30:40 2016
@@ -55,15 +55,15 @@ under the License.
                             </decorator-section>
                             <decorator-section name="topRight">
                                <platform-specific>
-                                    <xsl-fo><html-template location="component://accounting/template/invoice/invoiceReportHeaderInfo.fo.ftl"/></xsl-fo>
+                                    <xsl-fo><html-template location="component://accounting/template/invoice/InvoiceReportHeaderInfo.fo.ftl"/></xsl-fo>
                                 </platform-specific>
                             </decorator-section>
                             <decorator-section name="body">
                                <platform-specific>
-                                   <xsl-fo><html-template location="component://accounting/template/invoice/invoiceReportContactMechs.fo.ftl"/></xsl-fo>
+                                   <xsl-fo><html-template location="component://accounting/template/invoice/InvoiceReportContactMechs.fo.ftl"/></xsl-fo>
                               </platform-specific>
                                <platform-specific>
-                                   <xsl-fo><html-template location="component://accounting/template/invoice/invoiceReportItems.fo.ftl"/></xsl-fo>
+                                   <xsl-fo><html-template location="component://accounting/template/invoice/InvoiceReportItems.fo.ftl"/></xsl-fo>
                                </platform-specific>
                             </decorator-section>
                         </decorator-screen>

Modified: ofbiz/trunk/applications/accounting/widget/CommonScreens.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/CommonScreens.xml?rev=1742358&r1=1742357&r2=1742358&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/widget/CommonScreens.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/CommonScreens.xml Thu May  5 05:30:40 2016
@@ -292,7 +292,7 @@ under the License.
                 <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}">
                     <decorator-section name="body">
                         <screenlet title="${uiLabelMap.AccountingMainPage}">
-                            <platform-specific><html><html-template location="component://accounting/template/main.ftl"/></html></platform-specific>
+                            <platform-specific><html><html-template location="component://accounting/template/Main.ftl"/></html></platform-specific>
                         </screenlet>
                     </decorator-section>
                 </decorator-screen>
@@ -303,7 +303,7 @@ under the License.
     <screen name="creditCardFields">
         <section>
             <widgets>
-                <platform-specific><html><html-template location="component://accounting/template/common/creditcardfields.ftl"/></html></platform-specific>
+                <platform-specific><html><html-template location="component://accounting/template/common/CreditCardFields.ftl"/></html></platform-specific>
             </widgets>
         </section>
     </screen>

Modified: ofbiz/trunk/applications/accounting/widget/FinAccountScreens.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/FinAccountScreens.xml?rev=1742358&r1=1742357&r2=1742358&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/widget/FinAccountScreens.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/FinAccountScreens.xml Thu May  5 05:30:40 2016
@@ -252,7 +252,7 @@ under the License.
                                     </decorator-section> 
                                     <decorator-section name="search-results">
                                         <platform-specific>
-                                            <html><html-template location="component://accounting/template/payment/depositWithdrawPayments.ftl"/></html>
+                                            <html><html-template location="component://accounting/template/payment/DepositWithdrawPayments.ftl"/></html>
                                         </platform-specific>
                                     </decorator-section>
                                 </decorator-screen>  
@@ -403,7 +403,7 @@ under the License.
                                     </decorator-section> 
                                     <decorator-section name="search-results">
                                         <platform-specific>
-                                            <html><html-template location="component://accounting/webapp/ar/payment/batchPayments.ftl"/></html>
+                                            <html><html-template location="component://accounting/template/ar/payment/BatchPayments.ftl"/></html>
                                         </platform-specific>
                                     </decorator-section>
                                 </decorator-screen>  

Modified: ofbiz/trunk/applications/accounting/widget/PaymentScreens.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/PaymentScreens.xml?rev=1742358&r1=1742357&r2=1742358&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/widget/PaymentScreens.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/PaymentScreens.xml Thu May  5 05:30:40 2016
@@ -445,7 +445,7 @@ under the License.
                     <decorator-section name="body">
                         <screenlet title="${uiLabelMap.AccountingManualTransaction}">
                             <platform-specific>
-                                <html><html-template location="component://accounting/template/payment/manualTx.ftl"/></html>
+                                <html><html-template location="component://accounting/template/payment/ManualTx.ftl"/></html>
                             </platform-specific>
                         </screenlet>
                     </decorator-section>
@@ -457,7 +457,7 @@ under the License.
          <section>
             <widgets>
                 <platform-specific>
-                    <html><html-template location="component://accounting/template/payment/manualCCTx.ftl"/></html>
+                    <html><html-template location="component://accounting/template/payment/ManualCCTx.ftl"/></html>
                 </platform-specific>
             </widgets>
         </section>

Modified: ofbiz/trunk/applications/accounting/widget/ar/ArPaymentScreens.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/ar/ArPaymentScreens.xml?rev=1742358&r1=1742357&r2=1742358&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/widget/ar/ArPaymentScreens.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/ar/ArPaymentScreens.xml Thu May  5 05:30:40 2016
@@ -80,7 +80,7 @@ under the License.
                                     </decorator-section> 
                                     <decorator-section name="search-results">
                                         <platform-specific>
-                                            <html><html-template location="component://accounting/template/ar/payment/batchPayments.ftl"/></html>
+                                            <html><html-template location="component://accounting/template/ar/payment/BatchPayments.ftl"/></html>
                                         </platform-specific>
                                     </decorator-section>
                                 </decorator-screen>