Browse Source

Delete the useless False default values for boolean fields

pull/211/head
jcoux 8 years ago
parent
commit
6b9220feb6
  1. 1
      account_financial_report_qweb/models/account.py
  2. 4
      account_financial_report_qweb/wizard/general_ledger_wizard.py
  3. 4
      account_financial_report_qweb/wizard/open_items_wizard.py
  4. 4
      account_financial_report_qweb/wizard/trial_balance_wizard.py

1
account_financial_report_qweb/models/account.py

@ -9,7 +9,6 @@ class AccountAccount(models.Model):
centralized = fields.Boolean(
'Centralized',
default=False,
help="If flagged, no details will be displayed in "
"the General Ledger report (the webkit one only), "
"only centralized amounts per period.")

4
account_financial_report_qweb/wizard/general_ledger_wizard.py

@ -42,8 +42,8 @@ class GeneralLedgerReportWizard(models.TransientModel):
help='Use this filter to hide an account or a partner '
'with an ending balance at 0. '
'If partners are filtered, '
'debits and credits totals will not match the trial balance.',
default=False)
'debits and credits totals will not match the trial balance.'
)
receivable_accounts_only = fields.Boolean()
payable_accounts_only = fields.Boolean()
partner_ids = fields.Many2many(

4
account_financial_report_qweb/wizard/open_items_wizard.py

@ -35,8 +35,8 @@ class OpenItemsReportWizard(models.TransientModel):
help='Use this filter to hide an account or a partner '
'with an ending balance at 0. '
'If partners are filtered, '
'debits and credits totals will not match the trial balance.',
default=False)
'debits and credits totals will not match the trial balance.'
)
receivable_accounts_only = fields.Boolean()
payable_accounts_only = fields.Boolean()
partner_ids = fields.Many2many(

4
account_financial_report_qweb/wizard/trial_balance_wizard.py

@ -39,8 +39,8 @@ class TrialBalanceReportWizard(models.TransientModel):
help='Use this filter to hide an account or a partner '
'with an ending balance at 0. '
'If partners are filtered, '
'debits and credits totals will not match the trial balance.',
default=False)
'debits and credits totals will not match the trial balance.'
)
receivable_accounts_only = fields.Boolean()
payable_accounts_only = fields.Boolean()
show_partner_details = fields.Boolean()

Loading…
Cancel
Save