This is an automated email from the ASF dual-hosted git repository.

adityasharma pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 3bc127d  Fixed: RequestHandlerException due missing controller entries 
(OFBIZ-9478) Fixed missing Lookup controller entries for the following pages: 
1. LookupBudget for Employment Applications page of party 2. LookupDataResource 
for Content page of facility 3. LookupFixedAsset for Inventory Items Details 
page of facility
3bc127d is described below

commit 3bc127dfb03935b3cde43b105d48a324d2c45a82
Author: Aditya Sharma <adityasha...@apache.org>
AuthorDate: Sun May 31 09:53:26 2020 +0530

    Fixed: RequestHandlerException due missing controller entries
    (OFBIZ-9478)
    Fixed missing Lookup controller entries for the following pages:
    1. LookupBudget for Employment Applications page of party
    2. LookupDataResource for Content page of facility
    3. LookupFixedAsset for Inventory Items Details page of facility
    
    Thank you Pallavi Goyal for reporting the issue and Humera Khan for 
providing the patch
---
 applications/party/webapp/partymgr/WEB-INF/controller.xml   | 2 ++
 applications/product/webapp/facility/WEB-INF/controller.xml | 7 +++++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/applications/party/webapp/partymgr/WEB-INF/controller.xml 
b/applications/party/webapp/partymgr/WEB-INF/controller.xml
index b88c306..4bb4407 100644
--- a/applications/party/webapp/partymgr/WEB-INF/controller.xml
+++ b/applications/party/webapp/partymgr/WEB-INF/controller.xml
@@ -1266,6 +1266,7 @@ under the License.
     <request-map uri="LookupOrderHeader"><security auth="true" 
https="true"/><response name="success" type="view" 
value="LookupOrderHeader"/></request-map>
     <request-map uri="LookupReturnHeader"><security auth="true" 
https="true"/><response name="success" type="view" 
value="LookupReturnHeader"/></request-map>
     <request-map uri="LookupProduct"><security auth="true" 
https="true"/><response name="success" type="view" 
value="LookupProduct"/></request-map>
+    <request-map uri="LookupBudget"><security auth="true" 
https="true"/><response name="success" type="view" 
value="LookupBudget"/></request-map>
 
     <!-- Financial History Report-->
     <request-map uri="PartyFinancialHistory">
@@ -1478,6 +1479,7 @@ under the License.
     <view-map name="visitdetail" type="screen" 
page="component://party/widget/partymgr/VisitScreens.xml#visitdetail"/>
     <view-map name="listLoggedInUsers" type="screen" 
page="component://party/widget/partymgr/VisitScreens.xml#ListLoggedInUsers"/>
 
+    <view-map name="LookupBudget"  type="screen" 
page="component://humanres/widget/LookupScreens.xml#LookupBudget"/>
     <view-map name="LookupPartyName" type="screen" 
page="component://party/widget/partymgr/LookupScreens.xml#LookupPartyName"/>
     <view-map name="LookupPartyEmail" type="screen" 
page="component://party/widget/partymgr/LookupScreens.xml#LookupPartyEmail"/>
     <view-map name="LookupPartyClassificationGroup" type="screen" 
page="component://party/widget/partymgr/LookupScreens.xml#LookupPartyClassificationGroup"/>
diff --git a/applications/product/webapp/facility/WEB-INF/controller.xml 
b/applications/product/webapp/facility/WEB-INF/controller.xml
index 35cb285..a196d4e 100644
--- a/applications/product/webapp/facility/WEB-INF/controller.xml
+++ b/applications/product/webapp/facility/WEB-INF/controller.xml
@@ -1274,7 +1274,7 @@ under the License.
         <response name="error" type="view" value="EditFacility"/>
     </request-map>
     
-    <!-- Shipment Gateway Config --> 
+    <!-- Shipment Gateway Config -->
     <request-map uri="FindShipmentGatewayConfig">
         <security https="true" auth="true"/>
         <response name="success" type="view" 
value="FindShipmentGatewayConfig"/>
@@ -1359,6 +1359,8 @@ under the License.
     <request-map uri="LookupContent"><security auth="true" 
https="true"/><response name="success" type="view" 
value="LookupContent"/></request-map>
     <request-map uri="LookupWorkEffort"><security https="true" 
auth="true"/><response name="success" type="view" 
value="LookupWorkEffort"/></request-map>
     <request-map uri="LookupShipment"><security auth="true" 
https="true"/><response name="success" type="view" 
value="LookupShipment"/></request-map>
+    <request-map uri="LookupDataResource"><security auth="true" 
https="true"/><response name="success" type="view" 
value="LookupDataResource"/></request-map>
+    <request-map uri="LookupFixedAsset"><security auth="true" 
https="true"/><response name="success" type="view" 
value="LookupFixedAsset"/></request-map>
     <!-- end of request mappings -->
 
     <!-- View Mappings -->
@@ -1464,7 +1466,8 @@ under the License.
     <view-map name="LookupContent" type="screen" 
page="component://content/widget/content/ContentScreens.xml#LookupContent"/>
     <view-map name="LookupWorkEffort" type="screen" 
page="component://workeffort/widget/LookupScreens.xml#LookupWorkEffort"/>
     <view-map name="LookupShipment" type="screen" 
page="component://product/widget/facility/LookupScreens.xml#LookupShipment"/>
-
+    <view-map name="LookupDataResource" type="screen" 
page="component://content/widget/content/DataResourceScreens.xml#LookupDataResource"/>
+    <view-map name="LookupFixedAsset" type="screen" 
page="component://accounting/widget/LookupScreens.xml#LookupFixedAsset"/>
     <!-- Shipment Gateway Config -->
     <view-map name="FindShipmentGatewayConfig" type="screen" 
page="component://product//widget/facility/ShipmentGatewayConfigScreens.xml#FindShipmentGatewayConfig"/>
     <view-map name="EditShipmentGatewayConfig" type="screen" 
page="component://product//widget/facility/ShipmentGatewayConfigScreens.xml#EditShipmentGatewayConfig"/>

Reply via email to