Delete the useless False default values for boolean fields
parent
2af9293e78
commit
6b9220feb6
|
@ -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.")
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -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…
Reference in New Issue