diff --git a/.copier-answers.yml b/.copier-answers.yml index e5e5d5d38724..067996fac093 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.18 _src_path: gh:oca/oca-addons-repo-template +additional_ruff_rules: [] ci: GitHub -dependency_installation_mode: PIP generate_requirements_txt: true github_check_license: true github_ci_extra_env: {} @@ -11,14 +11,15 @@ github_enable_makepot: false github_enable_stale_action: false github_enforce_dev_status_compatibility: true include_wkhtmltopdf: false -odoo_version: 16.0 +odoo_test_flavor: Odoo +odoo_version: 17.0 org_name: Odoo Community Association (OCA) org_slug: OCA rebel_module_groups: [] -repo_description: null +repo_description: OpenUpgrade repo_name: 'Open Source upgrade path for Odoo/OpenERP ' repo_slug: openupgrade repo_website: https://github.com/OCA/OpenUpgrade -travis_apt_packages: [] -travis_apt_sources: [] +use_pyproject_toml: true +use_ruff: true diff --git a/.eslintrc.yml b/.eslintrc.yml index 9429bc688aab..fed88d70d23e 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/.flake8 b/.flake8 deleted file mode 100644 index e397e8ed4e3e..000000000000 --- a/.flake8 +++ /dev/null @@ -1,12 +0,0 @@ -[flake8] -max-line-length = 88 -max-complexity = 16 -# B = bugbear -# B9 = bugbear opinionated (incl line length) -select = C,E,F,W,B,B9 -# E203: whitespace before ':' (black behaviour) -# E501: flake8 line length (covered by bugbear B950) -# W503: line break before binary operator (black behaviour) -ignore = E203,E501,W503 -per-file-ignores= - __init__.py:F401 diff --git a/.github/workflows/documentation-commit.yml b/.github/workflows/documentation-commit.yml index 7438211c4abc..721721ef8b27 100644 --- a/.github/workflows/documentation-commit.yml +++ b/.github/workflows/documentation-commit.yml @@ -1,4 +1,4 @@ -# On each push in 16.0 branch, +# On each push in 17.0 branch, # AND if the coverage file changed, # build documentation branch and commit the changes # so that the changes are visible on the website @@ -8,7 +8,7 @@ name: Build and commit documentation on: push: - paths: ["docsource/modules150-160.rst"] + paths: ["docsource/modules160-170.rst"] jobs: documentation-commit: @@ -27,7 +27,7 @@ jobs: uses: actions/checkout@v2 with: repository: odoo/odoo - ref: "16.0" + ref: "17.0" fetch-depth: 1 path: odoo - name: Configuration diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 0a9dbb532546..c58f6292e622 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -3,11 +3,11 @@ name: pre-commit on: pull_request: branches: - - "16.0*" + - "17.0*" push: branches: - - "16.0" - - "16.0-ocabot-*" + - "17.0" + - "17.0-ocabot-*" jobs: pre-commit: @@ -27,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 097177f1e859..6f58dffe85cc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,9 +6,9 @@ name: Test OpenUpgrade migration on: - push: - branches: ["16.0*"] - pull_request: + # push: + # branches: ["17.0*"] + # pull_request: jobs: test: @@ -44,19 +44,19 @@ jobs: run: createdb $DB - name: DB Restore run: | - wget -q -O- $DOWNLOADS/15.0.psql | pg_restore -d $DB --no-owner + wget -q -O- $DOWNLOADS/16.0.psql | pg_restore -d $DB --no-owner - name: Check out Odoo uses: actions/checkout@v2 with: repository: odoo/odoo - ref: "16.0" + ref: "17.0" fetch-depth: 1 path: odoo - name: Check out previous Odoo uses: actions/checkout@v2 with: repository: odoo/odoo - ref: "15.0" + ref: "16.0" fetch-depth: 1 path: odoo-old - name: Check out OpenUpgrade @@ -87,7 +87,7 @@ jobs: run: | pip install -q -r odoo/requirements.txt pip install -r ./openupgrade/requirements.txt - # this is for v15 l10n_eg_edi_eta which crashes without it + # this is for v16 l10n_eg_edi_eta which crashes without it pip install asn1crypto - name: Test data run: | @@ -99,7 +99,7 @@ jobs: # select modules and perform the upgrade MODULES_OLD=$(\ sed -n '/^+========/,$p' \ - openupgrade/docsource/modules150-160.rst \ + openupgrade/docsource/modules160-170.rst \ | grep "Done\|Partial\|Nothing" \ | grep -v "theme_" \ | sed -rn 's/((^\| *\|del\| *)|^\| *)([0-9a-z_]*)[ \|].*/\3/g p' \ @@ -107,7 +107,7 @@ jobs: | paste -d, -s) MODULES_NEW=$(\ sed -n '/^+========/,$p' \ - openupgrade/docsource/modules150-160.rst \ + openupgrade/docsource/modules160-170.rst \ | grep "Done\|Partial\|Nothing" \ | grep -v "theme_" \ | sed -rn 's/((^\| *\|new\| *)|^\| *)([0-9a-z_]*)[ \|].*/\3/g p' \ diff --git a/.gitignore b/.gitignore index 9c283fd41f6c..0090721f5d24 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ __pycache__/ *.py[cod] /.venv /.pytest_cache +/.ruff_cache # C extensions *.so diff --git a/.isort.cfg b/.isort.cfg deleted file mode 100644 index 0ec187efd1bf..000000000000 --- a/.isort.cfg +++ /dev/null @@ -1,13 +0,0 @@ -[settings] -; see https://github.com/psf/black -multi_line_output=3 -include_trailing_comma=True -force_grid_wrap=0 -combine_as_imports=True -use_parentheses=True -line_length=88 -known_odoo=odoo -known_odoo_addons=odoo.addons -sections=FUTURE,STDLIB,THIRDPARTY,ODOO,ODOO_ADDONS,FIRSTPARTY,LOCALFOLDER -default_section=THIRDPARTY -ensure_newline_before_comments = True diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 33f69cdd4b32..0b0bbc9acfd2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,6 +12,10 @@ 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/| # You don't usually want a bot to modify your legal texts (LICENSE.*|COPYING.*) default_language_version: @@ -32,28 +36,30 @@ repos: entry: found a en.po file language: fail files: '[a-zA-Z0-9_]*/i18n/en\.po$' + - repo: https://github.com/sbidoul/whool + rev: v0.5 + hooks: + - id: whool-init - repo: https://github.com/oca/maintainer-tools - rev: 4cd2b852214dead80822e93e6749b16f2785b2fe + rev: 568cacd1d6eef453063a524a5ce63dcd49c7259b hooks: # update the NOT INSTALLABLE ADDONS section above - id: oca-update-pre-commit-excluded-addons - id: oca-fix-manifest-website args: ["https://github.com/OCA/OpenUpgrade"] - - repo: https://github.com/myint/autoflake - rev: v1.6.1 - hooks: - - id: autoflake + - id: oca-gen-addon-readme args: - - --expand-star-imports - - --ignore-init-module-imports - - --in-place - - --remove-all-unused-imports - - --remove-duplicate-keys - - --remove-unused-variables - - repo: https://github.com/psf/black - rev: 22.8.0 + - --addons-dir=. + - --branch=17.0 + - --org-name=OCA + - --repo-name=openupgrade + - --if-source-changed + - id: oca-gen-external-dependencies + - repo: https://github.com/OCA/odoo-pre-commit-hooks + rev: v0.0.25 hooks: - - id: black + - id: oca-checks-odoo-module + - id: oca-checks-po - repo: https://github.com/pre-commit/mirrors-prettier rev: v2.7.1 hooks: @@ -95,31 +101,14 @@ repos: - id: check-xml - id: mixed-line-ending args: ["--fix=lf"] - - repo: https://github.com/asottile/pyupgrade - rev: v2.38.2 - hooks: - - id: pyupgrade - args: ["--keep-percent-format"] - - repo: https://github.com/PyCQA/isort - rev: 5.12.0 - hooks: - - id: isort - name: isort except __init__.py - args: - - --settings=. - exclude: /__init__\.py$ - - repo: https://github.com/acsone/setuptools-odoo - rev: 3.1.8 - hooks: - - id: setuptools-odoo-make-default - - repo: https://github.com/PyCQA/flake8 - rev: 3.9.2 + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.1.3 hooks: - - id: flake8 - name: flake8 - additional_dependencies: ["flake8-bugbear==21.9.2"] + - id: ruff + args: [--fix, --exit-non-zero-on-fix] + - id: ruff-format - repo: https://github.com/OCA/pylint-odoo - rev: 7.0.2 + rev: v8.0.19 hooks: - id: pylint_odoo name: pylint with optional checks diff --git a/.pylintrc b/.pylintrc index 85dfb66ab720..46ac73d871bd 100644 --- a/.pylintrc +++ b/.pylintrc @@ -5,12 +5,12 @@ load-plugins=pylint_odoo score=n [ODOOLINT] -readme_template_url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst" -manifest_required_authors=Odoo Community Association (OCA) -manifest_required_keys=license -manifest_deprecated_keys=description,active -license_allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3 -valid_odoo_versions=16.0 +readme-template-url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst" +manifest-required-authors=Odoo Community Association (OCA) +manifest-required-keys=license +manifest-deprecated-keys=description,active +license-allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3 +valid-odoo-versions=17.0 [MESSAGES CONTROL] disable=all diff --git a/.pylintrc-mandatory b/.pylintrc-mandatory index 1a58a7d3f00e..f9886441aec6 100644 --- a/.pylintrc-mandatory +++ b/.pylintrc-mandatory @@ -4,12 +4,12 @@ load-plugins=pylint_odoo score=n [ODOOLINT] -readme_template_url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst" -manifest_required_authors=Odoo Community Association (OCA) -manifest_required_keys=license -manifest_deprecated_keys=description,active -license_allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3 -valid_odoo_versions=16.0 +readme-template-url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst" +manifest-required-authors=Odoo Community Association (OCA) +manifest-required-keys=license +manifest-deprecated-keys=description,active +license-allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3 +valid-odoo-versions=17.0 [MESSAGES CONTROL] disable=all diff --git a/.ruff.toml b/.ruff.toml new file mode 100644 index 000000000000..634db8e79b40 --- /dev/null +++ b/.ruff.toml @@ -0,0 +1,29 @@ + +target-version = "py310" +fix = true + +[lint] +extend-select = [ + "B", + "C90", + "I", # isort + "UP", # pyupgrade +] +exclude = ["setup/*"] + +[format] +exclude = ["setup/*"] + +[per-file-ignores] +"__init__.py" = ["F401", "I001"] # ignore unused and unsorted imports in __init__.py +"__manifest__.py" = ["B018"] # useless expression + +[isort] +section-order = ["future", "standard-library", "third-party", "odoo", "odoo-addons", "first-party", "local-folder"] + +[isort.sections] +"odoo" = ["odoo"] +"odoo-addons" = ["odoo.addons"] + +[mccabe] +max-complexity = 16 diff --git a/README.md b/README.md index 798c3dc75df2..ae4a9ff45388 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ -[![Pre-commit Status](https://github.com/OCA/OpenUpgrade/actions/workflows/pre-commit.yml/badge.svg?branch=16.0)](https://github.com/OCA/OpenUpgrade/actions/workflows/pre-commit.yml?query=branch%3A16.0) -[![Build Status](https://github.com/OCA/OpenUpgrade/actions/workflows/test.yml/badge.svg?branch=16.0)](https://github.com/OCA/OpenUpgrade/actions/workflows/test.yml?query=branch%3A16.0) -[![codecov](https://codecov.io/gh/OCA/OpenUpgrade/branch/16.0/graph/badge.svg)](https://codecov.io/gh/OCA/openupgrade) - +[![Pre-commit Status](https://github.com/OCA/openupgrade/actions/workflows/pre-commit.yml/badge.svg?branch=17.0)](https://github.com/OCA/openupgrade/actions/workflows/pre-commit.yml?query=branch%3A17.0) +[![Build Status](https://github.com/OCA/openupgrade/actions/workflows/test.yml/badge.svg?branch=17.0)](https://github.com/OCA/openupgrade/actions/workflows/test.yml?query=branch%3A17.0) +[![codecov](https://codecov.io/gh/OCA/openupgrade/branch/17.0/graph/badge.svg)](https://codecov.io/gh/OCA/openupgrade) diff --git a/docsource/modules150-160.rst b/docsource/modules150-160.rst deleted file mode 100644 index cec5b51e4c57..000000000000 --- a/docsource/modules150-160.rst +++ /dev/null @@ -1,936 +0,0 @@ -Module coverage 15.0 -> 16.0 -============================ - -.. include:: coverage_legend.rst - -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| Module | Status + Extra Information | -+=================================================+======================+=================================================+ -| account |Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| account_check_printing | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| account_debit_note | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| account_edi | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| account_edi_facturx | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| account_edi_proxy_client | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| account_edi_ubl | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| account_edi_ubl_bis3 | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| account_edi_ubl_cii | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| account_fleet | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| account_lock | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| account_payment | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| account_qr_code_sepa | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| account_sale_timesheet | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| account_tax_python | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| analytic | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| association | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| attachment_indexation | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| auth_ldap | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| auth_oauth | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| auth_password_policy | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| auth_password_policy_portal | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| auth_password_policy_signup | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| auth_signup | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| auth_totp | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| auth_totp_mail | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| auth_totp_mail_enforce | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| auth_totp_portal | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| barcodes | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| barcodes_gs1_nomenclature | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| base | Done (partial) | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| base_address_city | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| base_address_extended | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| base_automation | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| base_geolocalize | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| base_iban | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| base_import | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| base_import_module | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| base_install_request | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| base_setup | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| base_sparse_field | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| base_vat | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| board | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| bus | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| calendar | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| calendar_sms | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| contacts | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| coupon | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| crm | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| crm_iap_enrich | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| crm_iap_mine | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| crm_livechat | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| crm_mail_plugin | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| crm_sms | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| data_recycle | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| delivery | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| delivery_mondialrelay | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| delivery_stock_picking_batch | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| digest | Done |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| event | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| event_booth | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| event_booth_sale | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| event_crm | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| event_crm_sale | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| event_sale | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| event_sms | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| fetchmail | Done | Merged into mail. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| fetchmail_gmail |Done |Merged into google_gmail. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| fetchmail_outlook | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| fleet | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| gamification | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| gamification_sale_crm | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| gift_card | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| google_account |Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| google_calendar |Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| google_drive | |Obsolete module | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| google_gmail | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| google_recaptcha |Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| google_spreadsheet | |Obsolete module. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_attendance | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_contract | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_expense | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_fleet | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_gamification | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_holidays | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_holidays_attendance | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| hr_hourly_cost | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_maintenance | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_org_chart | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_presence | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_recruitment | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| hr_recruitment_skills | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_recruitment_survey | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_skills | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_skills_slides | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_skills_survey | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_timesheet | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_timesheet_attendance | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_work_entry | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_work_entry_contract | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_work_entry_holidays | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| http_routing | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| iap |Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| iap_crm |Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| iap_mail |Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| im_livechat | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| im_livechat_mail_bot |Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_account_edi_ubl_cii_tests | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_ae | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_ae_pos | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_ar | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_ar_website_sale | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_at | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_au | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_be | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| l10n_be_edi | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_bg | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_bo | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_br | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_ca | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_ch | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_cl | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_cn | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_cn_city | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_co | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_co_pos | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_cr | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_cz | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_de | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| l10n_de_purchase | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| l10n_de_repair | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| l10n_de_sale | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_de_skr03 | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_de_skr04 | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| l10n_de_stock | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| l10n_din5008 | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| l10n_din5008_purchase | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| l10n_din5008_repair | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| l10n_din5008_sale | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| l10n_din5008_stock | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_dk | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_do | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_dz | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_ec | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_eg | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_eg_edi_eta | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_es |Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_es_edi_sii | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_et | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_eu_oss | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_fi | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_fi_sale | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_fr | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_fr_facturx_chorus_pro | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_fr_fec | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_fr_pos_cert | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_gcc_invoice | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_gcc_invoice_stock_account | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_gcc_pos | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_generic_coa | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_gr | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_gt | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_hk | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_hn | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_hr | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_hu | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_id | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_id_efaktur | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_ie | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_il | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_in | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_in_edi | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_in_pos | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_in_purchase | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_in_purchase_stock | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_in_sale | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_in_sale_stock | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_in_stock | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_it | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_it_edi | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| l10n_it_edi_sdicoop | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_it_stock_ddt | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_jp | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_ke | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_latam_base | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_latam_invoice_document | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_lt | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_lu | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_ma | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_mn | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_multilang | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_mx | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| l10n_mx_hr | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_nl | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| l10n_nl_edi | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_no | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| l10n_no_edi | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_nz | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_pa | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_pe | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_pk | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_pl | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_pt | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_ro | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_sa | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| l10n_sa_invoice | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_sa_pos | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_se | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_sg | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_si | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_sk | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_syscohada | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_th | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_tr | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_tw | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_ua | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_uk | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_us | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_uy | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_ve | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_vn | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_za | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| link_tracker | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| loyalty | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| loyalty_delivery | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| lunch | Nothing To Do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mail | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mail_bot | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mail_bot_hr | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mail_group | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mail_plugin | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| maintenance | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mass_mailing | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mass_mailing_crm | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mass_mailing_crm_sms | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mass_mailing_event | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mass_mailing_event_sms | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mass_mailing_event_track | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mass_mailing_event_track_sms | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mass_mailing_sale | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mass_mailing_sale_sms | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mass_mailing_slides | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mass_mailing_sms | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| mass_mailing_themes | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| membership |Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| microsoft_account | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| microsoft_calendar | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| microsoft_outlook | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mrp | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mrp_account | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mrp_landed_costs | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mrp_product_expiry | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mrp_repair | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mrp_subcontracting | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mrp_subcontracting_account | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mrp_subcontracting_dropshipping | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| mrp_subcontracting_purchase | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| mrp_subcontracting_repair | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| mrp_subonctracting_landed_costs | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| note |Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| note_pad |Done |Merged into note | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| onboarding | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| pad |Done |Merged into web_editor | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| pad_project |Done |Merged into project | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| partner_autocomplete | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| payment | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| payment_adyen | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| payment_alipay | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| payment_aps | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| payment_asiapay | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| payment_authorize | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| payment_buckaroo | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| payment_custom |Done |Renamed from payment_transfer. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| payment_demo | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| payment_flutterwave | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| payment_mercado_pago | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| payment_mollie | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| payment_ogone | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| payment_paypal | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| payment_payulatam | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| payment_payumoney | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| payment_razorpay | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| payment_sips | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| payment_stripe | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| payment_transfer |Done |Renamed to payment_custom. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| phone_validation | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| point_of_sale | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| portal | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| portal_rating | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| pos_adyen | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| pos_cache | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| pos_coupon | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| pos_discount | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| pos_epson_printer | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| pos_epson_printer_restaurant | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| pos_gift_card | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| pos_hr | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| pos_hr_restaurant | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| pos_loyalty | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| pos_mercury | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| pos_restaurant | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| pos_restaurant_adyen | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| pos_restaurant_stripe | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| pos_sale | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| pos_sale_loyalty | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| pos_sale_margin | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| pos_sale_product_configurator | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| pos_six | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| pos_stripe | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| privacy_lookup | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| product | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| product_email_template | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| product_expiry | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| product_images | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| product_margin | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| product_matrix | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| project | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| project_account | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| project_hr_expense | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| project_mail_plugin | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| project_mrp | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| project_purchase | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| project_sale_expense | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| project_sms | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| project_timesheet_holidays | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| purchase | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| purchase_mrp | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| purchase_product_matrix | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| purchase_requisition | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| purchase_requisition_stock | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| purchase_requisition_stock_dropshipping | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| purchase_stock | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| rating | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| repair | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| resource | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| sale_coupon | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| sale_coupon_delivery | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_crm | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_expense | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| sale_expense_margin | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| sale_gift_card | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| sale_loyalty | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| sale_loyalty_delivery | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_management | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_margin | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_mrp | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_product_configurator | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_product_matrix | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_project | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| sale_project_account | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| sale_project_stock | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_purchase | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_purchase_stock | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_quotation_builder | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_sms | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_stock | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_stock_margin | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_timesheet | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sale_timesheet_margin | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sales_team | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| sms | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| snailmail | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| snailmail_account | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| social_media |Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| spreadsheet | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| spreadsheet_account | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| spreadsheet_dashboard | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| spreadsheet_dashboard_account | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| spreadsheet_dashboard_event_sale | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| spreadsheet_dashboard_hr_expense | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| spreadsheet_dashboard_hr_timesheet | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| spreadsheet_dashboard_im_livechat | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| spreadsheet_dashboard_pos_hr | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| spreadsheet_dashboard_purchase | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| spreadsheet_dashboard_purchase_stock | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| spreadsheet_dashboard_sale | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| spreadsheet_dashboard_sale_timesheet | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| spreadsheet_dashboard_stock_account | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| spreadsheet_dashboard_website_sale_slides | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| stock | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| stock_account | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| stock_dropshipping | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| stock_landed_costs | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| stock_picking_batch | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| stock_sms | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| survey | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| theme_default | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| transifex | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| uom | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| utm | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| web | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| web_editor | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| web_kanban_gauge | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| web_tour | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| web_unsplash | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website | Done | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_blog | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_crm | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_crm_iap_reveal | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_crm_livechat | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_crm_partner_assign | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_crm_sms | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_customer | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_booth | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_booth_exhibitor | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_booth_sale | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_booth_sale_exhibitor | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_crm | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_crm_questions | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_exhibitor | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| website_event_jitsi | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_meet | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_meet_quiz | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_questions | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_sale | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_track | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_track_live | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_track_live_quiz | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_track_quiz | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_form_project | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_forum | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_google_map | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_hr_recruitment | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_jitsi | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_links | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_livechat | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_mail | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_mail_group | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_mass_mailing | Nothing to do | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| website_mass_mailing_sms | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_membership | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_partner | Nothing to do |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_payment | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| website_payment_authorize | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| website_payment_paypal | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_profile | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_sale | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| website_sale_autocomplete | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_sale_comparison | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_sale_comparison_wishlist | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| website_sale_coupon | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| website_sale_coupon_delivery | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_sale_delivery | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| website_sale_delivery_giftcard | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_sale_delivery_mondialrelay | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_sale_digital | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |del| website_sale_gift_card | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| website_sale_loyalty | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| website_sale_loyalty_delivery | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| |new| website_sale_picking | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_sale_product_configurator | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_sale_slides | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_sale_stock | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_sale_stock_product_configurator | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_sale_stock_wishlist | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_sale_wishlist | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_slides | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_slides_forum | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_slides_survey | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_sms | | | -+-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_twitter | |No DB layout changes. | -+-------------------------------------------------+----------------------+-------------------------------------------------+ diff --git a/docsource/modules160-170.rst b/docsource/modules160-170.rst new file mode 100644 index 000000000000..a8da839823a7 --- /dev/null +++ b/docsource/modules160-170.rst @@ -0,0 +1,8 @@ +Module coverage 16.0 -> 17.0 +============================ + +.. include:: coverage_legend.rst + ++-------------------------------------------------+----------------------+-------------------------------------------------+ +| Module | Status + Extra Information | ++=================================================+======================+=================================================+