diff --git a/addons/account/i18n/account.pot b/addons/account/i18n/account.pot
index 28cdc8116320f0ba749f88e8bb2a75a7a01d45f1..c389d46d375d2b649d8d8b085b5a0e83fdb6bf22 100644
--- a/addons/account/i18n/account.pot
+++ b/addons/account/i18n/account.pot
@@ -592,6 +592,11 @@ msgstr ""
 msgid "<strong>Company:</strong>"
 msgstr ""
 
+#. module: account
+#: model_terms:ir.ui.view,arch_db:account.report_invoice_document
+msgid "<strong>Credit Note Date:</strong>"
+msgstr ""
+
 #. module: account
 #: model_terms:ir.ui.view,arch_db:account.report_invoice_document
 msgid "<strong>Customer Code:</strong>"
@@ -602,6 +607,11 @@ msgstr ""
 msgid "<strong>Customer: </strong>"
 msgstr ""
 
+#. module: account
+#: model_terms:ir.ui.view,arch_db:account.report_invoice_document
+msgid "<strong>Date:</strong>"
+msgstr ""
+
 #. module: account
 #: model_terms:ir.ui.view,arch_db:account.report_invoice_document
 msgid "<strong>Due Date:</strong>"
diff --git a/addons/account/views/report_invoice.xml b/addons/account/views/report_invoice.xml
index 23b548881793a28e310e41737ba6c69beb46da02..39905fa2680469078eca59bff80b3e1935db7129 100644
--- a/addons/account/views/report_invoice.xml
+++ b/addons/account/views/report_invoice.xml
@@ -23,7 +23,9 @@
 
                     <div id="informations" class="row mt32 mb32">
                         <div class="col-auto mw-100 mb-2" t-if="o.invoice_date" name="invoice_date">
-                            <strong>Invoice Date:</strong>
+                            <t t-if="o.type == 'out_invoice'"><strong>Invoice Date:</strong></t>
+                            <t t-if="o.type == 'out_refund'"><strong>Credit Note Date:</strong></t>
+                            <t t-else=""><strong>Date:</strong></t>
                             <p class="m-0" t-field="o.invoice_date"/>
                         </div>
                         <div class="col-auto mw-100 mb-2" t-if="o.invoice_date_due and o.type == 'out_invoice' and o.state == 'posted'" name="due_date">