mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-12-25 22:01:46 +00:00
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
|
# Copyright 2018 - TODAY Serpent Consulting Services Pvt. Ltd.
|
||
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||
|
|
||
|
from flectra import api, models
|
||
|
|
||
|
|
||
|
class ResPartner(models.Model):
|
||
|
_inherit = 'res.partner'
|
||
|
|
||
|
@api.model
|
||
|
def name_search(self, name, args=None, operator='ilike', limit=100):
|
||
|
if not args:
|
||
|
args = []
|
||
|
if name:
|
||
|
domain = ['|', '|', ('phone', operator, name),
|
||
|
('mobile', operator, name), ('email', operator, name)
|
||
|
]
|
||
|
partners = self.search(domain + args, limit=limit, )
|
||
|
res = partners.name_get()
|
||
|
if limit:
|
||
|
limit_rest = limit - len(partners)
|
||
|
else:
|
||
|
limit_rest = limit
|
||
|
if limit_rest or not limit:
|
||
|
args += [('id', 'not in', partners.ids)]
|
||
|
res += super().name_search(
|
||
|
name, args=args, operator=operator, limit=limit_rest)
|
||
|
return res
|
||
|
return super().name_search(
|
||
|
name, args=args, operator=operator, limit=limit
|
||
|
)
|