Jairo Llopis
bb82220218
[ADD] partner_phonecall_schedule: Know partner's best phonecall time ( #475 )
7 years ago
OCA-git-bot
4e69fbfb46
[ADD] setup.py
3 years ago
OCA-git-bot
63eb0f36ac
[ADD] icon.png
3 years ago
OCA-git-bot
49635f68cd
[UPD] README.rst
3 years ago
OCA-git-bot
67c0b309bc
[UPD] addons table in README.md
3 years ago
oca-travis
3b039b4321
[UPD] Update partner_title_order.pot
3 years ago
OCA-git-bot
2d9ac2ad6d
Merge PR #1154 into 14.0
Signed-off-by simahawk
3 years ago
Simone Orsi
ba50e66fd2
[ADD] partner_title_order
3 years ago
OCA Transbot
36a032d930
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: partner-contact-14.0/partner-contact-14.0-partner_identification
Translate-URL: https://translation.odoo-community.org/projects/partner-contact-14-0/partner-contact-14-0-partner_identification/
3 years ago
OCA-git-bot
808c0c773c
[UPD] addons table in README.md
3 years ago
OCA-git-bot
108495ddd8
partner_identification 14.0.1.3.0
3 years ago
oca-travis
9cd9a5d711
[UPD] Update partner_identification.pot
3 years ago
OCA-git-bot
e96789a327
Merge PR #1127 into 14.0
Signed-off-by NL66278
3 years ago
OCA-git-bot
01e753833a
[UPD] addons table in README.md
3 years ago
OCA-git-bot
936b334f76
partner_label 14.0.1.0.1
3 years ago
OCA-git-bot
804f214e77
[ADD] setup.py
3 years ago
OCA-git-bot
9299cda6ca
[UPD] README.rst
3 years ago
OCA-git-bot
23aae6ab11
[UPD] addons table in README.md
3 years ago
oca-travis
6ee757dc36
[UPD] Update partner_label.pot
3 years ago
OCA-git-bot
0986f12088
Merge PR #1095 into 14.0
Signed-off-by NL66278
3 years ago
educasilva
c9f231bbcc
Translated using Weblate (Portuguese (Portugal))
Currently translated at 100.0% (47 of 47 strings)
Translation: partner-contact-14.0/partner-contact-14.0-partner_identification
Translate-URL: https://translation.odoo-community.org/projects/partner-contact-14-0/partner-contact-14-0-partner_identification/pt_PT/
3 years ago
Rémi
7bd208d2d0
Translated using Weblate (French)
Currently translated at 90.4% (19 of 21 strings)
Translation: partner-contact-14.0/partner-contact-14.0-partner_email_check
Translate-URL: https://translation.odoo-community.org/projects/partner-contact-14-0/partner-contact-14-0-partner_email_check/fr/
3 years ago
Rémi
cc814a1778
Added translation using Weblate (French)
3 years ago
oca-git-bot
12f50556e9
[IMP] update dotfiles [ci skip]
3 years ago
OCA-git-bot
5a35489290
[UPD] addons table in README.md
3 years ago
OCA-git-bot
0d2872d82a
base_location 14.0.1.2.2
3 years ago
OCA-git-bot
cbce7c289f
Merge PR #1150 into 14.0
Signed-off-by pedrobaeza
3 years ago
OCA-git-bot
e5b24f6877
[ADD] setup.py
3 years ago
Riccardo Bellanova
16117f58c3
Translated using Weblate (Italian)
Currently translated at 100.0% (13 of 13 strings)
Translation: partner-contact-14.0/partner-contact-14.0-partner_contact_job_position
Translate-URL: https://translation.odoo-community.org/projects/partner-contact-14-0/partner-contact-14-0-partner_contact_job_position/it/
3 years ago
OCA-git-bot
94e81c886f
[UPD] addons table in README.md
3 years ago
OCA-git-bot
a9e4dfa0d4
base_location 14.0.1.2.1
3 years ago
OCA-git-bot
0d1606a660
Merge PR #1151 into 14.0
Signed-off-by simahawk
3 years ago
Ivàn Todorovich
353f811ac2
[FIX] base_location: all users should be able to read
For some reason, this access was removed during the migration to 12.0 (67baf9196
).
But this security is perfectly valid and aligned to Odoo core's security for `res.city`[^1].
Without this, you might get bitten while trying to implement website features that
require reading or setting partner's zip_id.
[^1]: https://github.com/odoo/odoo/blob/f5a5d9616/addons/base_address_city/security/ir.model.access.csv
3 years ago
Ivàn Todorovich
5bb6de11c0
[FIX] base_location: address field sync zip_id
`_address_fields` are used by `update_address` [1], which is in turn
called by `_fields_sync` and `_children_sync`.
This mechanism is in charge of synchronizing parent/children address fields
for contacts of type == "contact", as they don't really have an address of
their own. They simply copy the address of their parent.
Without this fix, not only the zip_id is not sync'ed, but also in some cases
an exception may be raised by `_check_zip_id`, due to only some fields being
sync'ed but not all, creating inconsistencies between zip_id and other address
fields.
[1]: https://github.com/odoo/odoo/blob/20648ef21/odoo/addons/base/models/res_partner.py#L429
3 years ago
OCA-git-bot
8aecb405b5
[ADD] setup.py
3 years ago
OCA-git-bot
88e9a3c5ae
[UPD] README.rst
3 years ago
OCA-git-bot
d94a45cd07
[UPD] addons table in README.md
3 years ago
oca-travis
fefab5f64c
[UPD] Update partner_deduplicate_filter.pot
3 years ago
OCA-git-bot
50dba44c62
Merge PR #1148 into 14.0
Signed-off-by pedrobaeza
3 years ago
Víctor Martínez
754320486c
[FIX] partner_tier_validation: Defer rule activation for compatibility
Having this rule activated by default in tests environments makes other tests to fail due to the additional constraint not expected by them, so what we are doing is:
- Having the rule deactivated by default.
- On a post-init hook, we activate it only if we are not in a test environment.
- On own modules tests, we activate it as well
TT30292
3 years ago
Víctor Martínez
e0776042a1
[MIG] partner_deduplicate_filter: Migration to 14.0
TT30292
3 years ago
Víctor Martínez
4f79416c38
[IMP] partner_deduplicate_filter: black, isort, prettier
3 years ago
Kevin Khao
b2194beb08
[MIG] partner_deduplicate_filter: Migration to 13.0
Co-authored-by: João Marques <joao.marques@tecnativa.com>
[UPD] Update partner_deduplicate_filter.pot
[UPD] README.rst
5 years ago
Kevin Khao
577e97f06d
[IMP] partner_deduplicate_filter: black, isort
5 years ago
Victor Martin
024cae480b
[MIG] partner_deduplicate_filter: Migration to 12.0
[UPD] Update partner_deduplicate_filter.pot
[UPD] README.rst
6 years ago
Ernesto Tejeda
949b6681c3
[MIG] crm_deduplicate_filter: Migration to 11.0
[UPD] Update crm_deduplicate_filter.pot
7 years ago
Luis M. Ontalba
ee43a273f7
[MIG] crm_deduplicate_filter: Migrated to 10.0
8 years ago
cubells
d7f3466760
crm_deduplicate_filter module - Updated README - updated views - Fix dependence
8 years ago
Pedro M. Baeza
87590333cc
crm_deduplicate_filter
===========================================
Exclude some records from the deduplication
===========================================
This module extends the possibilities of the contact deduplication allowing
to filter the applicable set according several criteria.
For now, only the filter for restricting the deduplication to only companies or
only contacts is implemented.
Usage
=====
To use this module, you need to:
"Parent company set (Contacts)" in the section 'Exclude contacts having'.
kind of records.
OCA Transbot updated translations from Transifex
8 years ago
OCA-git-bot
9690ba5586
[UPD] addons table in README.md
3 years ago