Skip to content

Commit

Permalink
[REF] l10n_it_central_journal_reportlab: update title like report in …
Browse files Browse the repository at this point in the history
…"l10n_it_central_journal"
  • Loading branch information
Borruso committed Jan 11, 2024
1 parent 86eea02 commit a7e1e1f
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 @@ -201,7 +201,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.env.user.company_id.name)
report.drawString(
margin_left,
height_available,
self.env.user.company_id.name + _(" Account Central Journal"),
)
report.setFont("Helvetica", 10)
text = ""
if self.env.user.company_id.street:
Expand Down

0 comments on commit a7e1e1f

Please sign in to comment.