[MIG] account_financial_report_qweb: Migration to 11.0

* dynamize general ledger
This commit is contained in:
Jordi Ballester
2017-11-23 16:23:46 +01:00
committed by chaule97
parent caf8ce9698
commit 554ad61027
48 changed files with 8923 additions and 0 deletions

View 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

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