Delete the useless False default values for boolean fields

pull/211/head
jcoux 2016-08-10 10:41:45 +02:00
parent 2af9293e78
commit 6b9220feb6
4 changed files with 6 additions and 7 deletions

View File

@ -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.")

View File

@ -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(

View File

@ -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(

View File

@ -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()