Skip to content

Commit

Permalink
Merge PR #3537 into 14.0
Browse files Browse the repository at this point in the history
Signed-off-by sergiocorato
  • Loading branch information
OCA-git-bot committed Feb 28, 2024
2 parents 2dddca5 + abad789 commit 1a8becd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion l10n_it_central_journal_reportlab/wizard/print_giornale.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,11 @@ def _get_account_name_reportlab(self, line):
def get_template_header_report_giornale(self, report, height_available):
report.setFont("Helvetica-Bold", 12)
height_available -= gap
report.drawString(margin_left, height_available, self.company_id.name)
report.drawString(
margin_left,
height_available,
self.company_id.name + _(" - Account Central Journal"),
)
report.setFont("Helvetica", 10)
text = ""
if self.company_id.street:
Expand Down

0 comments on commit 1a8becd

Please sign in to comment.