Holger Brunn
6 years ago
committed by
OCA-git-bot
26 changed files with 375 additions and 412 deletions
-
6.travis.yml
-
17base_import_odoo/CONFIGURE.rst
-
1base_import_odoo/CONTRIBUTORS.rst
-
8base_import_odoo/DESCRIPTION.rst
-
99base_import_odoo/README.rst
-
5base_import_odoo/ROADMAP.rst
-
7base_import_odoo/USAGE.rst
-
2base_import_odoo/__init__.py
-
5base_import_odoo/__manifest__.py
-
6base_import_odoo/demo/import_odoo_database.xml
-
6base_import_odoo/demo/import_odoo_database_field.xml
-
7base_import_odoo/demo/import_odoo_database_model.xml
-
6base_import_odoo/demo/ir_attachment.xml
-
6base_import_odoo/demo/res_partner.xml
-
6base_import_odoo/demo/res_users.xml
-
6base_import_odoo/models/__init__.py
-
45base_import_odoo/models/import_odoo_database.py
-
4base_import_odoo/models/import_odoo_database_field.py
-
9base_import_odoo/models/import_odoo_database_model.py
-
4base_import_odoo/models/ir_model_data.py
-
2base_import_odoo/tests/__init__.py
-
7base_import_odoo/tests/test_base_import_odoo.py
-
10base_import_odoo/views/import_odoo_database.xml
-
6base_import_odoo/views/import_odoo_database_field.xml
-
6base_import_odoo/views/menu.xml
-
1requirements.txt
@ -0,0 +1,17 @@ |
|||||
|
Go to Settings / Remote Odoo import / Import configurations and create a configuration. |
||||
|
|
||||
|
After filling in your credentials, select models you want to import from the remote database. If you only want to import a subset of the records, add an appropriate domain. |
||||
|
|
||||
|
The import will copy records of all models listed, and handle links to records of models which are not imported depending on the existing field mappings. Field mappings to local records also are a stopping condition. Without those, the import will have to create some record for all required x2x fields, which you probably don't want. |
||||
|
|
||||
|
Probably you'll want to map records of model ``res.company``, and at least the admin user. |
||||
|
|
||||
|
The module doesn't import one2many fields, if you want to have those, add the model the field in question points to to the list of imported models, possibly with a domain. |
||||
|
|
||||
|
If you don't fill in a remote ID, the addon will use the configured local ID for every record of the model (this way, you can for example map all users in the remote system to some import user in the current system). |
||||
|
|
||||
|
For fields that have a uniqueness constraint (like ``res.users#login``), create a field mapping if type ``unique``, then the import will generate a unique value for this field. |
||||
|
|
||||
|
For models using references with two fields (like ``ir.attachment``), create a field mapping of type ``by reference`` and select the two fields involved. The import will transform known ids (=ids of models you import) to the respective local id, and clean out the model/id fields for unknown models/ids. |
||||
|
|
||||
|
You can add custom defaults per model in case your database has different required fields than the source database. For ``res.partner``, you'll most certainly fill in ``{'name': '/'}`` or somethign similar. |
@ -0,0 +1 @@ |
|||||
|
* Holger Brunn <hbrunn@therp.nl> |
@ -0,0 +1,8 @@ |
|||||
|
This module was written to import data from another Odoo database. The idea is that you define which models to import from the other database, and add eventual mappings for records you don't want to import. |
||||
|
|
||||
|
Use cases |
||||
|
========= |
||||
|
|
||||
|
- merging databases |
||||
|
- one way sync |
||||
|
- aggregating management data from distributed systems |
@ -1,98 +1 @@ |
|||||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg |
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html |
|
||||
:alt: License: AGPL-3 |
|
||||
|
|
||||
================================ |
|
||||
Import from remote Odoo database |
|
||||
================================ |
|
||||
|
|
||||
This module was written to import data from another Odoo database. The idea is that you define which models to import from the other database, and add eventual mappings for records you don't want to import. |
|
||||
|
|
||||
Use cases |
|
||||
========= |
|
||||
|
|
||||
- merging databases |
|
||||
- one way sync |
|
||||
- aggregating management data from distributed systems |
|
||||
|
|
||||
|
|
||||
Configuration |
|
||||
============= |
|
||||
|
|
||||
Go to Settings / Remote Odoo import / Import configurations and create a configuration. |
|
||||
|
|
||||
After filling in your credentials, select models you want to import from the remote database. If you only want to import a subset of the records, add an appropriate domain. |
|
||||
|
|
||||
The import will copy records of all models listed, and handle links to records of models which are not imported depending on the existing field mappings. Field mappings to local records also are a stopping condition. Without those, the import will have to create some record for all required x2x fields, which you probably don't want. |
|
||||
|
|
||||
Probably you'll want to map records of model `res.company`, and at least the admin user. |
|
||||
|
|
||||
The module doesn't import one2many fields, if you want to have those, add the model the field in question points to to the list of imported models, possibly with a domain. |
|
||||
|
|
||||
If you don't fill in a remote ID, the addon will use the configured local ID for every record of the model (this way, you can for example map all users in the remote system to some import user in the current system). |
|
||||
|
|
||||
For fields that have a uniqueness constraint (like `res.users#login`), create a field mapping if type `unique`, then the import will generate a unique value for this field. |
|
||||
|
|
||||
For models using references with two fields (like `ir.attachment`), create a field mapping of type `by reference` and select the two fields involved. The import will transform known ids (=ids of models you import) to the respective local id, and clean out the model/id fields for unknown models/ids. |
|
||||
|
|
||||
Usage |
|
||||
===== |
|
||||
|
|
||||
To use this module, you need to: |
|
||||
|
|
||||
#. go to an import configuration and hit the button ``Run import`` |
|
||||
#. be patient, this creates a cronjob which will start up to a minutes afterwards |
|
||||
#. reload the form, as soon as the cronjob runs you'll see a field ``Progress`` that lets you inspect what was imported already |
|
||||
#. note that the cronjob also resets the password as soon as it has read it. So for a subsequent import, you'll have to fill it in again |
|
||||
#. running an import a second time won't duplicate data, it should recognize records imported earlier and just update them |
|
||||
|
|
||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas |
|
||||
:alt: Try me on Runbot |
|
||||
:target: https://runbot.odoo-community.org/runbot/149/8.0 |
|
||||
|
|
||||
Known issues / Roadmap |
|
||||
====================== |
|
||||
|
|
||||
* Yes of course this duplicates a lot of connector functionality. Rewrite this with the connector framework, probably collaborate with https://github.com/OCA/connector-odoo2odoo |
|
||||
* Do something with workflows |
|
||||
* Support reference fields, while being at it refactor _run_import_map_values to call a function per field type |
|
||||
* Probably it's safer and faster to disable recomputation during import, and recompute all fields afterwards |
|
||||
* Add duplicate handling strategy 'Overwrite older' |
|
||||
|
|
||||
Bug Tracker |
|
||||
=========== |
|
||||
|
|
||||
Bugs are tracked on `GitHub Issues |
|
||||
<https://github.com/OCA/server-tools/issues>`_. In case of trouble, please |
|
||||
check there if your issue has already been reported. If you spotted it first, |
|
||||
help us smashing it by providing a detailed and welcomed feedback. |
|
||||
|
|
||||
Credits |
|
||||
======= |
|
||||
|
|
||||
Images |
|
||||
------ |
|
||||
|
|
||||
* Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_. |
|
||||
|
|
||||
Contributors |
|
||||
------------ |
|
||||
|
|
||||
* Holger Brunn <hbrunn@therp.nl> |
|
||||
|
|
||||
Do not contact contributors directly about help with questions or problems concerning this addon, but use the `community mailing list <mailto:community@mail.odoo.com>`_ or the `appropriate specialized mailinglist <https://odoo-community.org/groups>`_ for help, and the bug tracker linked in `Bug Tracker`_ above for technical issues. |
|
||||
|
|
||||
Maintainer |
|
||||
---------- |
|
||||
|
|
||||
.. image:: https://odoo-community.org/logo.png |
|
||||
:alt: Odoo Community Association |
|
||||
:target: https://odoo-community.org |
|
||||
|
|
||||
This module is maintained by the OCA. |
|
||||
|
|
||||
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. |
|
||||
|
|
||||
To contribute to this module, please visit https://odoo-community.org. |
|
||||
|
/ |
@ -0,0 +1,5 @@ |
|||||
|
* Yes of course this duplicates a lot of connector functionality. Rewrite this with the connector framework, probably collaborate with https://github.com/OCA/connector-odoo2odoo |
||||
|
* Do something with workflows |
||||
|
* Support reference fields, while being at it refactor _run_import_map_values to call a function per field type |
||||
|
* Probably it's safer and faster to disable recomputation during import, and recompute all fields afterwards |
||||
|
* Add duplicate handling strategy 'Overwrite older' |
@ -0,0 +1,7 @@ |
|||||
|
To use this module, you need to: |
||||
|
|
||||
|
#. go to an import configuration and hit the button ``Run import`` |
||||
|
#. be patient, this creates a cronjob which will start up to a minutes afterwards |
||||
|
#. reload the form, as soon as the cronjob runs you'll see a field ``Progress`` that lets you inspect what was imported already |
||||
|
#. note that the cronjob also resets the password as soon as it has read it. So for a subsequent import, you'll have to fill it in again |
||||
|
#. running an import a second time won't duplicate data, it should recognize records imported earlier and just update them |
@ -1,4 +1,4 @@ |
|||||
# -*- coding: utf-8 -*- |
# -*- coding: utf-8 -*- |
||||
# © 2017 Therp BV <http://therp.nl> |
|
||||
|
# Copyright 2017-2018 Therp BV <http://therp.nl> |
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
from . import models |
from . import models |
@ -1,13 +1,14 @@ |
|||||
# -*- coding: utf-8 -*- |
# -*- coding: utf-8 -*- |
||||
# © 2017 Therp BV <http://therp.nl> |
|
||||
|
# Copyright 2017-2018 Therp BV <http://therp.nl> |
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
{ |
{ |
||||
"name": "Import from Odoo", |
"name": "Import from Odoo", |
||||
"version": "8.0.1.0.1", |
|
||||
|
"version": "10.0.1.0.0", |
||||
"author": "Therp BV,Odoo Community Association (OCA)", |
"author": "Therp BV,Odoo Community Association (OCA)", |
||||
"license": "AGPL-3", |
"license": "AGPL-3", |
||||
"category": "Tools", |
"category": "Tools", |
||||
"summary": "Import records from another Odoo instance", |
"summary": "Import records from another Odoo instance", |
||||
|
"website": "https://github.com/OCA/server-tools", |
||||
"depends": [ |
"depends": [ |
||||
'mail', |
'mail', |
||||
], |
], |
@ -1,11 +1,9 @@ |
|||||
<?xml version="1.0" encoding="UTF-8"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||
<openerp> |
|
||||
<data noupdate="1"> |
|
||||
|
<odoo noupdate="1"> |
||||
<record id="demodb" model="import.odoo.database"> |
<record id="demodb" model="import.odoo.database"> |
||||
<field name="url">http://localhost:8069</field> |
<field name="url">http://localhost:8069</field> |
||||
<field name="database">demodb</field> |
<field name="database">demodb</field> |
||||
<field name="user">admin</field> |
<field name="user">admin</field> |
||||
<field name="password" eval="False" /> |
<field name="password" eval="False" /> |
||||
</record> |
</record> |
||||
</data> |
|
||||
</openerp> |
|
||||
|
</odoo> |
@ -1,11 +1,9 @@ |
|||||
<?xml version="1.0" encoding="UTF-8"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||
<openerp> |
|
||||
<data> |
|
||||
|
<odoo> |
||||
<record id="attachment_demo" model="ir.attachment"> |
<record id="attachment_demo" model="ir.attachment"> |
||||
<field name="name">Demo attachment</field> |
<field name="name">Demo attachment</field> |
||||
<field name="res_model">res.users</field> |
<field name="res_model">res.users</field> |
||||
<field name="res_id" ref="base.user_demo" /> |
<field name="res_id" ref="base.user_demo" /> |
||||
<field name="datas">aGVsbG8gd29ybGQK</field> |
<field name="datas">aGVsbG8gd29ybGQK</field> |
||||
</record> |
</record> |
||||
</data> |
|
||||
</openerp> |
|
||||
|
</odoo> |
@ -1,8 +1,6 @@ |
|||||
<?xml version="1.0" encoding="UTF-8"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||
<openerp> |
|
||||
<data> |
|
||||
|
<odoo> |
||||
<record id="base.res_partner_1" model="res.partner"> |
<record id="base.res_partner_1" model="res.partner"> |
||||
<field name="user_id" ref="base.user_demo" /> |
<field name="user_id" ref="base.user_demo" /> |
||||
</record> |
</record> |
||||
</data> |
|
||||
</openerp> |
|
||||
|
</odoo> |
@ -1,9 +1,7 @@ |
|||||
<?xml version="1.0" encoding="UTF-8"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||
<openerp> |
|
||||
<data noupdate="1"> |
|
||||
|
<odoo noupdate="1"> |
||||
<record id="mapped_admin" model="res.users" context="{'no_reset_password': True}"> |
<record id="mapped_admin" model="res.users" context="{'no_reset_password': True}"> |
||||
<field name="name">Mapped admin</field> |
<field name="name">Mapped admin</field> |
||||
<field name="login">mapped_admin</field> |
<field name="login">mapped_admin</field> |
||||
</record> |
</record> |
||||
</data> |
|
||||
</openerp> |
|
||||
|
</odoo> |
@ -1,7 +1,7 @@ |
|||||
# -*- coding: utf-8 -*- |
# -*- coding: utf-8 -*- |
||||
# © 2017 Therp BV <http://therp.nl> |
|
||||
|
# Copyright 2017-2018 Therp BV <http://therp.nl> |
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
from . import ir_model_data |
|
||||
from . import import_odoo_database |
from . import import_odoo_database |
||||
from . import import_odoo_database_model |
|
||||
from . import import_odoo_database_field |
from . import import_odoo_database_field |
||||
|
from . import import_odoo_database_model |
||||
|
from . import ir_model_data |
@ -1,4 +1,4 @@ |
|||||
# -*- coding: utf-8 -*- |
# -*- coding: utf-8 -*- |
||||
# © 2017 Therp BV <http://therp.nl> |
|
||||
|
# Copyright 2017-2018 Therp BV <http://therp.nl> |
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
from . import test_base_import_odoo |
from . import test_base_import_odoo |
Write
Preview
Loading…
Cancel
Save
Reference in new issue