odoo13-addon-base-import-match


Nameodoo13-addon-base-import-match JSON
Version 13.0.1.0.3 PyPI version JSON
download
home_pagehttps://tecnativa.com
SummaryTry to avoid duplicates before importing
upload_time2023-07-06 15:21:04
maintainer
docs_urlNone
authorTecnativa, Odoo Community Association (OCA)
requires_python>=3.5
licenseAGPL-3
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            =================
Base Import Match
=================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   !! This file is generated by oca-gen-addon-readme !!
   !! changes will be overwritten.                   !!
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |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%2Fserver--backend-lightgray.png?logo=github
    :target: https://github.com/OCA/server-backend/tree/13.0/base_import_match
    :alt: OCA/server-backend
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
    :target: https://translation.odoo-community.org/projects/server-backend-13-0/server-backend-13-0-base_import_match
    :alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
    :target: https://runbot.odoo-community.org/runbot/253/13.0
    :alt: Try me on Runbot

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

By default, when importing data (like CSV import) with the ``base_import``
module, Odoo follows this rule:

- If you import the XMLID of a record, make an **update**.
- If you do not, **create** a new record.

This module allows you to set additional rules to match if a given import is an
update or a new record.

This is useful when you need to sync heterogeneous databases, and the field you
use to match records in those databases with Odoo's is not the XMLID but the
name, VAT, email, etc.

After installing this module, the import logic will be changed to:

- If you import the XMLID of a record, make an **update**.
- If you do not:

  - If there are import match rules for the model you are importing:

    - Discard the rules that require fields you are not importing.
    - Traverse the remaining rules one by one in order to find a match in the database.

      - Skip the rule if it requires a special condition that is not
        satisfied.
      - If one match is found:

        - Stop traversing the rest of valid rules.
        - **Update** that record.
      - If zero or multiple matches are found:

        - Continue with the next rule.
      - If all rules are exhausted and no single match is found:

        - **Create** a new record.
  - If there are no match rules for your model:

    - **Create** a new record.

By default 2 rules are installed for production instances:

- One rule that will allow you to update companies based on their VAT, when
  ``is_company`` is ``True``.
- One rule that will allow you to update users based on their login.

In demo instances there are more examples.

**Table of contents**

.. contents::
   :local:

Configuration
=============

To configure this module, you need to:

#. Go to *Settings > Technical > Database Structure > Import Match*.
#. *Create*.
#. Choose a *Model*.
#. Choose the *Fields* that conform a unique key in that model.
#. If the rule must be used only for certain imported values, check
   *Conditional* and enter the **exact string** that is going to be imported
   in *Imported value*.

   #. Keep in mind that the match here is evaluated as a case sensitive
      **text string** always. If you enter e.g. ``True``, it will match that
      string, but will not match ``1`` or ``true``.
#. *Save*.

In that list view, you can sort rules by drag and drop.

Usage
=====

To use this module, you need to:

#. Follow steps in **Configuration** section above.
#. Go to any list view.
#. Press *Import* and follow the import procedure as usual.

Known issues / Roadmap
======================

* Add a setting to throw an error when multiple matches are found, instead of
  falling back to creation of new record.

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-backend/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 <https://github.com/OCA/server-backend/issues/new?body=module:%20base_import_match%0Aversion:%2013.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
~~~~~~~

* Tecnativa

Contributors
~~~~~~~~~~~~

* `Tecnativa <https://www.tecnativa.com>`_:
  * Jairo Llopis
  * Vicent Cubells
  * Ernesto Tejeda
* Radovan Skolnik <radovan@skolnik.info>

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/server-backend <https://github.com/OCA/server-backend/tree/13.0/base_import_match>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.



            

