From a906ab85b4d5b97f784b5942a86a6a43c940e761 Mon Sep 17 00:00:00 2001 From: "matthieu.saison" Date: Mon, 13 May 2024 17:04:01 +0200 Subject: [PATCH] copier update --- .copier-answers.yml | 9 +- .eslintrc.yml | 1 + .github/workflows/pre-commit.yml | 13 +- .github/workflows/test.yml | 14 +- .gitignore | 1 + .oca_hooks.cfg | 2 + .pre-commit-config.yaml | 21 +- attachment_asset_in_db/README.rst | 9 +- .../static/description/index.html | 408 ++++++++++++++++ base_custom_export/README.rst | 9 +- .../static/description/index.html | 423 +++++++++++++++++ dash_shared/README.rst | 9 +- dash_shared/static/description/index.html | 417 +++++++++++++++++ database_age_cron/README.rst | 9 +- .../static/description/index.html | 35 +- forbid_record_creation/README.rst | 9 +- .../static/description/index.html | 437 ++++++++++++++++++ mail_unique_layout/README.rst | 9 +- .../static/description/index.html | 416 +++++++++++++++++ .../README.rst | 9 +- .../static/description/index.html | 41 +- .../i18n/product_uom_force_change.pot | 5 - proxy_action/README.rst | 9 +- proxy_action/static/description/index.html | 51 +- purchase_edi_file/README.rst | 9 +- .../static/description/index.html | 412 +++++++++++++++++ purchase_lot/README.rst | 9 +- purchase_lot/static/description/index.html | 409 ++++++++++++++++ stock_inventory_simple_valuation/README.rst | 9 +- .../static/description/index.html | 43 +- 30 files changed, 3124 insertions(+), 133 deletions(-) create mode 100644 .oca_hooks.cfg create mode 100644 attachment_asset_in_db/static/description/index.html create mode 100644 base_custom_export/static/description/index.html create mode 100644 dash_shared/static/description/index.html create mode 100644 forbid_record_creation/static/description/index.html create mode 100644 mail_unique_layout/static/description/index.html create mode 100644 purchase_edi_file/static/description/index.html create mode 100644 purchase_lot/static/description/index.html diff --git a/.copier-answers.yml b/.copier-answers.yml index bd1067bdb..4c58c34d1 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,8 +1,8 @@ # Do NOT update manually; changes here will be overwritten by Copier -_commit: v1.14.2 +_commit: v1.21.1 _src_path: https://github.com/OCA/oca-addons-repo-template.git ci: GitHub -dependency_installation_mode: PIP +convert_readme_fragments_to_markdown: false generate_requirements_txt: true github_check_license: true github_ci_extra_env: {} @@ -11,6 +11,7 @@ github_enable_makepot: true github_enable_stale_action: false github_enforce_dev_status_compatibility: false include_wkhtmltopdf: false +odoo_test_flavor: Both odoo_version: 14.0 org_name: Akretion org_slug: akretion @@ -20,6 +21,6 @@ repo_description: The modules present in this repo should go to OCA on the long repo_name: Generic Odoo module in incubation repo_slug: ak-odoo-incubator repo_website: https://github.com/akretion/ak-odoo-incubator -travis_apt_packages: [] -travis_apt_sources: [] +use_pyproject_toml: false +use_ruff: false diff --git a/.eslintrc.yml b/.eslintrc.yml index 9429bc688..fed88d70d 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -22,6 +22,7 @@ globals: odoo: readonly openerp: readonly owl: readonly + luxon: readonly # Styling is handled by Prettier, so we only need to enable AST rules; # see https://github.com/OCA/maintainer-quality-tools/pull/618#issuecomment-558576890 diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 755f8a225..602ecbca2 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -13,8 +13,10 @@ jobs: pre-commit: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-python@v2 + with: + python-version: "3.11" - name: Get python version run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV - uses: actions/cache@v1 @@ -25,6 +27,15 @@ jobs: run: pip install pre-commit - name: Run pre-commit run: pre-commit run --all-files --show-diff-on-failure --color=always + env: + # Consider valid a PR that changes README fragments but doesn't + # change the README.rst file itself. It's not really a problem + # because the bot will update it anyway after merge. This way, we + # lower the barrier for functional contributors that want to fix the + # readme fragments, while still letting developers get README + # auto-generated (which also helps functionals when using runboat). + # DOCS https://pre-commit.com/#temporarily-disabling-hooks + SKIP: oca-gen-addon-readme - name: Check that all files generated by pre-commit are in git run: | newfiles="$(git ls-files --others --exclude-from=.gitignore)" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b9be96e50..131920c32 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,10 +19,10 @@ jobs: matrix: include: - container: ghcr.io/oca/oca-ci/py3.6-odoo14.0:latest - makepot: "true" name: test with Odoo - container: ghcr.io/oca/oca-ci/py3.6-ocb14.0:latest name: test with OCB + makepot: "true" services: postgres: image: postgres:9.6 @@ -35,7 +35,7 @@ jobs: env: PIP_EXTRA_INDEX_URL: "https://wheelhouse.shopinvader.com/simple/" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: persist-credentials: false - name: Patch odoo version @@ -51,7 +51,9 @@ jobs: run: oca_init_test_database - name: Run tests run: oca_run_tests - - uses: codecov/codecov-action@v1 - # - 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 == 'akretion' }} + - uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} + - 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 == 'akretion' }} diff --git a/.gitignore b/.gitignore index 9c283fd41..0090721f5 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ __pycache__/ *.py[cod] /.venv /.pytest_cache +/.ruff_cache # C extensions *.so diff --git a/.oca_hooks.cfg b/.oca_hooks.cfg new file mode 100644 index 000000000..1f3e3e426 --- /dev/null +++ b/.oca_hooks.cfg @@ -0,0 +1,2 @@ +[MESSAGES_CONTROL] +disable=xml-deprecated-data-node,xml-deprecated-tree-attribute diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b57127ca2..019a0beb5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,6 +12,12 @@ exclude: | /static/(src/)?lib/| # Repos using Sphinx to generate docs don't need prettying ^docs/_templates/.*\.html$| + # Don't bother non-technical authors with formatting issues in docs + readme/.*\.(rst|md)$| + # Ignore build and dist directories in addons + /build/|/dist/| + # Ignore test files in addons + /tests/samples/.*| # You don't usually want a bot to modify your legal texts (LICENSE.*|COPYING.*) default_language_version: @@ -33,12 +39,25 @@ repos: language: fail files: '[a-zA-Z0-9_]*/i18n/en\.po$' - repo: https://github.com/oca/maintainer-tools - rev: ab1d7f6 + rev: 9a170331575a265c092ee6b24b845ec508e8ef75 hooks: # update the NOT INSTALLABLE ADDONS section above - id: oca-update-pre-commit-excluded-addons - id: oca-fix-manifest-website args: ["https://github.com/akretion/ak-odoo-incubator"] + - id: oca-gen-addon-readme + args: + - --addons-dir=. + - --branch=14.0 + - --org-name=akretion + - --repo-name=ak-odoo-incubator + - --if-source-changed + - --keep-source-digest + - repo: https://github.com/OCA/odoo-pre-commit-hooks + rev: v0.0.25 + hooks: + - id: oca-checks-odoo-module + - id: oca-checks-po - repo: https://github.com/myint/autoflake rev: v1.4 hooks: diff --git a/attachment_asset_in_db/README.rst b/attachment_asset_in_db/README.rst index ecd0a5637..d67d43278 100644 --- a/attachment_asset_in_db/README.rst +++ b/attachment_asset_in_db/README.rst @@ -2,10 +2,13 @@ attachment_asset_in_db ====================== -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:127123474a8d0be9624c1fecd8d3e6a69f1fa5002d13439092e89a8004eaf530 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -17,7 +20,7 @@ attachment_asset_in_db :target: https://github.com/akretion/ak-odoo-incubator/tree/14.0/attachment_asset_in_db :alt: akretion/ak-odoo-incubator -|badge1| |badge2| |badge3| +|badge1| |badge2| |badge3| Force storing the asset into the database. Usefull for CI integration without copy pasting the real filestore @@ -31,7 +34,7 @@ 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 +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. diff --git a/attachment_asset_in_db/static/description/index.html b/attachment_asset_in_db/static/description/index.html new file mode 100644 index 000000000..e190e7580 --- /dev/null +++ b/attachment_asset_in_db/static/description/index.html @@ -0,0 +1,408 @@ + + + + + +attachment_asset_in_db + + + +
+

