Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
d7e6dc2
Add 'odoo_project_migration'
sebalix Sep 12, 2023
8316084
Fix 'odoo_project_migration' dependency
SilvioC2C Sep 26, 2023
239794a
New data model 'odoo.project.module'
sebalix Nov 3, 2023
0a4d894
Apply pre-commit
sebalix Nov 3, 2023
0f7f685
odoo_project_migration: fix generation of migration data
sebalix Nov 4, 2023
30927a2
odoo_project_migration: export migration data in CSV
sebalix Nov 4, 2023
c3b5090
odoo_project_migration: list migration scripts to consider for a give…
sebalix Apr 19, 2024
58d5766
odoo_project_migration: fix export, read data related to the chosen m…
sebalix Jun 7, 2024
2ce5932
odoo_project_migration: display and export dependency levels
sebalix Jul 12, 2024
88da8d2
odoo_project_migration: include migration paths branches when scannin…
sebalix Sep 18, 2024
81ddb0b
odoo_repository: add User and Manager user groups
sebalix Oct 17, 2024
d15652a
[REF] Allow same module name across different repositories
sebalix Oct 18, 2024
9010769
odoo_project_migration: handle projects in migration data
sebalix Jan 10, 2025
f5c7c0a
odoo_project_migration: ability to hide/show columns in 'Migrations d…
sebalix Feb 28, 2025
bf4ac96
odoo_project_migration: set state migration available
hparfr Feb 11, 2025
ca8faee
odoo_repository_migration: support migration scan between two reposit…
sebalix Mar 13, 2025
ffea245
odoo_repository_migration: able to qualify a module as renamed or rep…
sebalix Apr 11, 2025
871d7cd
odoo_project_migration: fix recomputation of project modules state
sebalix May 30, 2025
695e4df
[UPD] README.rst
OCA-git-bot Dec 3, 2025
e5ef431
[ADD] icon.png
OCA-git-bot Dec 3, 2025
70daf54
[IMP] odoo_project_migration: update README
sebalix Dec 3, 2025
13186af
[UPD] README.rst
OCA-git-bot Dec 8, 2025
9b9033d
Update all modules manifest and README with new repo info
sebalix Jan 17, 2026
fe32d33
[BOT] post-merge updates
OCA-git-bot Jan 17, 2026
fe75560
[UPD] Update odoo_project_migration.pot
Feb 1, 2026
c0e41a1
Added translation using Weblate (Italian)
mymage Feb 2, 2026
c4b5732
[IMP] odoo_project_migration: pre-commit auto fixes
sebalix Apr 3, 2026
7391daf
[MIG] odoo_project_migration: Migration to 18.0
sebalix Apr 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 81 additions & 0 deletions odoo_project_migration/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
===========================
Odoo Project Migration Data
===========================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:21842ccdbd98a7cd36911f18bb9ba9dd7c99182d1a09ffc8c4681d5985e3e281
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmodule--composition--analysis-lightgray.png?logo=github
:target: https://github.com/OCA/module-composition-analysis/tree/18.0/odoo_project_migration
:alt: OCA/module-composition-analysis
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/module-composition-analysis-18-0/module-composition-analysis-18-0-odoo_project_migration
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/module-composition-analysis&target_branch=18.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module integrates the migration data collected by
``odoo_repository_migration`` module in your Odoo projects. It allows to
generate migration reports, giving some hints about the effort to
provide to migrate the project to a newer Odoo version.

**Table of contents**

.. contents::
:local:

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/module-composition-analysis/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 <https://github.com/OCA/module-composition-analysis/issues/new?body=module:%20odoo_project_migration%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

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

Credits
=======

Authors
-------

* Camptocamp

Contributors
------------

- Camptocamp

- Sébastien Alix <seb@usr-src.org>

Maintainers
-----------

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/module-composition-analysis <https://github.com/OCA/module-composition-analysis/tree/18.0/odoo_project_migration>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
2 changes: 2 additions & 0 deletions odoo_project_migration/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import models
from . import wizards
24 changes: 24 additions & 0 deletions odoo_project_migration/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Copyright 2023 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
{
"name": "Odoo Project Migration Data",
"summary": "Analyze your Odoo project migrations.",
"version": "18.0.1.0.0",
"category": "Tools",
"author": "Camptocamp, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/module-composition-analysis",
"data": [
"security/ir.model.access.csv",
"views/odoo_module_branch_migration.xml",
"views/odoo_project.xml",
"views/odoo_project_module_migration.xml",
"wizards/generate_migration_data.xml",
"wizards/export_migration_report.xml",
],
"installable": True,
"depends": [
"odoo_project",
"odoo_repository_migration",
],
"license": "AGPL-3",
}
Loading
Loading