[FIX] Few fixes to solve warnings:
- _description in account_financial_report_abstract - _description in vat.report.wizard - Two fields using same label 'Accounts' in account.group - Two fields using same label 'Account' in report_journal_ledger_move_line - Two fields using same label 'Partner' in report_journal_ledger_move_line - Two fields using same label 'Accounts' in report_trial_balance_account - Two fields using same label 'Tax' in report_vat_report_taxtag - Two fields using same label 'Tax' in report_vat_report_tax - Two fields using same label 'Filter accounts' in general.ledger.report.wizard
This commit is contained in:
committed by
chaule97
parent
dd1dface54
commit
efd0123bf6
@@ -65,7 +65,7 @@ class GeneralLedgerReportWizard(models.TransientModel):
|
||||
)
|
||||
analytic_tag_ids = fields.Many2many(
|
||||
comodel_name='account.analytic.tag',
|
||||
string='Filter accounts',
|
||||
string='Filter analytic tags',
|
||||
)
|
||||
account_journal_ids = fields.Many2many(
|
||||
comodel_name='account.journal',
|
||||
|
||||
@@ -9,6 +9,7 @@ from odoo.exceptions import ValidationError
|
||||
|
||||
class VATReportWizard(models.TransientModel):
|
||||
_name = "vat.report.wizard"
|
||||
_description = "VAT Report Wizard"
|
||||
|
||||
company_id = fields.Many2one(
|
||||
comodel_name='res.company',
|
||||
|
||||
Reference in New Issue
Block a user