Commit Graph

26 Commits

Author SHA1 Message Date
mymage
b1583da489 Translated using Weblate (Italian)
Currently translated at 51.8% (14 of 27 strings)

Translation: server-backend-13.0/server-backend-13.0-base_import_match
Translate-URL: https://translation.odoo-community.org/projects/server-backend-13-0/server-backend-13-0-base_import_match/it/
2023-04-17 16:36:35 +00:00
mymage
06482fda98 Translated using Weblate (Italian)
Currently translated at 51.8% (14 of 27 strings)

Translation: server-backend-13.0/server-backend-13.0-base_import_match
Translate-URL: https://translation.odoo-community.org/projects/server-backend-13-0/server-backend-13-0-base_import_match/it/
2023-04-10 16:33:09 +00:00
mymage
d64c3df280 Translated using Weblate (Italian)
Currently translated at 51.8% (14 of 27 strings)

Translation: server-backend-13.0/server-backend-13.0-base_import_match
Translate-URL: https://translation.odoo-community.org/projects/server-backend-13-0/server-backend-13-0-base_import_match/it/
2023-03-30 14:27:33 +00:00
OCA-git-bot
f2907548c4 base_import_match 13.0.1.0.2 2022-03-10 08:49:57 +00:00
OCA-git-bot
81d77687f4 [UPD] README.rst 2022-03-10 08:49:56 +00:00
Rad0van
79bd879eb4 [FIX] base_import_match: importing related o2m records
The original code did improperly handle importing
related one2many records where at best all their
attribute values would get overwritten by last
of them. This was caused by mapping them only by
their first part.
2022-01-25 22:37:05 +01:00
OCA-git-bot
88cf414ef4 base_import_match 13.0.1.0.1 2021-09-15 06:34:37 +00:00
Katherine Zaoral
5a3ea46b8b [FIX] base_import_match: "Unable to use a closed cursor"
Cached methods should never return recordsets, which are tied to
specific context, env, cursor, uid. Instead, they should return IDs
which, later, can be browsed in the current context.

With this change _usable_rules() cached method is now returing ids instead
of a recordset, and also the _match_find method is properly browsing the
results ids of the cached method.
2021-09-14 17:05:15 -03:00
oca-travis
a3b062dbf0 [UPD] Update base_import_match.pot 2020-08-11 13:52:50 +00:00
Radovan Skolnik
a98f8279fd [MIG] base_import_match: Migration to 13.0 2020-07-16 13:35:19 +02:00
Radovan Skolnik
7b8ce4a970 [IMP] base_import_match: black, isort, prettier 2020-07-15 15:33:19 +02:00
Rodrigo Macedo
6b80c3b884 Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (27 of 27 strings)

Translation: server-backend-12.0/server-backend-12.0-base_import_match
Translate-URL: https://translation.odoo-community.org/projects/server-backend-12-0/server-backend-12-0-base_import_match/pt_BR/
2020-07-15 15:31:51 +02:00
OCA-git-bot
6f018451a2 [UPD] README.rst 2020-07-15 15:31:51 +02:00
OCA Transbot
27b5e79195 Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: server-backend-12.0/server-backend-12.0-base_import_match
Translate-URL: https://translation.odoo-community.org/projects/server-backend-12-0/server-backend-12-0-base_import_match/
2020-07-15 15:31:51 +02:00
oca-travis
62823dd1b2 [UPD] Update base_import_match.pot 2020-07-15 15:31:51 +02:00
OCA-git-bot
1d5e08a999 [UPD] README.rst 2020-07-15 15:31:51 +02:00
ernesto
b45ed98831 [MIG] base_import_match: Migration to 12.0 2020-07-15 15:31:51 +02:00
oca-travis
06689fc773 [UPD] Update base_import_match.pot 2020-07-15 15:31:51 +02:00
OCA Transbot
8b940d34a9 OCA Transbot updated translations from Transifex 2020-07-15 15:31:51 +02:00
Jairo Llopis
98a7be2bf1 [10.0][MIG][base_import_match] Migration and update
Includes:

- Normal migration steps.
- Usage of brand new `_inherit = "base"` in Odoo 10, which implies
  removing a lot of monkey-patching code.
- Log a warning when multiple matches are found.
2020-07-15 15:31:51 +02:00
OCA Transbot
0c7ecfa93e OCA Transbot updated translations from Transifex 2020-07-15 15:31:51 +02:00
cubells
13dded071e base_import_match module 2020-07-15 15:31:51 +02:00
Jairo Llopis
2d092b454d Avoid UnicodeEncodeError. (#544)
* Fix wrong README format.

* [FIX][base_import_match] Avoid UnicodeEncodeError.

When the model or field you chose was translated and had some non-ascii
character, you got an error like this: `UnicodeEncodeError: 'ascii' codec can't
encode character u'\xed' in position 15: ordinal not in range(128)`.

Now, using unicode strings, that won't happen again.

* Do not require a hidden field.

* Further unicode protection, add ondelete clause.
2020-07-15 15:31:51 +02:00
Moisés López
62090284d9 base_import_match: Small rst fixes in readme file 2020-07-15 15:31:51 +02:00
Jairo Llopis
dc0c1a2b10 base_import_match: Add conditionals to fields when importing.
This patch allows to import res.partner records by VAT when is_company==True by default.
2020-07-15 15:31:51 +02:00
Jairo Llopis
47128c59c9 base_import_match: Import deduplicator.
By default, when importing data (like CSV import) with the ``base_import``
module, Odoo follows this rule:

1. If you import the XMLID of a record, make an **update**.
2. 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:

1. If you import the XMLID of a record, make an **update**.
2. If you do not:
   1. If there are import match rules for the model you are importing:
       1. Discard the rules that require fields you are not importing.
       2. Traverse the remaining rules one by one in order to find a match in
          the database.
          1. If one match is found:
             1. Stop traversing the rest of valid rules.
             2. **Update** that record.
          2. If zero or multiple matches are found:
             1. Continue with the next rule.
          3. If all rules are exhausted and no single match is found:
             1. **Create** a new record.
   2. If there are no match rules for your model:
      1. **Create** a new record.
2020-07-15 15:31:51 +02:00