diff --git a/account_financial_report/model/res_company.py b/account_financial_report/model/res_company.py index e2b6d84f..d6afd580 100755 --- a/account_financial_report/model/res_company.py +++ b/account_financial_report/model/res_company.py @@ -4,8 +4,8 @@ # Module Writen to OpenERP, Open Source Management Solution # Copyright (C) OpenERP Venezuela (). # All Rights Reserved -###############Credits###################################################### -# Coded by: Humberto Arocha +# Credits###################################################### +# Coded by: Humberto Arocha # Planified by: Rafael Silva # Audited by: Nhomar Hernandez ############################################################################# @@ -21,22 +21,23 @@ # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -################################################################################ +########################################################################## from osv import osv from osv import fields from tools.translate import _ + class res_company(osv.osv): _inherit = 'res.company' _columns = { - 'credit_account_ids':fields.many2many('account.account', - 'credit_account_company_rel', - 'company_id', 'account_id', - 'Creditable Accounts'), - 'debit_account_ids':fields.many2many('account.account', - 'debit_account_company_rel', - 'company_id', 'account_id', - 'Debitable Accounts'), + 'credit_account_ids': fields.many2many('account.account', + 'credit_account_company_rel', + 'company_id', 'account_id', + 'Creditable Accounts'), + 'debit_account_ids': fields.many2many('account.account', + 'debit_account_company_rel', + 'company_id', 'account_id', + 'Debitable Accounts'), } res_company()