mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 02:32:04 +00:00
19 lines
628 B
Python
19 lines
628 B
Python
|
# Copyright 2020 Tecnativa - Pedro M. Baeza
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||
|
|
||
|
from flectra import models
|
||
|
|
||
|
|
||
|
class BasePartnerMergeAutomaticWizard(models.TransientModel):
|
||
|
_inherit = "base.partner.merge.automatic.wizard"
|
||
|
|
||
|
def action_merge(self):
|
||
|
"""Inject context for avoiding the duplicate reference constraint that
|
||
|
happens when merging one contact with reference in another without
|
||
|
reference.
|
||
|
"""
|
||
|
return super(
|
||
|
BasePartnerMergeAutomaticWizard,
|
||
|
self.with_context(partner_ref_unique_merging=True),
|
||
|
).action_merge()
|