Skip to content

2.7.0

Compare
Choose a tag to compare
@rootpd rootpd released this 28 Jun 09:04
· 69 commits to master since this release
  • Added PreNotificationEventHandler which adds list of payment items to notification params so they can be listed in email. remp/crm#2812
    • Usage in Mailer template:
      <ul>
        {% for item in payment_items %}
        <li>{{ item.name }} - {{ item.count }} &times; {{ item.amount|format_currency('EUR') }} (VAT: {{ item.vat }}%)</li>
        {% endfor %}
      </ul>
  • Removed requirement to provide status in OrdersRepository::update() when updating order. remp/crm#2880