This is an automated email from the ASF dual-hosted git repository.
mridulpathak pushed a commit to branch release24.09
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/release24.09 by this push:
new 1481a41959 Fixed payment accounting transaction PDF route for 24.09
(OFBIZ-12818) (#1189)
1481a41959 is described below
commit 1481a4195933c50a5c104c485b34f8e16bb1166b
Author: toaditi <[email protected]>
AuthorDate: Fri May 8 20:42:18 2026 +0530
Fixed payment accounting transaction PDF route for 24.09 (OFBIZ-12818)
(#1189)
## Summary
- Restores the `PaymentAcctgTransEntriesPdf` controller request on the
24.09 release branch.
- 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/release24.09..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"/>