From 1b1e09ebb19ee3efabbc4828d3bd291eddd5e0f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Honor=C3=A9?= Date: Tue, 31 Dec 2024 11:01:04 +0100 Subject: [PATCH] [IMP] partner_invoicing_mode_weekly: pre-commit auto fixes --- partner_invoicing_mode_weekly/README.rst | 48 ++++++++------ partner_invoicing_mode_weekly/__manifest__.py | 2 +- partner_invoicing_mode_weekly/pyproject.toml | 3 + .../readme/CONTRIBUTORS.md | 7 ++ .../readme/CONTRIBUTORS.rst | 7 -- .../readme/{CREDITS.rst => CREDITS.md} | 2 +- .../readme/DESCRIPTION.md | 3 + .../readme/DESCRIPTION.rst | 4 -- .../static/description/index.html | 64 +++++++++++-------- .../tests/test_invoice_mode_weekly.py | 1 - 10 files changed, 79 insertions(+), 62 deletions(-) create mode 100644 partner_invoicing_mode_weekly/pyproject.toml create mode 100644 partner_invoicing_mode_weekly/readme/CONTRIBUTORS.md delete mode 100644 partner_invoicing_mode_weekly/readme/CONTRIBUTORS.rst rename partner_invoicing_mode_weekly/readme/{CREDITS.rst => CREDITS.md} (83%) create mode 100644 partner_invoicing_mode_weekly/readme/DESCRIPTION.md delete mode 100644 partner_invoicing_mode_weekly/readme/DESCRIPTION.rst diff --git a/partner_invoicing_mode_weekly/README.rst b/partner_invoicing_mode_weekly/README.rst index c3e9f797ed0..fc1ccb638a0 100644 --- a/partner_invoicing_mode_weekly/README.rst +++ b/partner_invoicing_mode_weekly/README.rst @@ -2,10 +2,13 @@ Account Invoice Mode Weekly =========================== -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:de4449622b7690b9b23efaab7fb55fb5cb5f6ff6a838e3ba9b4edf436aa57faf + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -14,21 +17,20 @@ Account Invoice Mode Weekly :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--invoicing-lightgray.png?logo=github - :target: https://github.com/OCA/account-invoicing/tree/14.0/account_invoice_mode_weekly + :target: https://github.com/OCA/account-invoicing/tree/18.0/partner_invoicing_mode_weekly :alt: OCA/account-invoicing .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/account-invoicing-14-0/account-invoicing-14-0-account_invoice_mode_weekly + :target: https://translation.odoo-community.org/projects/account-invoicing-18-0/account-invoicing-18-0-partner_invoicing_mode_weekly :alt: Translate me on Weblate -.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/95/14.0 - :alt: Try me on Runbot +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/account-invoicing&target_branch=18.0 + :alt: Try me on Runboat -|badge1| |badge2| |badge3| |badge4| |badge5| +|badge1| |badge2| |badge3| |badge4| |badge5| -This module allows to select a weekly invoicing mode for a customer. -It is based on `account_invoice_base_invoicing_mode`. -When this mode is selected for a customer, the customer will be automatically -invoiced +This module allows to select a weekly invoicing mode for a customer. It +is based on account_invoice_base_invoicing_mode. When this mode is +selected for a customer, the customer will be automatically invoiced **Table of contents** @@ -40,8 +42,8 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. -If you spotted it first, help us smashing it by providing a detailed and welcomed -`feedback `_. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -49,26 +51,30 @@ Credits ======= Authors -~~~~~~~ +------- * Camptocamp Contributors -~~~~~~~~~~~~ +------------ + +- `Camptocamp `__: -* `Camptocamp `_: + - Julien Coux - * Julien Coux +- `ACSONE SA/NV `__: + + - Denis Roussel Other credits -~~~~~~~~~~~~~ +------------- The development of this module has been financially supported by: -* Camptocamp +- Camptocamp Maintainers -~~~~~~~~~~~ +----------- This module is maintained by the OCA. @@ -80,6 +86,6 @@ 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. -This module is part of the `OCA/account-invoicing `_ project on GitHub. +This module is part of the `OCA/account-invoicing `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/partner_invoicing_mode_weekly/__manifest__.py b/partner_invoicing_mode_weekly/__manifest__.py index 680d99a8f9f..438c55a71f0 100644 --- a/partner_invoicing_mode_weekly/__manifest__.py +++ b/partner_invoicing_mode_weekly/__manifest__.py @@ -2,7 +2,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Account Invoice Mode Weekly", - "version": "16.0.1.0.0", + "version": "18.0.1.0.0", "summary": "Create invoices automatically on a weekly basis.", "author": "Camptocamp, Odoo Community Association (OCA)", "website": "https://github.com/OCA/account-invoicing", diff --git a/partner_invoicing_mode_weekly/pyproject.toml b/partner_invoicing_mode_weekly/pyproject.toml new file mode 100644 index 00000000000..4231d0cccb3 --- /dev/null +++ b/partner_invoicing_mode_weekly/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/partner_invoicing_mode_weekly/readme/CONTRIBUTORS.md b/partner_invoicing_mode_weekly/readme/CONTRIBUTORS.md new file mode 100644 index 00000000000..dfccb67f943 --- /dev/null +++ b/partner_invoicing_mode_weekly/readme/CONTRIBUTORS.md @@ -0,0 +1,7 @@ +- [Camptocamp](https://www.camptocamp.com): + + > - Julien Coux \<\> + +- [ACSONE SA/NV](https://acsone.eu): + + > - Denis Roussel \<\> diff --git a/partner_invoicing_mode_weekly/readme/CONTRIBUTORS.rst b/partner_invoicing_mode_weekly/readme/CONTRIBUTORS.rst deleted file mode 100644 index 408cf443dc0..00000000000 --- a/partner_invoicing_mode_weekly/readme/CONTRIBUTORS.rst +++ /dev/null @@ -1,7 +0,0 @@ -* `Camptocamp `_: - - * Julien Coux - -* `ACSONE SA/NV `_: - - * Denis Roussel diff --git a/partner_invoicing_mode_weekly/readme/CREDITS.rst b/partner_invoicing_mode_weekly/readme/CREDITS.md similarity index 83% rename from partner_invoicing_mode_weekly/readme/CREDITS.rst rename to partner_invoicing_mode_weekly/readme/CREDITS.md index f5cc070c78e..705d3b30cad 100644 --- a/partner_invoicing_mode_weekly/readme/CREDITS.rst +++ b/partner_invoicing_mode_weekly/readme/CREDITS.md @@ -1,3 +1,3 @@ The development of this module has been financially supported by: -* Camptocamp +- Camptocamp diff --git a/partner_invoicing_mode_weekly/readme/DESCRIPTION.md b/partner_invoicing_mode_weekly/readme/DESCRIPTION.md new file mode 100644 index 00000000000..02f4de405db --- /dev/null +++ b/partner_invoicing_mode_weekly/readme/DESCRIPTION.md @@ -0,0 +1,3 @@ +This module allows to select a weekly invoicing mode for a customer. It +is based on account_invoice_base_invoicing_mode. When this mode is +selected for a customer, the customer will be automatically invoiced diff --git a/partner_invoicing_mode_weekly/readme/DESCRIPTION.rst b/partner_invoicing_mode_weekly/readme/DESCRIPTION.rst deleted file mode 100644 index e71c8dfdbbc..00000000000 --- a/partner_invoicing_mode_weekly/readme/DESCRIPTION.rst +++ /dev/null @@ -1,4 +0,0 @@ -This module allows to select a weekly invoicing mode for a customer. -It is based on `account_invoice_base_invoicing_mode`. -When this mode is selected for a customer, the customer will be automatically -invoiced diff --git a/partner_invoicing_mode_weekly/static/description/index.html b/partner_invoicing_mode_weekly/static/description/index.html index f1fc21a00c0..cfe9f6ef13e 100644 --- a/partner_invoicing_mode_weekly/static/description/index.html +++ b/partner_invoicing_mode_weekly/static/description/index.html @@ -1,20 +1,20 @@ - - + Account Invoice Mode Weekly