diff --git a/.copier-answers.yml b/.copier-answers.yml index 60355af1..525241f3 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,5 +1,5 @@ # Do NOT update manually; changes here will be overwritten by Copier -_commit: v1.29 +_commit: v1.39 _src_path: https://github.com/OCA/oca-addons-repo-template.git ci: GitHub convert_readme_fragments_to_markdown: true diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..e0d56685 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +test-requirements.txt merge=union diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index ccf084df..7b384a12 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -17,6 +17,8 @@ jobs: - uses: actions/setup-python@v5 with: python-version: "3.11" + cache: 'pip' + cache-dependency-path: '.pre-commit-config.yaml' - name: Get python version run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV - uses: actions/cache@v4 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2033db9f..af75e44f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -62,6 +62,13 @@ jobs: run: oca_init_test_database - name: Run tests run: oca_run_tests + - name: Upload screenshots from JS tests + uses: actions/upload-artifact@v4 + if: ${{ failure() }} + with: + name: Screenshots of failed JS tests - ${{ matrix.name }}${{ join(matrix.include) }} + path: /tmp/odoo_tests/${{ env.PGDATABASE }} + if-no-files-found: ignore - name: Update .pot files run: oca_export_and_push_pot https://x-access-token:${{ secrets.GIT_PUSH_TOKEN }}@github.com/${{ github.repository }} if: ${{ matrix.makepot == 'true' && github.event_name == 'push' && github.repository_owner == 'qrtl' }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index cd9bb1f5..d8386eff 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -39,7 +39,7 @@ repos: language: fail files: '[a-zA-Z0-9_]*/i18n/en\.po$' - repo: https://github.com/oca/maintainer-tools - rev: d5fab7ee87fceee858a3d01048c78a548974d935 + rev: f9b919b9868143135a9c9cb03021089cabba8223 hooks: # update the NOT INSTALLABLE ADDONS section above - id: oca-update-pre-commit-excluded-addons @@ -105,6 +105,7 @@ repos: additional_dependencies: - "eslint@v7.32.0" - "eslint-plugin-jsdoc@" + - "globals@" - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.0.1 hooks: @@ -141,7 +142,7 @@ repos: - --settings=. exclude: /__init__\.py$ - repo: https://github.com/acsone/setuptools-odoo - rev: 3.1.8 + rev: 3.3.2 hooks: - id: setuptools-odoo-make-default - id: setuptools-odoo-get-requirements diff --git a/.pylintrc b/.pylintrc index e711803f..7ed3f3d7 100644 --- a/.pylintrc +++ b/.pylintrc @@ -25,19 +25,25 @@ disable=all enable=anomalous-backslash-in-string, api-one-deprecated, api-one-multi-together, - assignment-from-none, - attribute-deprecated, class-camelcase, - dangerous-default-value, dangerous-view-replace-wo-priority, - development-status-allowed, duplicate-id-csv, - duplicate-key, duplicate-xml-fields, duplicate-xml-record-id, eval-referenced, - eval-used, incoherent-interpreter-exec-perm, + openerp-exception-warning, + redundant-modulename-xml, + relative-import, + rst-syntax-error, + wrong-tabs-instead-of-spaces, + xml-syntax-error, + assignment-from-none, + attribute-deprecated, + dangerous-default-value, + development-status-allowed, + duplicate-key, + eval-used, license-allowed, manifest-author-string, manifest-deprecated-key, @@ -48,72 +54,67 @@ enable=anomalous-backslash-in-string, method-inverse, method-required-super, method-search, - openerp-exception-warning, pointless-statement, pointless-string-statement, print-used, redundant-keyword-arg, - redundant-modulename-xml, reimported, - relative-import, return-in-init, - rst-syntax-error, sql-injection, too-few-format-args, translation-field, translation-required, unreachable, use-vim-comment, - wrong-tabs-instead-of-spaces, - xml-syntax-error, - attribute-string-redundant, character-not-valid-in-resource-link, - consider-merging-classes-inherited, - context-overridden, create-user-wo-reset-password, dangerous-filter-wo-user, dangerous-qweb-replace-wo-priority, deprecated-data-xml-node, deprecated-openerp-xml-node, duplicate-po-message-definition, - except-pass, file-not-used, + missing-newline-extrafiles, + old-api7-method-defined, + po-msgstr-variables, + po-syntax-error, + str-format-used, + unnecessary-utf8-coding-comment, + xml-attribute-translatable, + xml-deprecated-qweb-directive, + xml-deprecated-tree-attribute, + attribute-string-redundant, + consider-merging-classes-inherited, + context-overridden, + except-pass, invalid-commit, manifest-maintainers-list, - missing-newline-extrafiles, missing-readme, missing-return, odoo-addons-relative-import, - old-api7-method-defined, - po-msgstr-variables, - po-syntax-error, renamed-field-parameter, resource-not-exist, - str-format-used, test-folder-imported, translation-contains-variable, translation-positional-used, - unnecessary-utf8-coding-comment, website-manifest-key-not-valid-uri, - xml-attribute-translatable, - xml-deprecated-qweb-directive, - xml-deprecated-tree-attribute, - # messages that do not cause the lint step to fail - consider-merging-classes-inherited, + missing-manifest-dependency, + too-complex,, create-user-wo-reset-password, dangerous-filter-wo-user, - deprecated-module, file-not-used, - invalid-commit, - missing-manifest-dependency, missing-newline-extrafiles, - missing-readme, no-utf8-coding-comment, - odoo-addons-relative-import, old-api7-method-defined, + unnecessary-utf8-coding-comment, + # messages that do not cause the lint step to fail + consider-merging-classes-inherited, + deprecated-module, + invalid-commit, + missing-readme, + odoo-addons-relative-import, redefined-builtin, - too-complex, - unnecessary-utf8-coding-comment + manifest-external-assets [REPORTS] diff --git a/.pylintrc-mandatory b/.pylintrc-mandatory index a0a9a669..9af02963 100644 --- a/.pylintrc-mandatory +++ b/.pylintrc-mandatory @@ -17,19 +17,25 @@ disable=all enable=anomalous-backslash-in-string, api-one-deprecated, api-one-multi-together, - assignment-from-none, - attribute-deprecated, class-camelcase, - dangerous-default-value, dangerous-view-replace-wo-priority, - development-status-allowed, duplicate-id-csv, - duplicate-key, duplicate-xml-fields, duplicate-xml-record-id, eval-referenced, - eval-used, incoherent-interpreter-exec-perm, + openerp-exception-warning, + redundant-modulename-xml, + relative-import, + rst-syntax-error, + wrong-tabs-instead-of-spaces, + xml-syntax-error, + assignment-from-none, + attribute-deprecated, + dangerous-default-value, + development-status-allowed, + duplicate-key, + eval-used, license-allowed, manifest-author-string, manifest-deprecated-key, @@ -40,56 +46,50 @@ enable=anomalous-backslash-in-string, method-inverse, method-required-super, method-search, - openerp-exception-warning, pointless-statement, pointless-string-statement, print-used, redundant-keyword-arg, - redundant-modulename-xml, reimported, - relative-import, return-in-init, - rst-syntax-error, sql-injection, too-few-format-args, translation-field, translation-required, unreachable, use-vim-comment, - wrong-tabs-instead-of-spaces, - xml-syntax-error, - attribute-string-redundant, character-not-valid-in-resource-link, - consider-merging-classes-inherited, - context-overridden, create-user-wo-reset-password, dangerous-filter-wo-user, dangerous-qweb-replace-wo-priority, deprecated-data-xml-node, deprecated-openerp-xml-node, duplicate-po-message-definition, - except-pass, file-not-used, + missing-newline-extrafiles, + old-api7-method-defined, + po-msgstr-variables, + po-syntax-error, + str-format-used, + unnecessary-utf8-coding-comment, + xml-attribute-translatable, + xml-deprecated-qweb-directive, + xml-deprecated-tree-attribute, + attribute-string-redundant, + consider-merging-classes-inherited, + context-overridden, + except-pass, invalid-commit, manifest-maintainers-list, - missing-newline-extrafiles, missing-readme, missing-return, odoo-addons-relative-import, - old-api7-method-defined, - po-msgstr-variables, - po-syntax-error, renamed-field-parameter, resource-not-exist, - str-format-used, test-folder-imported, translation-contains-variable, translation-positional-used, - unnecessary-utf8-coding-comment, - website-manifest-key-not-valid-uri, - xml-attribute-translatable, - xml-deprecated-qweb-directive, - xml-deprecated-tree-attribute + website-manifest-key-not-valid-uri [REPORTS] msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg} diff --git a/README.md b/README.md index 3d36c589..8f80edf1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ + +# RMM Custom [![Pre-commit Status](https://github.com/qrtl/rmm-custom/actions/workflows/pre-commit.yml/badge.svg?branch=15.0)](https://github.com/qrtl/rmm-custom/actions/workflows/pre-commit.yml?query=branch%3A15.0) [![Build Status](https://github.com/qrtl/rmm-custom/actions/workflows/test.yml/badge.svg?branch=15.0)](https://github.com/qrtl/rmm-custom/actions/workflows/test.yml?query=branch%3A15.0) @@ -7,8 +9,6 @@ -# RMM Custom - diff --git a/account_commission_listing_fee/README.rst b/account_commission_listing_fee/README.rst index cbd22f34..4354f633 100644 --- a/account_commission_listing_fee/README.rst +++ b/account_commission_listing_fee/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ============================== Account Commission listing Fee ============================== @@ -13,7 +17,7 @@ Account Commission listing Fee .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github diff --git a/account_commission_listing_fee/static/description/index.html b/account_commission_listing_fee/static/description/index.html index c0383eb6..50ac48b7 100644 --- a/account_commission_listing_fee/static/description/index.html +++ b/account_commission_listing_fee/static/description/index.html @@ -3,15 +3,16 @@ -Account Commission listing Fee +README.rst -
-

