diff --git a/account_financial_report_qweb/wizard/general_ledger_wizard.py b/account_financial_report_qweb/wizard/general_ledger_wizard.py index 78ea585f..b8a5476e 100644 --- a/account_financial_report_qweb/wizard/general_ledger_wizard.py +++ b/account_financial_report_qweb/wizard/general_ledger_wizard.py @@ -215,10 +215,11 @@ class GeneralLedgerReportWizard(models.TransientModel): @api.onchange('partner_ids') def onchange_partner_ids(self): """Handle partners change.""" - if self.partner_ids: + if ( + self.partner_ids and + not self.receivable_accounts_only and + not self.payable_accounts_only): self.receivable_accounts_only = self.payable_accounts_only = True - else: - self.receivable_accounts_only = self.payable_accounts_only = False @api.multi def button_export_html(self):