attachment_asset_in_db

+ + +

Beta License: AGPL-3 akretion/ak-odoo-incubator

+

Force storing the asset into the database. Usefull for CI integration without copy pasting the real filestore

+

Table of contents

+ +
+

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 +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Akretion
  • +
+
+
+

Maintainers

+

This module is part of the akretion/ak-odoo-incubator project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/base_custom_export/README.rst b/base_custom_export/README.rst index 52e62c3b2..e9354d3ab 100644 --- a/base_custom_export/README.rst +++ b/base_custom_export/README.rst @@ -2,10 +2,13 @@ Base Customer Export ==================== -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:fc0798a5bc3c1985ddc6ab0b42bbd059960a804486814de131b4075e7e0ee4c5 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -17,7 +20,7 @@ Base Customer Export :target: https://github.com/akretion/ak-odoo-incubator/tree/14.0/base_custom_export :alt: akretion/ak-odoo-incubator -|badge1| |badge2| |badge3| +|badge1| |badge2| |badge3| This module allow easily export data into an attachment, using Odoo native exporting tool. Its meant to be used by submodules needing to export data and add the following features : @@ -47,7 +50,7 @@ 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 +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. diff --git a/base_custom_export/static/description/index.html b/base_custom_export/static/description/index.html new file mode 100644 index 000000000..b28aed631 --- /dev/null +++ b/base_custom_export/static/description/index.html @@ -0,0 +1,423 @@ + + + + + +Base Customer Export + + + +
+