Account Commission listing Fee

+
+ + +Odoo Community Association + +
+

Account Commission listing Fee

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module adds the “Listing Fee” line to the vendor bill created from a settlement according to the commission configuration.

This module depends on “product_event_link” module for using “event_ids” @@ -386,7 +392,7 @@

Account Commission listing Fee

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -394,19 +400,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/account_commission_sales_fee/README.rst b/account_commission_sales_fee/README.rst index a2322fdd..5b439959 100644 --- a/account_commission_sales_fee/README.rst +++ b/account_commission_sales_fee/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ============================ Account Commission Sales Fee ============================ @@ -13,7 +17,7 @@ Account Commission Sales Fee .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github diff --git a/account_commission_sales_fee/static/description/index.html b/account_commission_sales_fee/static/description/index.html index 2facacf0..ddda401c 100644 --- a/account_commission_sales_fee/static/description/index.html +++ b/account_commission_sales_fee/static/description/index.html @@ -3,15 +3,16 @@ -Account Commission Sales Fee +README.rst -
-

Account Commission Sales Fee

+
+ + +Odoo Community Association + +
+

Account Commission Sales Fee

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module adds the “Sales Fee” line to the vendor bill created from a settlement according to the commission configuration.

Table of contents

@@ -383,7 +389,7 @@