Raw data

            {
    "_id": null,
    "home_page": "https://tecnativa.com",
    "name": "odoo13-addon-base-import-match",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": "",
    "keywords": "",
    "author": "Tecnativa, Odoo Community Association (OCA)",
    "author_email": "support@odoo-community.org",
    "download_url": "",
    "platform": null,
    "description": "=================\nBase Import Match\n=================\n\n.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png\n    :target: https://odoo-community.org/page/development-status\n    :alt: Beta\n.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png\n    :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html\n    :alt: License: AGPL-3\n.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--backend-lightgray.png?logo=github\n    :target: https://github.com/OCA/server-backend/tree/13.0/base_import_match\n    :alt: OCA/server-backend\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/server-backend-13-0/server-backend-13-0-base_import_match\n    :alt: Translate me on Weblate\n.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png\n    :target: https://runbot.odoo-community.org/runbot/253/13.0\n    :alt: Try me on Runbot\n\n|badge1| |badge2| |badge3| |badge4| |badge5| \n\nBy default, when importing data (like CSV import) with the ``base_import``\nmodule, Odoo follows this rule:\n\n- If you import the XMLID of a record, make an **update**.\n- If you do not, **create** a new record.\n\nThis module allows you to set additional rules to match if a given import is an\nupdate or a new record.\n\nThis is useful when you need to sync heterogeneous databases, and the field you\nuse to match records in those databases with Odoo's is not the XMLID but the\nname, VAT, email, etc.\n\nAfter installing this module, the import logic will be changed to:\n\n- If you import the XMLID of a record, make an **update**.\n- If you do not:\n\n  - If there are import match rules for the model you are importing:\n\n    - Discard the rules that require fields you are not importing.\n    - Traverse the remaining rules one by one in order to find a match in the database.\n\n      - Skip the rule if it requires a special condition that is not\n        satisfied.\n      - If one match is found:\n\n        - Stop traversing the rest of valid rules.\n        - **Update** that record.\n      - If zero or multiple matches are found:\n\n        - Continue with the next rule.\n      - If all rules are exhausted and no single match is found:\n\n        - **Create** a new record.\n  - If there are no match rules for your model:\n\n    - **Create** a new record.\n\nBy default 2 rules are installed for production instances:\n\n- One rule that will allow you to update companies based on their VAT, when\n  ``is_company`` is ``True``.\n- One rule that will allow you to update users based on their login.\n\nIn demo instances there are more examples.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nConfiguration\n=============\n\nTo configure this module, you need to:\n\n#. Go to *Settings > Technical > Database Structure > Import Match*.\n#. *Create*.\n#. Choose a *Model*.\n#. Choose the *Fields* that conform a unique key in that model.\n#. If the rule must be used only for certain imported values, check\n   *Conditional* and enter the **exact string** that is going to be imported\n   in *Imported value*.\n\n   #. Keep in mind that the match here is evaluated as a case sensitive\n      **text string** always. If you enter e.g. ``True``, it will match that\n      string, but will not match ``1`` or ``true``.\n#. *Save*.\n\nIn that list view, you can sort rules by drag and drop.\n\nUsage\n=====\n\nTo use this module, you need to:\n\n#. Follow steps in **Configuration** section above.\n#. Go to any list view.\n#. Press *Import* and follow the import procedure as usual.\n\nKnown issues / Roadmap\n======================\n\n* Add a setting to throw an error when multiple matches are found, instead of\n  falling back to creation of new record.\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/server-backend/issues>`_.\nIn case of trouble, please check there if your issue has already been reported.\nIf you spotted it first, help us smashing it by providing a detailed and welcomed\n`feedback <https://github.com/OCA/server-backend/issues/new?body=module:%20base_import_match%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.\n\nDo not contact contributors directly about support or help with technical issues.\n\nCredits\n=======\n\nAuthors\n~~~~~~~\n\n* Tecnativa\n\nContributors\n~~~~~~~~~~~~\n\n* `Tecnativa <https://www.tecnativa.com>`_:\n  * Jairo Llopis\n  * Vicent Cubells\n  * Ernesto Tejeda\n* Radovan Skolnik <radovan@skolnik.info>\n\nMaintainers\n~~~~~~~~~~~\n\nThis module is maintained by the OCA.\n\n.. image:: https://odoo-community.org/logo.png\n   :alt: Odoo Community Association\n   :target: https://odoo-community.org\n\nOCA, or the Odoo Community Association, is a nonprofit organization whose\nmission is to support the collaborative development of Odoo features and\npromote its widespread use.\n\nThis module is part of the `OCA/server-backend <https://github.com/OCA/server-backend/tree/13.0/base_import_match>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n\n\n",
    "bugtrack_url": null,
    "license": "AGPL-3",
    "summary": "Try to avoid duplicates before importing",
    "version": "13.0.1.0.3",
    "project_urls": {
        "Homepage": "https://tecnativa.com"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad62a06695d64a85fa2a32ddef07a49dea00731328473491aa3348a4999d0004",
                "md5": "cbc2f561d7aab968ef37e84e1aebd236",
                "sha256": "2820ead14e8c418e352cc9cf88efd1f8e27afb413739f227b0700566ef5ee95f"
            },
            "downloads": -1,
            "filename": "odoo13_addon_base_import_match-13.0.1.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "cbc2f561d7aab968ef37e84e1aebd236",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.5",
            "size": 136425,
            "upload_time": "2023-07-06T15:21:04",
            "upload_time_iso_8601": "2023-07-06T15:21:04.578919Z",
            "url": "https://files.pythonhosted.org/packages/ad/62/a06695d64a85fa2a32ddef07a49dea00731328473491aa3348a4999d0004/odoo13_addon_base_import_match-13.0.1.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-06 15:21:04",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "odoo13-addon-base-import-match"
}
        
Elapsed time: 0.10912s