You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2009/11/19 23:10:06 UTC

svn commit: r882326 - /ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/controller.xml

Author: jleroux
Date: Thu Nov 19 22:10:06 2009
New Revision: 882326

URL: http://svn.apache.org/viewvc?rev=882326&view=rev
Log:
Fix https://issues.apache.org/jira/browse/OFBIZ-3229 in a slightly different way

a) FixedAssetGeoLocation had its error response going to the wrong view "EditFacility" (which did not exist in this controller).
b) taxAuthorityVATReport was pointing to a view-map entry that was commented out; these are not used yet: WIP...

Modified:
    ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/controller.xml

Modified: ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/controller.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/controller.xml?rev=882326&r1=882325&r2=882326&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/controller.xml (original)
+++ ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/controller.xml Thu Nov 19 22:10:06 2009
@@ -2282,16 +2282,18 @@
         <response name="error" type="view" value="ShowFixedAssetDepreciation"/>
     </request-map>
 
+    <!-- Commented out for now WIP 
     <request-map uri="taxAuthorityVATReport">
         <security https="true" auth="true"/>
         <response name="success" type="view" value="taxAuthorityVATReport"/>
     </request-map>
-
+    Commented out for now WIP -->
+    
     <!-- GeoLocation-->
     <request-map uri="FixedAssetGeoLocation">
         <security https="true" auth="true"/>
         <response name="success" type="view" value="FixedAssetGeoLocation"/>
-        <response name="error" type="view" value="EditFacility"/>
+        <response name="error" type="view" value="EditFixedAsset"/>
     </request-map>
 
     <request-map uri="AcctgTransEntriesSearchResultsCsv.csv">
@@ -2746,10 +2748,10 @@
     <!-- Agreements Views   -->
     <view-map name="EditAgreementRoles" type="screen" page="component://accounting/widget/AgreementScreens.xml#EditAgreementRoles"/>
 
-    <!-- TO BE REMOVED un-existing forms
+    <!-- Commented out for now WIP
     <view-map name="findTaxAuthorityVATReport" type="screen" page="component://accounting/widget/TaxAuthorityForms.xml#FindTaxAuthorityVATReport"/>
     <view-map name="taxAuthorityVATReport" type="screen" page="component://accounting/widget/TaxAuthorityForms.xml#TaxAuthorityVATReport"/>
-    -->
+    Commented out for now WIP-->
 
     <view-map name="FixedAssetGeoLocation" type="screen" page="component://accounting/widget/FixedAssetScreens.xml#FixedAssetGeoLocation"/>
     <view-map name="AcctgTransEntriesSearchResultsCsv" type="screencsv" page="component://accounting/widget/GlScreens.xml#AcctgTransEntriesSearchResultsCsv" content-type="text/csv" encoding="none"/>