Account Commission Sales Fee

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -391,19 +397,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/account_move_bill_date_auto_assign/README.rst b/account_move_bill_date_auto_assign/README.rst index c6f0297e..c21e0969 100644 --- a/account_move_bill_date_auto_assign/README.rst +++ b/account_move_bill_date_auto_assign/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ================================== Account Move Bill Date Auto Assign ================================== @@ -13,7 +17,7 @@ Account Move Bill Date Auto Assign .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github diff --git a/account_move_bill_date_auto_assign/static/description/index.html b/account_move_bill_date_auto_assign/static/description/index.html index 63e1fe76..84856054 100644 --- a/account_move_bill_date_auto_assign/static/description/index.html +++ b/account_move_bill_date_auto_assign/static/description/index.html @@ -3,15 +3,16 @@ -Account Move Bill Date Auto Assign +README.rst -
-

Account Move Bill Date Auto Assign

+
+ + +Odoo Community Association + +
+

Account Move Bill Date Auto Assign

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module assigns an invoice date to bills when users validate the bill and have not set the invoice date.

Table of contents

@@ -383,7 +389,7 @@

Account Move Bill Date Auto Assign

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -391,19 +397,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/account_move_delivered_amount/README.rst b/account_move_delivered_amount/README.rst index 959966fc..418f2539 100644 --- a/account_move_delivered_amount/README.rst +++ b/account_move_delivered_amount/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ============================= Account Move Delivered Amount ============================= @@ -13,7 +17,7 @@ Account Move Delivered Amount .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github diff --git a/account_move_delivered_amount/static/description/index.html b/account_move_delivered_amount/static/description/index.html index 95f41d65..fecbf1ab 100644 --- a/account_move_delivered_amount/static/description/index.html +++ b/account_move_delivered_amount/static/description/index.html @@ -3,15 +3,16 @@ -Account Move Delivered Amount +README.rst -
-

Account Move Delivered Amount

+
+ + +Odoo Community Association + +
+

Account Move Delivered Amount

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module adds delivered amount fields the customer invoice.

We regard service lines and credit notes as “delivered.”

Background:

@@ -390,7 +396,7 @@

Account Move Delivered Amount

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -398,19 +404,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/account_move_shop/README.rst b/account_move_shop/README.rst index 8b7df198..048cf614 100644 --- a/account_move_shop/README.rst +++ b/account_move_shop/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ================= Account Move Shop ================= @@ -13,7 +17,7 @@ Account Move Shop .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github diff --git a/account_move_shop/static/description/index.html b/account_move_shop/static/description/index.html index 69327814..5e6ead7c 100644 --- a/account_move_shop/static/description/index.html +++ b/account_move_shop/static/description/index.html @@ -3,15 +3,16 @@ -Account Move Shop +README.rst -
-

Account Move Shop

+
+ + +Odoo Community Association + +
+

Account Move Shop

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module add shop_id in account move.

Table of contents

@@ -382,7 +388,7 @@

Account Move Shop

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -390,19 +396,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/account_move_subject/README.rst b/account_move_subject/README.rst index 458e7b11..7b45ffa6 100644 --- a/account_move_subject/README.rst +++ b/account_move_subject/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ==================== Account Move Subject ==================== @@ -13,7 +17,7 @@ Account Move Subject .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html :alt: License: LGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github diff --git a/account_move_subject/static/description/index.html b/account_move_subject/static/description/index.html index d5b58b04..8104c058 100644 --- a/account_move_subject/static/description/index.html +++ b/account_move_subject/static/description/index.html @@ -3,15 +3,16 @@ -Account Move Subject +README.rst -
-

Account Move Subject

+
+ + +Odoo Community Association + +
+

Account Move Subject

-

Beta License: LGPL-3 qrtl/rmm-custom

+

Beta License: LGPL-3 qrtl/rmm-custom

This module adds subject field to account.move.

Table of contents

@@ -382,7 +388,7 @@

Account Move Subject

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -390,19 +396,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/account_partial_reconcile_restrict/README.rst b/account_partial_reconcile_restrict/README.rst index a407e6f3..feb5dd0d 100644 --- a/account_partial_reconcile_restrict/README.rst +++ b/account_partial_reconcile_restrict/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ================================== Account Partial Reconcile Restrict ================================== @@ -13,7 +17,7 @@ Account Partial Reconcile Restrict .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github diff --git a/account_partial_reconcile_restrict/static/description/index.html b/account_partial_reconcile_restrict/static/description/index.html index ef65a7ec..f4ca0873 100644 --- a/account_partial_reconcile_restrict/static/description/index.html +++ b/account_partial_reconcile_restrict/static/description/index.html @@ -3,15 +3,16 @@ -Account Partial Reconcile Restrict +README.rst -
-

Account Partial Reconcile Restrict

+
+ + +Odoo Community Association + +
+

Account Partial Reconcile Restrict

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module adds permissions to the unlink method of account.partial.reconcile model. Only users who belong to the “Accounting Manager” group can execute the unreconcile operation.

@@ -384,7 +390,7 @@

