[MIG] account_financial_report: Migration to 14.0

Since v14, Odoo defines the `__slots__` attribute in the `BaseModel` class (ea3e39506a)
This makes it impossible to add attributes to an instance like it was done here in v13.
The use of the `report_data` dictionary passed between method is the closes and simples solution to this "issue".

TT26415

Co-authored-by: Alex Cuellar <acuellar@grupoyacck.com>
This commit is contained in:
João Marques
2021-01-25 15:43:26 +00:00
committed by chaule97
parent e250c0583d
commit 12034178bb
30 changed files with 762 additions and 649 deletions

View File

@@ -0,0 +1,7 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_aged_partner_balance_report_wizard,access_aged_partner_balance_report_wizard,model_aged_partner_balance_report_wizard,base.group_user,1,1,1,1
access_general_ledger_report_wizard,access_general_ledger_report_wizard,model_general_ledger_report_wizard,base.group_user,1,1,1,1
access_journal_ledger_report_wizard,access_journal_ledger_report_wizard,model_journal_ledger_report_wizard,base.group_user,1,1,1,1
access_open_items_report_wizard,access_open_items_report_wizard,model_open_items_report_wizard,base.group_user,1,1,1,1
access_trial_balance_report_wizard,access_trial_balance_report_wizard,model_trial_balance_report_wizard,base.group_user,1,1,1,1
access_vat_report_wizard,access_vat_report_wizard,model_vat_report_wizard,base.group_user,1,1,1,1
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_aged_partner_balance_report_wizard access_aged_partner_balance_report_wizard model_aged_partner_balance_report_wizard base.group_user 1 1 1 1
3 access_general_ledger_report_wizard access_general_ledger_report_wizard model_general_ledger_report_wizard base.group_user 1 1 1 1
4 access_journal_ledger_report_wizard access_journal_ledger_report_wizard model_journal_ledger_report_wizard base.group_user 1 1 1 1
5 access_open_items_report_wizard access_open_items_report_wizard model_open_items_report_wizard base.group_user 1 1 1 1
6 access_trial_balance_report_wizard access_trial_balance_report_wizard model_trial_balance_report_wizard base.group_user 1 1 1 1
7 access_vat_report_wizard access_vat_report_wizard model_vat_report_wizard base.group_user 1 1 1 1