Browse Source

fix not hide line of accounts in trial balance

pull/685/head
Rodrigo Bonilla 4 years ago
parent
commit
6525c6646a
  1. 2
      account_financial_report/report/templates/trial_balance.xml

2
account_financial_report/report/templates/trial_balance.xml

@ -59,7 +59,7 @@
<!-- Display partner lines -->
<t t-if="show_partner_details">
<t t-set="padding" t-value="0"/>
<t t-foreach="o.account_ids" t-as="account">
<t t-foreach="o.account_ids.filtered(lambda a: not a.hide_line)" t-as="account">
<div class="page_break">
<t t-set="style" t-value="'font-size:8px;'"/>
<t t-set="padding" t-value="account.level * 4"/>

Loading…
Cancel
Save