Account Partial Reconcile Restrict

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -392,19 +398,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/auction_custom_filter/README.rst b/auction_custom_filter/README.rst index cbd622f9..63bf87b6 100644 --- a/auction_custom_filter/README.rst +++ b/auction_custom_filter/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ===================== Auciton Custom Filter ===================== @@ -13,7 +17,7 @@ Auciton Custom Filter .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github @@ -24,10 +28,10 @@ Auciton Custom Filter This module does the following: -- Gvies auction users readonly access to ir.filters.group difined by - base_custom_filter (auction users cannot use filters, otherwisse) -- If auction_share in if.filters record is True, the filter can be used - by auction users. +- Gvies auction users readonly access to ir.filters.group difined by + base_custom_filter (auction users cannot use filters, otherwisse) +- If auction_share in if.filters record is True, the filter can be used + by auction users. **Table of contents** diff --git a/auction_custom_filter/static/description/index.html b/auction_custom_filter/static/description/index.html index bbee2d47..034a4dd9 100644 --- a/auction_custom_filter/static/description/index.html +++ b/auction_custom_filter/static/description/index.html @@ -3,15 +3,16 @@ -Auciton Custom Filter +README.rst -
-

Auciton Custom Filter

+
+ + +Odoo Community Association + +
+

Auciton Custom Filter

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module does the following:

  • Gvies auction users readonly access to ir.filters.group difined by @@ -388,7 +394,7 @@

    Auciton Custom Filter

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -396,19 +402,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/auction_seller/README.rst b/auction_seller/README.rst index d7f02baf..4fe957fe 100644 --- a/auction_seller/README.rst +++ b/auction_seller/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ============== Auction Seller ============== @@ -13,7 +17,7 @@ Auction Seller .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html :alt: License: LGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github @@ -24,8 +28,8 @@ Auction Seller This module does the following: -- Adds auction seller groups (Auction Seller). -- Adds Apps view of products for auction sellers +- Adds auction seller groups (Auction Seller). +- Adds Apps view of products for auction sellers **Table of contents** diff --git a/auction_seller/static/description/index.html b/auction_seller/static/description/index.html index 8d6594cf..c8d26d8b 100644 --- a/auction_seller/static/description/index.html +++ b/auction_seller/static/description/index.html @@ -3,15 +3,16 @@ -Auction Seller +README.rst -
-

Auction Seller

+
+ + +Odoo Community Association + +
+

Auction Seller

-

Beta License: LGPL-3 qrtl/rmm-custom

+

Beta License: LGPL-3 qrtl/rmm-custom

This module does the following:

  • Adds auction seller groups (Auction Seller).
  • @@ -386,7 +392,7 @@

    Auction Seller

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -394,19 +400,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/auction_seller_invoice/README.rst b/auction_seller_invoice/README.rst index 36de0c0c..6ca03ec3 100644 --- a/auction_seller_invoice/README.rst +++ b/auction_seller_invoice/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ====================== Auction Seller Invoice ====================== @@ -13,7 +17,7 @@ Auction Seller Invoice .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github @@ -24,10 +28,10 @@ Auction Seller Invoice This module does the following: -- Adds vendor bill views to show the relevant records to sellers, and a - kanban tile to the seller dashboard to open the views. -- Hides actions and reports that portal users do not need to use. -- Prevents portal users to see other users' settlement records. +- Adds vendor bill views to show the relevant records to sellers, and a + kanban tile to the seller dashboard to open the views. +- Hides actions and reports that portal users do not need to use. +- Prevents portal users to see other users' settlement records. **Table of contents** diff --git a/auction_seller_invoice/static/description/index.html b/auction_seller_invoice/static/description/index.html index 7e7a4a3e..1cfbd4d7 100644 --- a/auction_seller_invoice/static/description/index.html +++ b/auction_seller_invoice/static/description/index.html @@ -3,15 +3,16 @@ -Auction Seller Invoice +README.rst -
-

Auction Seller Invoice

+
+ + +Odoo Community Association + +
+

Auction Seller Invoice

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module does the following:

  • Adds vendor bill views to show the relevant records to sellers, and a @@ -388,7 +394,7 @@

    Auction Seller Invoice

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -396,19 +402,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/base_auction/README.rst b/base_auction/README.rst index d5a53363..d5b7604a 100644 --- a/base_auction/README.rst +++ b/base_auction/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ============ Base Auction ============ @@ -13,7 +17,7 @@ Base Auction .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html :alt: License: LGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github @@ -26,10 +30,10 @@ This module provides the base settings/functions for auction users (participants) who are not internal users, but expected to be able to access the backend functions: -- Adds auction groups (auction user and auction manager). -- Adds necessary ACL records to auction user. -- Extends some controller/http methods to enable the backend login as - an auction user. +- Adds auction groups (auction user and auction manager). +- Adds necessary ACL records to auction user. +- Extends some controller/http methods to enable the backend login as an + auction user. **Table of contents** diff --git a/base_auction/static/description/index.html b/base_auction/static/description/index.html index b3178a30..d0ac6476 100644 --- a/base_auction/static/description/index.html +++ b/base_auction/static/description/index.html @@ -3,15 +3,16 @@ -Base Auction +README.rst -
-

Base Auction

+
+ + +Odoo Community Association + +
+

Base Auction

-

Beta License: LGPL-3 qrtl/rmm-custom

+

Beta License: LGPL-3 qrtl/rmm-custom

This module provides the base settings/functions for auction users (participants) who are not internal users, but expected to be able to access the backend functions:

  • Adds auction groups (auction user and auction manager).
  • Adds necessary ACL records to auction user.
  • -
  • Extends some controller/http methods to enable the backend login as -an auction user.
  • +
  • Extends some controller/http methods to enable the backend login as an +auction user.

