Browse Source

Aug 28 [UPDT] : Updated 'advanced_excel_reports'

pull/397/merge
AjmalCybro 4 weeks ago
parent
commit
685163fbde
  1. 2
      advanced_excel_reports/__manifest__.py
  2. 6
      advanced_excel_reports/doc/RELEASE_NOTES.md
  3. 2
      advanced_excel_reports/static/src/js/excel_report.js

2
advanced_excel_reports/__manifest__.py

@ -21,7 +21,7 @@
#############################################################################
{
'name': "Advanced Excel Reports",
"version": "18.0.1.0.0",
"version": "18.0.1.0.1",
"category": "Sale,Accounting,Warehouse",
"summary": """For printing excel reports of multiple records""",
"description": "Print the excel report of the sale,invoice,picking"

6
advanced_excel_reports/doc/RELEASE_NOTES.md

@ -4,3 +4,9 @@
#### Version 18.0.1.0.0
#### ADD
- Initial commit for Advanced Excel Reports
#### 28.08.2025
#### Version 18.0.1.0.1
#### UPDATE
- Updated the module with unique key for the report action handler.

2
advanced_excel_reports/static/src/js/excel_report.js

@ -2,7 +2,7 @@
import { registry } from "@web/core/registry";
import { BlockUI } from "@web/core/ui/block_ui";
import { download } from "@web/core/network/download";
registry.category("ir.actions.report handlers").add("xlsx", async(action)=> {
registry.category("ir.actions.report handlers").add("advanced_excel_reports_xlsx", async(action)=> {
//Passing data to the controller to print the excel file
if (action.report_type === 'xlsx') {
BlockUI;

Loading…
Cancel
Save