From 72075c8b5de86b467ffded8dac2393e5694678c7 Mon Sep 17 00:00:00 2001 From: Guewen Baconnier Date: Wed, 19 Nov 2014 15:39:34 +0100 Subject: [PATCH] Remove print statements --- account_financial_report/report/parser.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/account_financial_report/report/parser.py b/account_financial_report/report/parser.py index 862f8104..c4d308ad 100644 --- a/account_financial_report/report/parser.py +++ b/account_financial_report/report/parser.py @@ -379,7 +379,6 @@ class account_balance(report_sxw.rml_parse): res = [] am_obj = self.pool.get('account.move') - print 'AM OBJ ', am_obj if account['type'] in ('other', 'liquidity', 'receivable', 'payable'): # ~ TODO: CUANDO EL PERIODO ESTE VACIO LLENARLO CON LOS PERIODOS # DEL EJERCICIO @@ -415,8 +414,6 @@ class account_balance(report_sxw.rml_parse): 'period': det['periodo'], 'obj': am_obj.browse(self.cr, self.uid, det['am_id']) }) - print 'ACCOUNT NAME', am_obj.browse(self.cr, self.uid, - det['am_id']).name return res def lines(self, form, level=0):