Table of contents

@@ -390,7 +396,7 @@

Base Auction

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -398,19 +404,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/base_data_import/README.rst b/base_data_import/README.rst index afb76712..9990168e 100644 --- a/base_data_import/README.rst +++ b/base_data_import/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ================ Base Data Import ================ @@ -13,7 +17,7 @@ Base Data Import .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html :alt: License: LGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github @@ -24,8 +28,8 @@ Base Data Import This module does the following: -- Adds a generic wizard to import a CSV file to create/update records. -- Adds a generic logging models and views for import results. +- Adds a generic wizard to import a CSV file to create/update records. +- Adds a generic logging models and views for import results. This module is not useful by itself, but is expected to be used as a dependency of specific data import functions. diff --git a/base_data_import/static/description/index.html b/base_data_import/static/description/index.html index da656673..cd87219c 100644 --- a/base_data_import/static/description/index.html +++ b/base_data_import/static/description/index.html @@ -3,15 +3,16 @@ -Base Data Import +README.rst -
-

Base Data Import

+
+ + +Odoo Community Association + +
+

Base Data Import

-

Beta License: LGPL-3 qrtl/rmm-custom

+

Beta License: LGPL-3 qrtl/rmm-custom

This module does the following:

  • Adds a generic wizard to import a CSV file to create/update records.
  • @@ -388,7 +394,7 @@

    Base Data Import

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -396,19 +402,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/base_report_info/README.rst b/base_report_info/README.rst index e82e98d8..0138f183 100644 --- a/base_report_info/README.rst +++ b/base_report_info/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ======================= Base Report Information ======================= @@ -13,7 +17,7 @@ Base Report Information .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html :alt: License: LGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github @@ -24,8 +28,8 @@ Base Report Information This module does the following: -- Add new tab "Report Information" on Company -- Add fields under the "Report Information" +- Add new tab "Report Information" on Company +- Add fields under the "Report Information" **Table of contents** diff --git a/base_report_info/static/description/index.html b/base_report_info/static/description/index.html index 5d64537f..01cd2894 100644 --- a/base_report_info/static/description/index.html +++ b/base_report_info/static/description/index.html @@ -3,15 +3,16 @@ -Base Report Information +README.rst -
-

Base Report Information

+
+ + +Odoo Community Association + +
+

Base Report Information

-

Beta License: LGPL-3 qrtl/rmm-custom

+

Beta License: LGPL-3 qrtl/rmm-custom

This module does the following:

  • Add new tab “Report Information” on Company
  • @@ -386,7 +392,7 @@

    Base Report Information

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -394,19 +400,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/commission_disable_regenerate_agent/README.rst b/commission_disable_regenerate_agent/README.rst index 19ef521b..7d5dc348 100644 --- a/commission_disable_regenerate_agent/README.rst +++ b/commission_disable_regenerate_agent/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + =================================== Commission Disable Regenerate Agent =================================== @@ -13,7 +17,7 @@ Commission Disable Regenerate Agent .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github @@ -24,7 +28,7 @@ Commission Disable Regenerate Agent This module does the following: -- Hide regenerate agents button in sale order and invoice. +- Hide regenerate agents button in sale order and invoice. **Table of contents** diff --git a/commission_disable_regenerate_agent/static/description/index.html b/commission_disable_regenerate_agent/static/description/index.html index a99c98c4..f0119014 100644 --- a/commission_disable_regenerate_agent/static/description/index.html +++ b/commission_disable_regenerate_agent/static/description/index.html @@ -3,15 +3,16 @@ -Commission Disable Regenerate Agent +README.rst -
-

Commission Disable Regenerate Agent

+
+ + +Odoo Community Association + +
+

Commission Disable Regenerate Agent

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module does the following:

  • Hide regenerate agents button in sale order and invoice.
  • @@ -385,7 +391,7 @@

    Commission Disable Regenerate Agent

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -393,19 +399,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/commission_settlement_commission/README.rst b/commission_settlement_commission/README.rst index dad212b4..afcf159e 100644 --- a/commission_settlement_commission/README.rst +++ b/commission_settlement_commission/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ================================ Commission Settlement Commission ================================ @@ -13,7 +17,7 @@ Commission Settlement Commission .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github diff --git a/commission_settlement_commission/static/description/index.html b/commission_settlement_commission/static/description/index.html index 94dc45ff..a34f4eff 100644 --- a/commission_settlement_commission/static/description/index.html +++ b/commission_settlement_commission/static/description/index.html @@ -3,15 +3,16 @@ -Commission Settlement Commission +README.rst -
-

Commission Settlement Commission

+
+ + +Odoo Community Association + +
+

Commission Settlement Commission

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module adds the commission_ids field to the settlement and includes it in the views.

Table of contents

@@ -383,7 +389,7 @@

Commission Settlement Commission

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -391,19 +397,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/data_migration/README.rst b/data_migration/README.rst index bb024468..a62b25ee 100644 --- a/data_migration/README.rst +++ b/data_migration/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ============== Data Migration ============== @@ -13,7 +17,7 @@ Data Migration .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github diff --git a/data_migration/static/description/index.html b/data_migration/static/description/index.html index 3cd65822..c414f2ad 100644 --- a/data_migration/static/description/index.html +++ b/data_migration/static/description/index.html @@ -3,15 +3,16 @@ -Data Migration +README.rst -
-

