diff --git a/account_payment_order_notification/migrations/14.0.1.2.0/noupdate_changes.xml b/account_payment_order_notification/migrations/14.0.1.2.0/noupdate_changes.xml deleted file mode 100644 index 31b2f608c..000000000 --- a/account_payment_order_notification/migrations/14.0.1.2.0/noupdate_changes.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - -

Hello ${object.partner_id.name or ''},

- % if object.order_id.payment_type == 'inbound': -

A debit order including at least one of your invoices has been processed and sent to the bank.

- % else: -

A payment order including at least one of your invoices has been processed and sent to the bank.

- % endif -

It includes the following transactions:

- - - - - - - - - - % for payment_line in object.payment_line_ids: - - - - - - % endfor - -
NumberDateAmount
${payment_line.communication}${payment_line.date}${format_amount(payment_line.amount_currency, payment_line.currency_id)}
-

Do not hesitate to contact us if you have any questions.

- - ]]>
-
-
diff --git a/account_payment_order_notification/migrations/14.0.1.2.0/post-migration.py b/account_payment_order_notification/migrations/14.0.1.2.0/post-migration.py deleted file mode 100644 index 56b2c642e..000000000 --- a/account_payment_order_notification/migrations/14.0.1.2.0/post-migration.py +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 2022 Tecnativa - Víctor Martínez -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). - -from openupgradelib import openupgrade - - -@openupgrade.migrate() -def migrate(env, version): - openupgrade.load_data( - env.cr, - "account_payment_order_notification", - "migrations/14.0.1.2.0/noupdate_changes.xml", - ) - openupgrade.delete_record_translations( - env.cr, - "account_payment_order_notification", - ["email_account_payment_order_notification"], - )