Merge pull request #104 from Noviat/16-oca-payment-order

[16.0] add support for OCA payment order
This commit is contained in:
Luc De Meyer 2023-08-05 18:28:54 +02:00 committed by GitHub
commit 9caa7d69be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 7 deletions

View File

@ -22,7 +22,3 @@ Usage
Create your Payment Order and generate the bank file. Create your Payment Order and generate the bank file.
Upload the generated file via the 'EBICS Upload' button on the payment order. Upload the generated file via the 'EBICS Upload' button on the payment order.
Known issues / Roadmap
======================
* Add support for multiple EBICS connections.

View File

@ -12,8 +12,6 @@
"data": [ "data": [
"views/account_payment_order_views.xml", "views/account_payment_order_views.xml",
], ],
# installable False unit OCA payment order becomes
# available for 16.0
"images": ["static/description/cover.png"], "images": ["static/description/cover.png"],
"installable": False, "installable": True,
} }

View File

@ -0,0 +1 @@
../../../../account_ebics_payment_order

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)