Data Migration

+
+ + +Odoo Community Association + +
+

Data Migration

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module reads the data from another odoo instance and create in current odoo instance.

Table of contents

@@ -383,7 +389,7 @@

Data Migration

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -391,19 +397,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/hr_attendance_rest_time/README.rst b/hr_attendance_rest_time/README.rst index b458afdf..cdc00197 100644 --- a/hr_attendance_rest_time/README.rst +++ b/hr_attendance_rest_time/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ==================== Attendance Rest Time ==================== @@ -13,7 +17,7 @@ Attendance Rest Time .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html :alt: License: LGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github @@ -24,13 +28,13 @@ Attendance Rest Time The module does the following: -- Adds 'Standard Rest Time (minutes)' field to Employee > Workplace - Information. -- When attendance checkout is pressed, 'Standard Rest Time (minutes)' - is auto-proposed. -- Adds the following fields to Attendance: +- Adds 'Standard Rest Time (minutes)' field to Employee > Workplace + Information. +- When attendance checkout is pressed, 'Standard Rest Time (minutes)' is + auto-proposed. +- Adds the following fields to Attendance: - - Category, Rest Time, Manual Update Flag, Reason for Manual Update + - Category, Rest Time, Manual Update Flag, Reason for Manual Update **Table of contents** diff --git a/hr_attendance_rest_time/static/description/index.html b/hr_attendance_rest_time/static/description/index.html index d5c96907..b819c572 100644 --- a/hr_attendance_rest_time/static/description/index.html +++ b/hr_attendance_rest_time/static/description/index.html @@ -3,15 +3,16 @@ -Attendance Rest Time +README.rst -
-

Attendance Rest Time

+
+ + +Odoo Community Association + +
+

Attendance Rest Time

-

Beta License: LGPL-3 qrtl/rmm-custom

+

Beta License: LGPL-3 qrtl/rmm-custom

The module does the following:

  • Adds ‘Standard Rest Time (minutes)’ field to Employee > Workplace Information.
  • -
  • When attendance checkout is pressed, ‘Standard Rest Time (minutes)’ -is auto-proposed.
  • +
  • When attendance checkout is pressed, ‘Standard Rest Time (minutes)’ is +auto-proposed.
  • Adds the following fields to Attendance:
    • Category, Rest Time, Manual Update Flag, Reason for Manual Update
    @@ -392,7 +398,7 @@

    Attendance Rest Time

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -400,19 +406,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/hr_security_adj/README.rst b/hr_security_adj/README.rst index b74191ec..72216296 100644 --- a/hr_security_adj/README.rst +++ b/hr_security_adj/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ================== HR Security Adjust ================== @@ -13,7 +17,7 @@ HR Security Adjust .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github diff --git a/hr_security_adj/static/description/index.html b/hr_security_adj/static/description/index.html index 24fa2016..45077093 100644 --- a/hr_security_adj/static/description/index.html +++ b/hr_security_adj/static/description/index.html @@ -3,15 +3,16 @@ -HR Security Adjust +README.rst -
-

HR Security Adjust

+
+ + +Odoo Community Association + +
+

HR Security Adjust

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module adds new user group for hr and give read and write access for hr.employee to the user that has this group.

Table of contents

@@ -383,7 +389,7 @@

HR Security Adjust

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -391,19 +397,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/mail_compose_message_reply_to/README.rst b/mail_compose_message_reply_to/README.rst index 4a89a305..6a4a6e32 100644 --- a/mail_compose_message_reply_to/README.rst +++ b/mail_compose_message_reply_to/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ============================= Mail Compose Message Reply To ============================= @@ -13,7 +17,7 @@ Mail Compose Message Reply To .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github @@ -24,8 +28,8 @@ Mail Compose Message Reply To This module does the following: -- Respects the 'reply-to' setting of the email template unless the - value was otherwise specified. +- Respects the 'reply-to' setting of the email template unless the value + was otherwise specified. This is to "fix" the standard behavior which we suspect to be a bug - even when 'reply-to' is set in the template. it does not seem to be diff --git a/mail_compose_message_reply_to/static/description/index.html b/mail_compose_message_reply_to/static/description/index.html index 3fab7bf7..357144e1 100644 --- a/mail_compose_message_reply_to/static/description/index.html +++ b/mail_compose_message_reply_to/static/description/index.html @@ -3,15 +3,16 @@ -Mail Compose Message Reply To +README.rst -
-

Mail Compose Message Reply To

+
+ + +Odoo Community Association + +
+

Mail Compose Message Reply To

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module does the following:

    -
  • Respects the ‘reply-to’ setting of the email template unless the -value was otherwise specified.
  • +
  • Respects the ‘reply-to’ setting of the email template unless the value +was otherwise specified.

This is to “fix” the standard behavior which we suspect to be a bug - even when ‘reply-to’ is set in the template. it does not seem to be @@ -389,7 +395,7 @@

Mail Compose Message Reply To

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -397,19 +403,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/openai_connector/README.rst b/openai_connector/README.rst index 8871594e..fa6e2830 100644 --- a/openai_connector/README.rst +++ b/openai_connector/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ================ OpenAI Connector ================ @@ -13,7 +17,7 @@ OpenAI Connector .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github @@ -39,14 +43,14 @@ Configuration For the OpenAI API configuration: -- Only the api_key field is required to be set. -- The base_url, token_type, and header_api_key_string are prefilled by - this module. +- Only the api_key field is required to be set. +- The base_url, token_type, and header_api_key_string are prefilled by + this module. Basically, the OpenAI session should be added by a specific module that depends on this one. Adjust the session attributes: -- Go to Settings → Technical →OpenAI Vision Sessions. +- Go to Settings → Technical →OpenAI Vision Sessions. For additional options and usage details, refer to the official documentation: https://platform.openai.com/docs diff --git a/openai_connector/static/description/index.html b/openai_connector/static/description/index.html index 18d80901..cd482e84 100644 --- a/openai_connector/static/description/index.html +++ b/openai_connector/static/description/index.html @@ -3,15 +3,16 @@ -OpenAI Connector +README.rst -
-

