svn commit: r1784192 - in /ofbiz/branches: release14.12/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml release15.12/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1784192 - in /ofbiz/branches: release14.12/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml release15.12/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml

jleroux@apache.org
Author: jleroux
Date: Thu Feb 23 18:45:59 2017
New Revision: 1784192

URL: http://svn.apache.org/viewvc?rev=1784192&view=rev
Log:
"Applied fix from trunk plugins for revision: 1784144" (handled by hand)
------------------------------------------------------------------------
r1784144 | jleroux | 2017-02-23 15:41:21 +0100 (jeu. 23 f귲. 2017) | 11 lignes

Fixed: Create an Accounting Transaction page not found
(OFBIZ-9228)

Go through
Asset Maint --> Fixed Assets - >>> find DEMO_VEHICLE_01 --> Depreciation
and then press on button Create an Accounting Transaction: 00.000
will give ERROR not found

jleroux: the partyDecoratorLocation was missing in webapp/assetmaint/WEB-INF/web.xml

Thanks: Moatasim Al Masri for report, Ismail Alkouz for a try (not my solution)
------------------------------------------------------------------------

Modified:
    ofbiz/branches/release14.12/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml
    ofbiz/branches/release15.12/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml

Modified: ofbiz/branches/release14.12/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/release14.12/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml?rev=1784192&r1=1784191&r2=1784192&view=diff
==============================================================================
--- ofbiz/branches/release14.12/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml (original)
+++ ofbiz/branches/release14.12/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml Thu Feb 23 18:45:59 2017
@@ -53,6 +53,11 @@
         <param-name>fixedAssetMaintDecoratorLocation</param-name>
         <param-value>component://assetmaint/widget/AssetmaintScreens.xml</param-value>
     </context-param>
+    <context-param>
+        <description>The location of the CommonPartyDecorator screen to use for this webapp; referred to as a context variable in screen def XML files.</description>
+        <param-name>partyDecoratorLocation</param-name>
+        <param-value>component://accounting/widget/CommonScreens.xml</param-value>
+    </context-param>
 
     <filter>
         <display-name>ContextFilter</display-name>

Modified: ofbiz/branches/release15.12/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/release15.12/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml?rev=1784192&r1=1784191&r2=1784192&view=diff
==============================================================================
--- ofbiz/branches/release15.12/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml (original)
+++ ofbiz/branches/release15.12/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml Thu Feb 23 18:45:59 2017
@@ -53,6 +53,11 @@
         <param-name>fixedAssetMaintDecoratorLocation</param-name>
         <param-value>component://assetmaint/widget/AssetmaintScreens.xml</param-value>
     </context-param>
+    <context-param>
+        <description>The location of the CommonPartyDecorator screen to use for this webapp; referred to as a context variable in screen def XML files.</description>
+        <param-name>partyDecoratorLocation</param-name>
+        <param-value>component://accounting/widget/CommonScreens.xml</param-value>
+    </context-param>
 
     <filter>
         <display-name>ContextFilter</display-name>