Merge PR #995 into 16.0

Signed-off-by pedrobaeza
pull/998/head
OCA-git-bot 2023-01-17 14:29:19 +00:00
commit dad282566a
2 changed files with 3 additions and 6 deletions

View File

@ -146,7 +146,7 @@ class GeneralLedgerXslx(models.AbstractModel):
# For each account
for account in general_ledger:
# Write account title
total_bal_curr = account["init_bal"].get("bal_curr", 0)
total_bal_curr = 0
self.write_array_title(
account["code"] + " - " + accounts_data[account["id"]]["name"],
report_data,
@ -235,7 +235,7 @@ class GeneralLedgerXslx(models.AbstractModel):
else:
# For each partner
total_bal_curr = account["init_bal"]["bal_curr"]
total_bal_curr = 0
for group_item in account["list_grouped"]:
# Write partner title
self.write_array_title(group_item["name"], report_data)

View File

@ -363,10 +363,7 @@
</t>
</div>
<!-- Display each lines -->
<t
t-set="total_bal_curr"
t-value="account_or_group_item_object['init_bal'].get('bal_curr', 0)"
/>
<t t-set="total_bal_curr" t-value="0" />
<t t-foreach="account_or_group_item_object['move_lines']" t-as="line">
<!-- # lines or centralized lines -->
<div class="act_as_row lines">