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

mridulpathak 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 3882f3f68f Fixed payment accounting transaction PDF route 
(OFBIZ-12818) (#1183)
3882f3f68f is described below

commit 3882f3f68feee3dcd345ec74c8ad814799f1fc75
Author: toaditi <[email protected]>
AuthorDate: Fri May 8 20:27:42 2026 +0530

    Fixed payment accounting transaction PDF route (OFBIZ-12818) (#1183)
    
    ## Summary
    - Restores the `PaymentAcctgTransEntriesPdf` controller request.
    - Routes the payment PDF action to the existing FOP
    `AcctgTransEntriesSearchResultsPdf` view.
    - Keeps the existing payment menu target working while avoiding the
    removed BIRT route.
    
    JIRA: https://issues.apache.org/jira/browse/OFBIZ-12818
    
    ## Verification
    - `ruby -rrexml/document -e ...` confirmed the payment request maps to
    the existing `screenfop` view.
    - `git diff --check origin/trunk..HEAD`
---
 applications/accounting/webapp/accounting/WEB-INF/controller.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/applications/accounting/webapp/accounting/WEB-INF/controller.xml 
b/applications/accounting/webapp/accounting/WEB-INF/controller.xml
index 98023fbf5b..0a30df5339 100644
--- a/applications/accounting/webapp/accounting/WEB-INF/controller.xml
+++ b/applications/accounting/webapp/accounting/WEB-INF/controller.xml
@@ -408,6 +408,10 @@ under the License.
         <security https="true" auth="true"/>
         <response name="success" type="view" 
value="InvoiceAcctgTransEntriesPdf"/>
     </request-map>
+    <request-map uri="PaymentAcctgTransEntriesPdf">
+        <security https="true" auth="true"/>
+        <response name="success" type="view" 
value="AcctgTransEntriesSearchResultsPdf"/>
+    </request-map>
 
     <request-map uri="FindSalesInvoicesByDueDate">
         <security https="true" auth="true"/>

Reply via email to