OpenAI Connector

+
+ + +Odoo Community Association + +
+

OpenAI Connector

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module defines openai.vision.session, which enables programmatic access to OpenAI. It supports multimodal input (images and text), optional web search, and structured output via JSON Schema.

@@ -388,7 +394,7 @@

OpenAI Connector

-

Configuration

+

Configuration

For the OpenAI API configuration:

-

Usage

+

Usage

This module is intended to be used programmatically by other Odoo modules. You create and configure openai.vision.session records and call the method call_openai() from your own business logic.

@@ -425,7 +431,7 @@

Usage

queue.job) for asynchronous and fault-tolerant processing.

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -433,19 +439,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/partner_credit_rank/README.rst b/partner_credit_rank/README.rst index 47ee6bea..d025dd57 100644 --- a/partner_credit_rank/README.rst +++ b/partner_credit_rank/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + =================== Partner Credit Rank =================== @@ -13,7 +17,7 @@ Partner Credit Rank .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github diff --git a/partner_credit_rank/static/description/index.html b/partner_credit_rank/static/description/index.html index 8ae3c7b2..a07e8848 100644 --- a/partner_credit_rank/static/description/index.html +++ b/partner_credit_rank/static/description/index.html @@ -3,15 +3,16 @@ -Partner Credit Rank +README.rst -
-

Partner Credit Rank

+
+ + +Odoo Community Association + +
+

Partner Credit Rank

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module adds a credit_rank field to assign a rank based on creditworthiness.

Table of contents

@@ -383,7 +389,7 @@

Partner Credit Rank

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -391,19 +397,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/partner_edit_restrict/README.rst b/partner_edit_restrict/README.rst index a1646f67..4a937cfa 100644 --- a/partner_edit_restrict/README.rst +++ b/partner_edit_restrict/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ===================== Partner Edit Restrict ===================== @@ -13,7 +17,7 @@ Partner Edit Restrict .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github diff --git a/partner_edit_restrict/static/description/index.html b/partner_edit_restrict/static/description/index.html index 364d83ee..d0f450a4 100644 --- a/partner_edit_restrict/static/description/index.html +++ b/partner_edit_restrict/static/description/index.html @@ -3,15 +3,16 @@ -Partner Edit Restrict +README.rst -
-

Partner Edit Restrict

+
+ + +Odoo Community Association + +
+

Partner Edit Restrict

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module restricts the editing of ‘res.partner’ records when ‘restrict_edit’ is enabled and the user is neither a system user nor a member of ‘group_partner_edit’.

@@ -384,7 +390,7 @@

Partner Edit Restrict

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -392,19 +398,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/partner_old_id/README.rst b/partner_old_id/README.rst index 66917060..1e32f2c7 100644 --- a/partner_old_id/README.rst +++ b/partner_old_id/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ============== Partner Old ID ============== @@ -13,7 +17,7 @@ Partner Old ID .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github diff --git a/partner_old_id/static/description/index.html b/partner_old_id/static/description/index.html index e336b164..e7626f4f 100644 --- a/partner_old_id/static/description/index.html +++ b/partner_old_id/static/description/index.html @@ -3,15 +3,16 @@ -Partner Old ID +README.rst -
-

Partner Old ID

+
+ + +Odoo Community Association + +
+

Partner Old ID

-

Beta License: AGPL-3 qrtl/rmm-custom

+

Beta License: AGPL-3 qrtl/rmm-custom

This module is used to store the old partner record IDs from the previous instance.

Table of contents

@@ -383,7 +389,7 @@

Partner Old ID

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -391,19 +397,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/partner_secondhand_dealer/README.rst b/partner_secondhand_dealer/README.rst index fb934179..6a8cb7fd 100644 --- a/partner_secondhand_dealer/README.rst +++ b/partner_secondhand_dealer/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ========================= Partner Secondhand Dealer ========================= @@ -13,7 +17,7 @@ Partner Secondhand Dealer .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html :alt: License: LGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github @@ -24,8 +28,8 @@ Partner Secondhand Dealer This module does the following: -- Adds some fields to res.partner to record the vendor particulars - required by the Secondhand Articles Dealer Act (古物営業法). +- Adds some fields to res.partner to record the vendor particulars + required by the Secondhand Articles Dealer Act (古物営業法). **Table of contents** diff --git a/partner_secondhand_dealer/static/description/index.html b/partner_secondhand_dealer/static/description/index.html index 9747db32..e3257f10 100644 --- a/partner_secondhand_dealer/static/description/index.html +++ b/partner_secondhand_dealer/static/description/index.html @@ -3,15 +3,16 @@ -Partner Secondhand Dealer +README.rst -
-

Partner Secondhand Dealer

+
+ + +Odoo Community Association + +
+

Partner Secondhand Dealer

-

Beta License: LGPL-3 qrtl/rmm-custom

+

Beta License: LGPL-3 qrtl/rmm-custom

