Browse Source

[FIX] missing items in parser

pull/7/merge
Lorenzo Battistini 11 years ago
parent
commit
dfceb3b091
  1. 2
      account_financial_report_horizontal/report/account_balance_sheet.py

2
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)

Loading…
Cancel
Save