[MIG] account_financial_report_qweb: Migration to 11.0
* dynamize general ledger
This commit is contained in:
committed by
chaule97
parent
caf8ce9698
commit
554ad61027
6
account_financial_report/models/__init__.py
Normal file
6
account_financial_report/models/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
||||
|
||||
# Author: Damien Crier
|
||||
# Copyright 2016 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import account
|
||||
14
account_financial_report/models/account.py
Normal file
14
account_financial_report/models/account.py
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
# ?? 2011 Guewen Baconnier (Camptocamp)
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).-
|
||||
from odoo import models, fields
|
||||
|
||||
|
||||
class AccountAccount(models.Model):
|
||||
_inherit = 'account.account'
|
||||
|
||||
centralized = fields.Boolean(
|
||||
'Centralized',
|
||||
help="If flagged, no details will be displayed in "
|
||||
"the General Ledger report (the webkit one only), "
|
||||
"only centralized amounts per period.")
|
||||
Reference in New Issue
Block a user