This module does the following:

  • Adds some fields to res.partner to record the vendor particulars @@ -386,7 +392,7 @@

    Partner Secondhand Dealer

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -394,19 +400,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/product_archive_sold_product/README.rst b/product_archive_sold_product/README.rst index 4126d099..e4176d5b 100644 --- a/product_archive_sold_product/README.rst +++ b/product_archive_sold_product/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ============================ Product Archive Sold Product ============================ @@ -13,7 +17,7 @@ Product Archive Sold Product .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html :alt: License: LGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github @@ -26,10 +30,10 @@ This module provides the function to archive "sold" products with cron. Assumptions: -- Physical products (stockable/consumable) are created per piece with - no exceptions. -- Product variant feature is not enabled (i.e. there is just one - variant per template). +- Physical products (stockable/consumable) are created per piece with no + exceptions. +- Product variant feature is not enabled (i.e. there is just one variant + per template). **Table of contents** diff --git a/product_archive_sold_product/static/description/index.html b/product_archive_sold_product/static/description/index.html index 72048cf5..1c713f30 100644 --- a/product_archive_sold_product/static/description/index.html +++ b/product_archive_sold_product/static/description/index.html @@ -3,15 +3,16 @@ -Product Archive Sold Product +README.rst -
-

Product Archive Sold Product

+
+ + +Odoo Community Association + +
+

Product Archive Sold Product

-

Beta License: LGPL-3 qrtl/rmm-custom

+

Beta License: LGPL-3 qrtl/rmm-custom

This module provides the function to archive “sold” products with cron.

Assumptions:

    -
  • Physical products (stockable/consumable) are created per piece with -no exceptions.
  • -
  • Product variant feature is not enabled (i.e. there is just one -variant per template).
  • +
  • Physical products (stockable/consumable) are created per piece with no +exceptions.
  • +
  • Product variant feature is not enabled (i.e. there is just one variant +per template).

Table of contents

@@ -389,7 +395,7 @@

Product Archive Sold Product

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -397,19 +403,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/product_auction/README.rst b/product_auction/README.rst index 55715f4d..431a5ac0 100644 --- a/product_auction/README.rst +++ b/product_auction/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + =============== Product Auction =============== @@ -13,7 +17,7 @@ Product Auction .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html :alt: License: LGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github @@ -24,7 +28,7 @@ Product Auction This module does the following: -- Adds auction related fields to product.template model. +- Adds auction related fields to product.template model. **Table of contents** diff --git a/product_auction/static/description/index.html b/product_auction/static/description/index.html index 5dc4503c..68f89315 100644 --- a/product_auction/static/description/index.html +++ b/product_auction/static/description/index.html @@ -3,15 +3,16 @@ -Product Auction +README.rst -
-

Product Auction

+
+ + +Odoo Community Association + +
+

Product Auction

-

Beta License: LGPL-3 qrtl/rmm-custom

+

Beta License: LGPL-3 qrtl/rmm-custom

This module does the following:

  • Adds auction related fields to product.template model.
  • @@ -385,7 +391,7 @@

    Product Auction

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -393,19 +399,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/product_barcode_compute/README.rst b/product_barcode_compute/README.rst index 5522eebe..caa1efd7 100644 --- a/product_barcode_compute/README.rst +++ b/product_barcode_compute/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ======================= Product Barcode Compute ======================= @@ -13,7 +17,7 @@ Product Barcode Compute .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html :alt: License: LGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github diff --git a/product_barcode_compute/static/description/index.html b/product_barcode_compute/static/description/index.html index 4cf0c87f..88257f2c 100644 --- a/product_barcode_compute/static/description/index.html +++ b/product_barcode_compute/static/description/index.html @@ -3,15 +3,16 @@ -Product Barcode Compute +README.rst -
-

Product Barcode Compute

+
+ + +Odoo Community Association + +
+

Product Barcode Compute

-

Beta License: LGPL-3 qrtl/rmm-custom

+

Beta License: LGPL-3 qrtl/rmm-custom

This module adds compute method to the product barcode field so that the barcode value is the same as the default code.

Table of contents

@@ -383,7 +389,7 @@

Product Barcode Compute

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -391,19 +397,20 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Quartile Limited
-

Maintainers

+

Maintainers

This module is part of the qrtl/rmm-custom project on GitHub.

You are welcome to contribute.

+
diff --git a/product_carousel_image_attachment/README.rst b/product_carousel_image_attachment/README.rst index b6bdd24e..2343e383 100644 --- a/product_carousel_image_attachment/README.rst +++ b/product_carousel_image_attachment/README.rst @@ -1,3 +1,7 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + ================================= Product Carousel Image Attachment ================================= @@ -13,7 +17,7 @@ Product Carousel Image Attachment .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-qrtl%2Frmm--custom-lightgray.png?logo=github @@ -24,8 +28,8 @@ Product Carousel Image Attachment This module does the following: -- When an image (.jpg/.png/.gif/.bmp) is attached to a product, create - a corresponding product.image record for the attached file. +- When an image (.jpg/.png/.gif/.bmp) is attached to a product, create a + corresponding product.image record for the attached file. **Table of contents** diff --git a/product_carousel_image_attachment/static/description/index.html b/product_carousel_image_attachment/static/description/index.html index e91bc791..bc3a872e 100644 --- a/product_carousel_image_attachment/static/description/index.html +++ b/product_carousel_image_attachment/static/description/index.html @@ -3,15 +3,16 @@ -Product Carousel Image Attachment +README.rst -