Skip to content

Commit

Permalink
[IMP] base_import_pdf_by_template: Add dd b YY date_format compatibility
Browse files Browse the repository at this point in the history
TT50003
  • Loading branch information
victoralmau committed Oct 30, 2024
1 parent 1552a37 commit 5c09daf
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,8 @@ class BaseImportPdfTemplateLine(models.Model):
("*d.*m.*Y", _("dd.MM.YY")),
("*d/*m/*Y", _("dd/MM/YY")),
("*d/*m/*y-short", _("dd/MM/yy")),
("*B *d, *Y", _("B d, YY")),
("*B *d, *Y", _("B dd, YY")),
("*d *b *Y", _("dd b YY")),
],
)
time_format = fields.Selection(
Expand Down

0 comments on commit 5c09daf

Please sign in to comment.