diff --git a/README.md b/README.md
index 1a03e78fb33..0cd96b82726 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,7 @@ addon | version | maintainers | summary
[account_payment_mode](account_payment_mode/) | 16.0.1.2.2 | | Account Payment Mode
[account_payment_order](account_payment_order/) | 16.0.1.13.0 | | Account Payment Order
[account_payment_order_grouped_output](account_payment_order_grouped_output/) | 16.0.1.0.3 | | Account Payment Order - Generate grouped moves
-[account_payment_order_notification](account_payment_order_notification/) | 16.0.1.0.1 | [](https://github.com/victoralmau) | Account Payment Order Notification
+[account_payment_order_notification](account_payment_order_notification/) | 16.0.1.0.2 | [](https://github.com/victoralmau) | Account Payment Order Notification
[account_payment_order_return](account_payment_order_return/) | 16.0.1.0.1 | | Account Payment Order Return
[account_payment_order_tier_validation](account_payment_order_tier_validation/) | 16.0.1.0.0 | [](https://github.com/marcelsavegnago) | Extends the functionality of Payment Orders to support a tier validation process.
[account_payment_order_vendor_email](account_payment_order_vendor_email/) | 16.0.1.0.0 | [](https://github.com/ursais) | Account Payment Order Email
diff --git a/account_payment_order_notification/README.rst b/account_payment_order_notification/README.rst
index ad29461b2f5..720790b1406 100644
--- a/account_payment_order_notification/README.rst
+++ b/account_payment_order_notification/README.rst
@@ -7,7 +7,7 @@ Account Payment Order Notification
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- !! source digest: sha256:e5ad04ecc8cfa4d7eef0547b8b8a62a83f7906228b463c1cf7f1029e8d555a42
+ !! source digest: sha256:3a7bbb1737ef3bb4768824e7030ae0b93e1a8aabd8c5330efed63c9aee4f40f3
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
diff --git a/account_payment_order_notification/__manifest__.py b/account_payment_order_notification/__manifest__.py
index 46b7dd6ab1d..afa7de46270 100644
--- a/account_payment_order_notification/__manifest__.py
+++ b/account_payment_order_notification/__manifest__.py
@@ -2,7 +2,7 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Account Payment Order Notification",
- "version": "16.0.1.0.1",
+ "version": "16.0.1.0.2",
"category": "Banking addons",
"website": "https://github.com/OCA/bank-payment",
"author": "Tecnativa, Odoo Community Association (OCA)",
diff --git a/account_payment_order_notification/static/description/index.html b/account_payment_order_notification/static/description/index.html
index 2da544b8c28..c72ddca52b1 100644
--- a/account_payment_order_notification/static/description/index.html
+++ b/account_payment_order_notification/static/description/index.html
@@ -8,10 +8,11 @@
/*
:Author: David Goodger (goodger@python.org)
-:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
+:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
+Despite the name, some widely supported CSS2 features are used.
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
customize this style sheet.
@@ -274,7 +275,7 @@
margin-left: 2em ;
margin-right: 2em }
-pre.code .ln { color: grey; } /* line numbers */
+pre.code .ln { color: gray; } /* line numbers */
pre.code, code { background-color: #eeeeee }
pre.code .comment, code .comment { color: #5C6576 }
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
@@ -300,7 +301,7 @@
span.pre {
white-space: pre }
-span.problematic {
+span.problematic, pre.problematic {
color: red }
span.section-subtitle {
@@ -366,7 +367,7 @@
This module adds a button on debit / payment orders to send an email to each related partner with the details of their transactions.
@@ -454,7 +455,9 @@
This module is maintained by the OCA.
-

+
+
+
OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
diff --git a/account_payment_order_notification/tests/test_account_payment_order_notification.py b/account_payment_order_notification/tests/test_account_payment_order_notification.py
index 43dec66783a..4c6da1ee177 100644
--- a/account_payment_order_notification/tests/test_account_payment_order_notification.py
+++ b/account_payment_order_notification/tests/test_account_payment_order_notification.py
@@ -1,12 +1,22 @@
# Copyright 2022 Tecnativa - Víctor Martínez
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
-from odoo.tests import Form, TransactionCase
+from odoo.tests import Form, TransactionCase, tagged
+@tagged("post_install", "-at_install")
class TestAccountPaymentOrderNotification(TransactionCase):
@classmethod
def setUpClass(cls):
super().setUpClass()
+ if not cls.env.company.chart_template_id:
+ # Load a CoA if there's none in current company
+ coa = cls.env.ref("l10n_generic_coa.configurable_chart_template", False)
+ if not coa:
+ # Load the first available CoA
+ coa = cls.env["account.chart.template"].search(
+ [("visible", "=", True)], limit=1
+ )
+ coa.try_loading(company=cls.env.company, install_demo=False)
cls.payment_mode = cls.env.ref("account_payment_mode.payment_mode_inbound_dd1")
cls.partner_a = cls.env["res.partner"].create({"name": "Test partner A"})
cls.partner_a_child = cls.env["res.partner"].create(