From 5a7af5b6ba92c6f53984a540b9820044efc4e6ab Mon Sep 17 00:00:00 2001 From: Nhomar Hernandez Date: Mon, 17 Jun 2013 19:22:03 -0530 Subject: [PATCH] [PEP8] --- account_financial_report/model/res_company.py | 23 ++++++++++--------- 1 file changed, 12 insertions(+), 11 deletions(-) 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()