Browse Source

Merge pull request #519 from akretion/10-report_qweb_partner_usability

[10.0] account_financial_report_qweb: usability improvement on onchange_partner_ids
pull/527/head
Alexis de Lattre 5 years ago
committed by GitHub
parent
commit
f2e19c6ab6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      account_financial_report_qweb/wizard/general_ledger_wizard.py

7
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):

Loading…
Cancel
Save