Base Customer Export

+ + +

Beta License: AGPL-3 akretion/ak-odoo-incubator

+

This module allow easily export data into an attachment, using Odoo native exporting tool. +Its meant to be used by submodules needing to export data and add the following features : +- Easily re-order the fields to export (actually comes from base_export_manager module) +- Allow to customize the fields label to have a fully customizable header +- Allow to customize the filename +- Allow to add more data (not from fields), this module implement the possibility to add static data +but it can easily be extended to add more complex logic to get some advanced custom data

+

It supports csv and xlsx format but other one could easily be added

+

Table of contents

+ +
+

Known issues / Roadmap

+

I believe this module could be refactored a bit along with pattern_import_export, to become a dependency of pattern_import_export. (https://github.com/akretion/pattern-import-export/) +Including the missing feature (customizable field name and file name) and possibility to add more info in export (static value…) could be done directly in pattern_import_export, but it is a big module with a lot of features to install for this small need. +Actually all the helpers to get configurable data from export may or not be usefull for other formats. If you want to implement a very specific xml for instance (to be used with purchase_edi) you may want to by pass all that. That is why export field and additional data fields are invisible in case file_format is not csv and xls. +In case of a new format implementation, one should manage if this is export tools is usefull or not.

+
+
+

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 +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Akretion
  • +
+
+
+

Maintainers

+

This module is part of the akretion/ak-odoo-incubator project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/dash_shared/README.rst b/dash_shared/README.rst index 13268ee1f..e41606f9a 100644 --- a/dash_shared/README.rst +++ b/dash_shared/README.rst @@ -2,10 +2,13 @@ Dash Shared =========== -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:9dea8292f4d3be0547caa129c36b59e30e9ddf13812da70c9f02b116e667cdb1 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -17,7 +20,7 @@ Dash Shared :target: https://github.com/akretion/ak-odoo-incubator/tree/14.0/dash_shared :alt: akretion/ak-odoo-incubator -|badge1| |badge2| |badge3| +|badge1| |badge2| |badge3| This module allows to share dashboards across users. @@ -31,7 +34,7 @@ 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 +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. diff --git a/dash_shared/static/description/index.html b/dash_shared/static/description/index.html new file mode 100644 index 000000000..18364862c --- /dev/null +++ b/dash_shared/static/description/index.html @@ -0,0 +1,417 @@ + + + + + +Dash Shared + + + +
+

Dash Shared

+ + +

Beta License: AGPL-3 akretion/ak-odoo-incubator

+

This module allows to share dashboards across users.

+

Table of contents

+ +
+

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 +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Akretion
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

Current maintainer:

+

Kev-Roche

+

This module is part of the akretion/ak-odoo-incubator project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/database_age_cron/README.rst b/database_age_cron/README.rst index b1fc83038..c8c8e5e36 100644 --- a/database_age_cron/README.rst +++ b/database_age_cron/README.rst @@ -2,10 +2,13 @@ Database Age Cron ================= -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:33d370f2b353bc5c264e4dccaf6c43e38fa83eacf59bb47be854c22596d00956 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -17,7 +20,7 @@ Database Age Cron :target: https://github.com/akretion/ak-odoo-incubator/tree/14.0/database_age_cron :alt: akretion/ak-odoo-incubator -|badge1| |badge2| |badge3| +|badge1| |badge2| |badge3| This module adds a simple cron that allows to know easily what is the age of the database @@ -45,7 +48,7 @@ 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 +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. diff --git a/database_age_cron/static/description/index.html b/database_age_cron/static/description/index.html index f33decc46..922923555 100644 --- a/database_age_cron/static/description/index.html +++ b/database_age_cron/static/description/index.html @@ -1,20 +1,19 @@ - - + Database Age Cron + + +
+

Forbid Record Creation

+ + +

Beta License: AGPL-3 akretion/ak-odoo-incubator

+

Forbide to create Odoo objects by raising an alert to the user. +This module is only useful before to reach ‘production’ step of ERP implementation project.

+

Table of contents

+ +
+

Configuration

+

Put this code in your custom module according to model +you want forbid creation.

+
+class AccountMove(models.Model):
+    _inherit = ["account.move", "forbidden.model"]
+    _name = "account.move"
+
+
+class SaleOrder(models.Model):
+    _inherit = ["sale.order", "forbidden.model"]
+    _name = "sale.order"
+
+
+class PurchaseOrder(models.Model):
+    _inherit = ["purchase.order", "forbidden.model"]
+    _name = "purchase.order"
+
+
+
+

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 +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Akretion
  • +
+
+ +
+

Maintainers

+

This module is part of the akretion/ak-odoo-incubator project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/mail_unique_layout/README.rst b/mail_unique_layout/README.rst index 79a8d7e81..b09b8f72a 100644 --- a/mail_unique_layout/README.rst +++ b/mail_unique_layout/README.rst @@ -2,10 +2,13 @@ Mail Unique Layout ================== -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:badffed3374cb5971cbbf6300823adc5510a3e984e48ce6ca62dffd4167d8f46 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -17,7 +20,7 @@ Mail Unique Layout :target: https://github.com/akretion/ak-odoo-incubator/tree/14.0/mail_unique_layout :alt: akretion/ak-odoo-incubator -|badge1| |badge2| |badge3| +|badge1| |badge2| |badge3| This module forces a unique email layout for all emails sent. @@ -31,7 +34,7 @@ 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 +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. diff --git a/mail_unique_layout/static/description/index.html b/mail_unique_layout/static/description/index.html new file mode 100644 index 000000000..07f018664 --- /dev/null +++ b/mail_unique_layout/static/description/index.html @@ -0,0 +1,416 @@ + + + + + +Mail Unique Layout + + + +
+

Mail Unique Layout

+ + +

Beta License: AGPL-3 akretion/ak-odoo-incubator

+

This module forces a unique email layout for all emails sent.

+

Table of contents

+ +
+

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 +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Akretion
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is part of the akretion/ak-odoo-incubator project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/product_pricelist_per_attribute_value/README.rst b/product_pricelist_per_attribute_value/README.rst index 7123420ec..8b667ef06 100644 --- a/product_pricelist_per_attribute_value/README.rst +++ b/product_pricelist_per_attribute_value/README.rst @@ -2,10 +2,13 @@ Pricelist Per Attribute Value ============================= -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:d01a57a2a5ab3f38b4d463907bb92ebd350e1dcc5b879f6a20a72df7ca379d32 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -17,7 +20,7 @@ Pricelist Per Attribute Value :target: https://github.com/akretion/ak-odoo-incubator/tree/14.0/product_pricelist_per_attribute_value :alt: akretion/ak-odoo-incubator -|badge1| |badge2| |badge3| +|badge1| |badge2| |badge3| This module allows to have pricelist rule by product attribute value. @@ -31,7 +34,7 @@ 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 +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. diff --git a/product_pricelist_per_attribute_value/static/description/index.html b/product_pricelist_per_attribute_value/static/description/index.html index 29a02b201..26c5e760a 100644 --- a/product_pricelist_per_attribute_value/static/description/index.html +++ b/product_pricelist_per_attribute_value/static/description/index.html @@ -1,20 +1,19 @@ - - + Pricelist Per Attribute Value -
+

Pricelist Per Attribute Value

-

Beta License: AGPL-3 OCA/product-attribute

+

Beta License: AGPL-3 akretion/ak-odoo-incubator

This module allows to have pricelist rule by product attribute value.

Table of contents

-

Bug Tracker

-

Bugs are tracked on GitHub Issues. +

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.

-

Credits

+

Credits

-

Authors

+

Authors

  • Akretion
-

Maintainers

-

This module is part of the OCA/product-attribute project on GitHub.

+

Maintainers

+

This module is part of the akretion/ak-odoo-incubator project on GitHub.

You are welcome to contribute.

diff --git a/product_uom_force_change/i18n/product_uom_force_change.pot b/product_uom_force_change/i18n/product_uom_force_change.pot index 0d0befb4d..0b8e16367 100644 --- a/product_uom_force_change/i18n/product_uom_force_change.pot +++ b/product_uom_force_change/i18n/product_uom_force_change.pot @@ -13,11 +13,6 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: product_uom_force_change -#: model:res.groups,name:product_uom_force_change.group_product_change_uom -msgid "Allow to change the Uom of a product already used" -msgstr "" - #. module: product_uom_force_change #: model:ir.actions.act_window,name:product_uom_force_change.act_open_procut_change_uom_action #: model_terms:ir.ui.view,arch_db:product_uom_force_change.product_change_uom_view_form diff --git a/proxy_action/README.rst b/proxy_action/README.rst index c89072b44..8139c6298 100644 --- a/proxy_action/README.rst +++ b/proxy_action/README.rst @@ -2,10 +2,13 @@ Proxy Action ============ -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:474cc37834dec564d0148b55ec4b6aefd2116c10147b43d012427d75a5e700fc + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -17,7 +20,7 @@ Proxy Action :target: https://github.com/akretion/ak-odoo-incubator/tree/14.0/proxy_action :alt: akretion/ak-odoo-incubator -|badge1| |badge2| |badge3| +|badge1| |badge2| |badge3| Communicate from Odoo (js client-side) to a localhost http server. @@ -53,7 +56,7 @@ 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 +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. diff --git a/proxy_action/static/description/index.html b/proxy_action/static/description/index.html index 772c65587..4e9e97311 100644 --- a/proxy_action/static/description/index.html +++ b/proxy_action/static/description/index.html @@ -1,20 +1,19 @@ - - + Proxy Action + + +
+

Purchase EDI file

+ + +

Beta License: AGPL-3 akretion/ak-odoo-incubator

+

This module allows to send file to supplier on purchase order’s validation. +The file may be sent by mail or using a backend storage (aws, sftp, …) +The file comes from native Odoo exports but other format could be implemented

+

The format of the file may depend on the product and the supplier or on the supplier only +(meaning we may have multiple files for a same PO, depending on the products)

+

Table of contents

+ +
+

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 +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Akretion
  • +
+
+
+

Maintainers

+

This module is part of the akretion/ak-odoo-incubator project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/purchase_lot/README.rst b/purchase_lot/README.rst index 1f6027e80..8aa276283 100644 --- a/purchase_lot/README.rst +++ b/purchase_lot/README.rst @@ -2,10 +2,13 @@ Purchase Lot ============ -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:4151ac694b3c5410fdb5801f7e8de486c9878c6eec3f1c843b979622d06d49e5 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -17,7 +20,7 @@ Purchase Lot :target: https://github.com/akretion/ak-odoo-incubator/tree/14.0/purchase_lot :alt: akretion/ak-odoo-incubator -|badge1| |badge2| |badge3| +|badge1| |badge2| |badge3| Propagate lot From sale orders to purchase orders. Allow to buy specific lot for an sale order (may be usefull for fully configurable products) @@ -32,7 +35,7 @@ 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 +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. diff --git a/purchase_lot/static/description/index.html b/purchase_lot/static/description/index.html new file mode 100644 index 000000000..dbb5bf9f8 --- /dev/null +++ b/purchase_lot/static/description/index.html @@ -0,0 +1,409 @@ + + + + + +Purchase Lot + + + +
+

Purchase Lot

+ + +

Beta License: AGPL-3 akretion/ak-odoo-incubator

+

Propagate lot From sale orders to purchase orders. +Allow to buy specific lot for an sale order (may be usefull for fully configurable products)

+

Table of contents

+ +
+

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 +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Akretion
  • +
+
+
+

Maintainers

+

This module is part of the akretion/ak-odoo-incubator project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/stock_inventory_simple_valuation/README.rst b/stock_inventory_simple_valuation/README.rst index 0039d57c1..f29f012eb 100644 --- a/stock_inventory_simple_valuation/README.rst +++ b/stock_inventory_simple_valuation/README.rst @@ -2,10 +2,13 @@ Stock Inventory Simple Valuation ================================ -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:91423735a77ec3e24102ee1a92bc11457066d0395158220aa269d4ceb304791d + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -17,7 +20,7 @@ Stock Inventory Simple Valuation :target: https://github.com/akretion/ak-odoo-incubator/tree/14.0/stock_inventory_simple_valuation :alt: akretion/ak-odoo-incubator -|badge1| |badge2| |badge3| +|badge1| |badge2| |badge3| This module adds a way to get an approximate evaluation of the value of your inventory lines. This is useful in cases where client product data is incomplete. @@ -38,7 +41,7 @@ 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 +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. diff --git a/stock_inventory_simple_valuation/static/description/index.html b/stock_inventory_simple_valuation/static/description/index.html index c45faa774..b04179acb 100644 --- a/stock_inventory_simple_valuation/static/description/index.html +++ b/stock_inventory_simple_valuation/static/description/index.html @@ -1,20 +1,19 @@ - - + Stock Inventory Simple Valuation