mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 10:42:06 +00:00
14 lines
424 B
Python
14 lines
424 B
Python
|
# Copyright 2016 Camptocamp SA
|
||
|
# Copyright 2017 Jarsa Sistemas
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||
|
from flectra.addons.crm.wizard.base_partner_merge import MergePartnerLine, \
|
||
|
MergePartnerAutomatic
|
||
|
|
||
|
|
||
|
class NoCRMMergePartnerLine(MergePartnerLine): # noqa
|
||
|
_module = 'base_partner_merge'
|
||
|
|
||
|
|
||
|
class NoCRMMergePartnerAutomatic(MergePartnerAutomatic): # noqa
|
||
|
_module = 'base_partner_merge'
|