OCA-git-bot
b3b6cd6d30
base_user_role_company 14.0.1.1.0
3 years ago
OCA-git-bot
f115a727f7
Merge PR #137 into 14.0
Signed-off-by dreispt
3 years ago
Andrii Skrypka
10152e6602
[FIX] base_user_role_company: wrong xpath
3 years ago
oca-git-bot
a83cf02bc9
[IMP] update dotfiles [ci skip]
3 years ago
OCA-git-bot
5465ce2de4
[ADD] setup.py
3 years ago
Mi Di
57549dddf8
Translated using Weblate (Vietnamese)
Currently translated at 100.0% (27 of 27 strings)
Translation: server-backend-14.0/server-backend-14.0-base_import_match
Translate-URL: https://translation.odoo-community.org/projects/server-backend-14-0/server-backend-14-0-base_import_match/vi_VN/
3 years ago
Mi Di
1e67df6cfe
Translated using Weblate (Vietnamese)
Currently translated at 87.1% (34 of 39 strings)
Translation: server-backend-14.0/server-backend-14.0-base_user_role
Translate-URL: https://translation.odoo-community.org/projects/server-backend-14-0/server-backend-14-0-base_user_role/vi_VN/
3 years ago
OCA-git-bot
94c7038a42
[UPD] addons table in README.md
3 years ago
OCA-git-bot
73477a1d83
[ADD] setup.py
4 years ago
OCA-git-bot
b4100ed341
[ADD] icon.png
4 years ago
OCA-git-bot
cedd5755ac
[UPD] README.rst
4 years ago
OCA-git-bot
13c0426d86
[UPD] addons table in README.md
4 years ago
oca-travis
2257473b56
[UPD] Update base_user_role_company.pot
4 years ago
OCA-git-bot
80de463e7c
Merge PR #125 into 14.0
Signed-off-by dreispt
4 years ago
oca-git-bot
703f286d03
[IMP] update dotfiles [ci skip]
4 years ago
Chandresh Thakkar OSI
0051dd00e9
[ADD] base_user_role_company: add per company user roles
4 years ago
OCA-git-bot
07f6025920
[ADD] setup.py
4 years ago
OCA-git-bot
fbe07f9230
[UPD] README.rst
4 years ago
OCA-git-bot
aaf3f6658f
[UPD] addons table in README.md
4 years ago
oca-travis
b7bcf4725e
[UPD] Update base_import_match.pot
4 years ago
OCA-git-bot
a2f6567a97
Merge PR #112 into 14.0
Signed-off-by dreispt
4 years ago
Jesus Ramoneda
812f855872
[MIG] base_import_match: Migration to 14.0
4 years ago
Ana Suárez
b95e5b7098
Translated using Weblate (Spanish)
Currently translated at 97.4% (38 of 39 strings)
Translation: server-backend-14.0/server-backend-14.0-base_user_role
Translate-URL: https://translation.odoo-community.org/projects/server-backend-14-0/server-backend-14-0-base_user_role/es/
4 years ago
Jesus Ramoneda
49bec4f38a
[IMP] base_import_match: black, isort, prettier
4 years ago
Radovan Skolnik
b77efdb3f6
[MIG] base_import_match: Migration to 13.0
[UPD] Update base_import_match.pot
4 years ago
Radovan Skolnik
e892b743d7
[IMP] base_import_match: black, isort, prettier
4 years ago
Rodrigo Macedo
a0504d7c4a
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/
5 years ago
OCA Transbot
2e152f5f5c
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/
[UPD] README.rst
6 years ago
ernesto
5d9ab196fd
[MIG] base_import_match: Migration to 12.0
[UPD] README.rst
[UPD] Update base_import_match.pot
6 years ago
OCA Transbot
3c0073b17f
OCA Transbot updated translations from Transifex
[UPD] Update base_import_match.pot
7 years ago
Jairo Llopis
eaaaac1951
[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.
8 years ago
OCA Transbot
a43efe47ea
OCA Transbot updated translations from Transifex
9 years ago
cubells
82a31630fb
base_import_match module
8 years ago
Jairo Llopis
82bb1e33a3
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.
8 years ago
Moisés López
57a82e554a
base_import_match: Small rst fixes in readme file
9 years ago
Jairo Llopis
bdfc921a2e
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.
9 years ago
Jairo Llopis
0757f3c2bc
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.
9 years ago
OCA-git-bot
671e17d39a
[UPD] addons table in README.md
4 years ago
OCA-git-bot
9508bd6f6c
base_user_role 14.0.2.1.1
4 years ago
OCA-git-bot
5d7a31a73c
Merge PR #105 into 14.0
Signed-off-by dreispt
4 years ago
OCA Transbot
7f9de3e888
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: server-backend-14.0/server-backend-14.0-base_user_role
Translate-URL: https://translation.odoo-community.org/projects/server-backend-14-0/server-backend-14-0-base_user_role/
4 years ago
OCA-git-bot
87b06f60c3
[UPD] addons table in README.md
4 years ago
OCA-git-bot
43727cdfdb
base_user_role 14.0.2.1.0
4 years ago
OCA-git-bot
2d7281188d
[UPD] README.rst
4 years ago
oca-travis
d35871e0e7
[UPD] Update base_user_role.pot
4 years ago
OCA-git-bot
12773c01b8
Merge PR #109 into 14.0
Signed-off-by sebastienbeau
4 years ago
beau sebastien
8998006208
Merge branch '14.0' into 14.0-base_user_role_edit_broken
4 years ago
Kevin Khao
a1cf3de9b0
Merge branch '14.0' into 14.0-imp-base_user_role_ux
4 years ago
KevinKhao
3127164937
[IMP] base_user_role: UX improvements
4 years ago
OCA Transbot
efadf0f233
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: server-backend-14.0/server-backend-14.0-base_user_role
Translate-URL: https://translation.odoo-community.org/projects/server-backend-14-0/server-backend-14-0-base_user_role/
4 years ago