From bd59041b96769d3d8652e1218dcb0fde90ebc354 Mon Sep 17 00:00:00 2001 From: Lorenzo Battistini Date: Thu, 26 Sep 2013 18:19:44 +0200 Subject: [PATCH] [FIX] missing items in parser --- .../report/account_balance_sheet.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/account_financial_report_horizontal/report/account_balance_sheet.py b/account_financial_report_horizontal/report/account_balance_sheet.py index a4ff96b8..535e7cfd 100644 --- a/account_financial_report_horizontal/report/account_balance_sheet.py +++ b/account_financial_report_horizontal/report/account_balance_sheet.py @@ -134,6 +134,7 @@ class report_balancesheet_horizontal(report_sxw.rml_parse, common_report_header) 'name': self.res_bl['type'], 'level': False, 'balance':self.res_bl['balance'], + 'type':self.res_bl['type'], } for typ in types: accounts_temp = [] @@ -197,6 +198,7 @@ class report_balancesheet_horizontal(report_sxw.rml_parse, common_report_header) 'code1': cal_list['asset'][i]['code'], 'name1': cal_list['asset'][i]['name'], 'level1': cal_list['asset'][i]['level'], + 'balance1':cal_list['asset'][i]['balance'], 'type1':cal_list['asset'][i]['type'], } self.result_temp.append(temp)