Skip to Content
Menú
This question has been flagged
2 Respostes
11544 Vistes

hi,

I am creating a call log module , and i need to automatically get the partner information by the given number ie. the system have to automatically search and fetch the partner and assign it to a field .

Somebody please help me with the python code , my code is :


customer_number = fields.Char(string='Customer Number', track_visiility='onchange', onchange='get_partner()', store=True)
customer_id = fields.Many2one('res.partner', string='Customer', track_visibility='onchange',index=True,
help="Linked partner (optional). Usually created when converting the lead.", store=True)

#--------------------------------------------------
# Api s
#--------------------------------------------------

@api.onchange('customer_number')

def get_partner(self):
if self.customer_number:
partner = self.env['res.partner'].search_read([('self.customer_number', 'ilike', 'self.phone')])
self.customer_id = partner
return self.customer_id
Avatar
Descartar
Best Answer

Hello,

You need to remove quotes from self.phone and should use search method to find the Parther.

Ex:

self.customer_id = self.env['res.partner'].search(['|', ('phone', 'ilike', self.customer_number), ('mobile', 'ilike', self.customer_number)], limit=1).id


Avatar
Descartar

Also, the 'self.customer_number' in the search has to be changed to 'phone' or 'mobile'

Thanks for drawing the attention. I corrected the code now.

Best Answer

Hi,

Update the onchange function like this,

@api.onchange('customer_number')
def get_partner(self):
if self.customer_number:
partner = self.env['res.partner'].search([('phone', 'ilike', self.customer_number)], limit=1)
if partner:
self.customer_id = partner.id


Thanks

Avatar
Descartar
Related Posts Respostes Vistes Activitat
7
de jul. 19
41657
0
d’abr. 19
3195
0
d’oct. 19
4224
0
d’ag. 18
6889
1
de des. 17
3498