mirror of
https://gitlab.com/flectra-community/account-financial-reporting.git
synced 2024-11-14 17:52:06 +00:00
13 lines
281 B
Python
13 lines
281 B
Python
|
# Copyright 2019 ADHOC SA
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||
|
from flectra import fields, models
|
||
|
|
||
|
|
||
|
class AccountAccount(models.Model):
|
||
|
|
||
|
_inherit = "account.account"
|
||
|
|
||
|
hide_in_cash_flow = fields.Boolean(
|
||
|
string="Hide in Cash Flow?",
|
||
|
)
|