Browse Source

:Dec 30 [FIX] Bug Fixed 'advance_cash_flow_statements'

16.0
Risvana Cybro 2 days ago
parent
commit
735b8a3f47
  1. 2
      advance_cash_flow_statements/__manifest__.py
  2. 5
      advance_cash_flow_statements/doc/RELEASE_NOTES.md
  3. 2
      advance_cash_flow_statements/static/src/js/action_manager.js
  4. 2
      advance_cash_flow_statements/wizard/account_wizard.py

2
advance_cash_flow_statements/__manifest__.py

@ -22,7 +22,7 @@
{
'name': 'Advanced Cash Flow Statements',
'version': '16.0.1.0.0',
'version': '16.0.1.0.1',
'summary': """Generate four levels of cash flow statement reports in PDF and Excel""",
'description': """Generate four levels of cash flow statement reports in PDF and Excel, pdf report, excel report, cashflow, odoo16""",
'author': "Cybrosys Techno Solutions",

5
advance_cash_flow_statements/doc/RELEASE_NOTES.md

@ -4,3 +4,8 @@
#### Version 16.0.1.0.0
##### ADD
- Initial commit for Cash Flow Statement Report
#### 29.12.2025
#### Version 16.0.1.0.1
##### FIX
- Fixed an error in XLSX report generation when the report_xlsx module is installed.

2
advance_cash_flow_statements/static/src/js/action_manager.js

@ -6,7 +6,7 @@ import framework from 'web.framework';
import session from 'web.session';
registry.category("ir.actions.report handlers").add("advance_cash_xlsx", async (action) => {
if (action.report_type === 'xlsx') {
if (action.report_type === 'xlsx_advance_cashflow') {
framework.blockUI();
var def = $.Deferred();
session.get_file({

2
advance_cash_flow_statements/wizard/account_wizard.py

@ -85,7 +85,7 @@ class AccountWizard(models.TransientModel):
}
return {
'type': 'ir.actions.report',
'report_type': 'xlsx',
'report_type': 'xlsx_advance_cashflow',
'data': {'model': 'account.wizard',
'output_format': 'xlsx',
'options': json.dumps(data,

Loading…
Cancel
Save