You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the order invoice issued date variable to be used in the transactional order invoice email
Expected behavior
The behavior of the invoice date inclusion in the transactional email template related to orders invoicing should be similar to the order date. Here the template for the order creation email template:
<h1>{{trans 'Your Order <span class="no-link">#%increment_id</span>' increment_id=$order.increment_id |raw}}</h1>
<p>{{trans 'Placed on <span class="no-link">%created_at</span>' created_at=$created_at_formatted |raw}}</p>
Here is the current template for the order invoice, where you can see it is lacking the invoice creation date:
{{trans "Your Invoice #%invoice_id for Order #%order_id" invoice_id=$invoice.increment_id order_id=$order.increment_id}}
Here is the expected template for the order invoice:
{{trans "Your Invoice #%invoice_id for Order #%order_id" invoice_id=$invoice.increment_id order_id=$order.increment_id}}
{{trans 'Create on %created_at' created_at=$created_at_formatted |raw}}
Hi @bamboekeizer. Thank you for your report.
To speed up processing of this issue, make sure that the issue is reproducible on the vanilla Magento instance following Steps to reproduce.
Add a comment to assign the issue: @magento I am working on this
To learn more about issue processing workflow, refer to the Code Contributions.
Join Magento Community Engineering Slack and ask your questions in #github channel. ⚠️ According to the Magento Contribution requirements, all issues must go through the Community Contributions Triage process. Community Contributions Triage is a public meeting.
🕙 You can find the schedule on the Magento Community Calendar page.
📞 The triage of issues happens in the queue order. If you want to speed up the delivery of your contribution, join the Community Contributions Triage session to discuss the appropriate ticket.
Description
Add the order invoice issued date variable to be used in the transactional order invoice email
Expected behavior
The behavior of the invoice date inclusion in the transactional email template related to orders invoicing should be similar to the order date. Here the template for the order creation email template:
Here is the current template for the order invoice, where you can see it is lacking the invoice creation date:
{{trans "Your Invoice #%invoice_id for Order #%order_id" invoice_id=$invoice.increment_id order_id=$order.increment_id}}
Here is the expected template for the order invoice:
{{trans "Your Invoice #%invoice_id for Order #%order_id" invoice_id=$invoice.increment_id order_id=$order.increment_id}}
{{trans 'Create on %created_at' created_at=$created_at_formatted |raw}}
Benefits
Now the order invoice emails comply with the requirements for information on an invoice according to EU regulation:
https://taxation-customs.ec.europa.eu/taxation/vat/vat-businesses/vat-invoicing_en
Additional information
No response
Release note
No response
The text was updated successfully, but these errors were encountered: