diff --git a/README.md b/README.md index 4d333bef6bc..ad8c4b7e25c 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ addon | version | maintainers | summary [account_invoice_payment_term_date_due](account_invoice_payment_term_date_due/) | 16.0.1.0.0 | [![ivantodorovich](https://github.com/ivantodorovich.png?size=30px)](https://github.com/ivantodorovich) | Display invoices date due when using payment terms [account_invoice_pricelist](account_invoice_pricelist/) | 16.0.1.0.2 | | Add partner pricelist on invoices [account_invoice_pricelist_sale](account_invoice_pricelist_sale/) | 16.0.1.0.0 | | Module to fill pricelist from sales order in invoice. +[account_invoice_recipient_bank_currency](account_invoice_recipient_bank_currency/) | 16.0.1.0.0 | | Module to fill recipient bank from invoices by using the invoice's currency. [account_invoice_refund_code](account_invoice_refund_code/) | 16.0.1.0.0 | | This module allows to have specific refund codes. [account_invoice_refund_line_selection](account_invoice_refund_line_selection/) | 16.0.1.0.0 | | This module allows the user to refund specific lines in a invoice [account_invoice_refund_link](account_invoice_refund_link/) | 16.0.1.0.4 | | Show links between refunds and their originator invoices. diff --git a/account_invoice_recipient_bank_currency/README.rst b/account_invoice_recipient_bank_currency/README.rst index 912673dd8f4..885e9a2a7cd 100644 --- a/account_invoice_recipient_bank_currency/README.rst +++ b/account_invoice_recipient_bank_currency/README.rst @@ -7,7 +7,7 @@ Account Invoice Recipient Bank Currency !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:4bd7da16a1841f967f6ce94b14ad413413f942e48c3dadde9da60e8663e78513 + !! source digest: sha256:c4663cc68753fa5abc97e10c84564c31d8be704193138af685e4120b8af7edde !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/account_invoice_recipient_bank_currency/static/description/icon.png b/account_invoice_recipient_bank_currency/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/account_invoice_recipient_bank_currency/static/description/icon.png differ diff --git a/account_invoice_recipient_bank_currency/static/description/index.html b/account_invoice_recipient_bank_currency/static/description/index.html index 1cf38a7337f..fd950808010 100644 --- a/account_invoice_recipient_bank_currency/static/description/index.html +++ b/account_invoice_recipient_bank_currency/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 @@

Account Invoice Recipient Bank Currency

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:4bd7da16a1841f967f6ce94b14ad413413f942e48c3dadde9da60e8663e78513 +!! source digest: sha256:c4663cc68753fa5abc97e10c84564c31d8be704193138af685e4120b8af7edde !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Beta License: AGPL-3 OCA/account-invoicing Translate me on Weblate Try me on Runboat

This module computes the ‘Recipient Bank’ field on invoices considering the @@ -415,7 +416,9 @@

Contributors

Maintainers

This module is maintained by the OCA.

-Odoo Community Association + +Odoo Community Association +

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/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index a90a4b5afaa..7d9ec867ef5 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -16.0.20240617.0 \ No newline at end of file +16.0.20240710.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 8dafedca0cf..69f020222cd 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -27,6 +27,7 @@ 'odoo-addon-account_invoice_payment_term_date_due>=16.0dev,<16.1dev', 'odoo-addon-account_invoice_pricelist>=16.0dev,<16.1dev', 'odoo-addon-account_invoice_pricelist_sale>=16.0dev,<16.1dev', + 'odoo-addon-account_invoice_recipient_bank_currency>=16.0dev,<16.1dev', 'odoo-addon-account_invoice_refund_code>=16.0dev,<16.1dev', 'odoo-addon-account_invoice_refund_line_selection>=16.0dev,<16.1dev', 'odoo-addon-account_invoice_refund_link>=16.0dev,<16.1dev',