Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
2 ตอบกลับ
5071 มุมมอง

Hello, 

On sales order, I would like to select a partner from the select box by start typing its phone number.
How can I do that?

Thank you in advance!
Regards

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

_name_search method will allow to customize the search based on other field.
to search based on phone filed you need to override the method of res_partner like

    def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=80):
        if not context: context={}
        res = super(res_partner, self). name_search(cr, user, name, args=args, operator=operator, context=context, limit=limit)
        if name:
            ids = self.search(cr, user, [('phone','=',name)]+ args, limit=limit, context=context)
        if ids:
            res = self.name_get(cr, user, ids, context=context)
        return res
        
it will give you partner when you search related partner phone.

อวตาร
ละทิ้ง

@Atul, it is more performant if you just add the args before calling the super. Then, it will only search once. Also, I think you shouldn't return the return of name_get.

คำตอบที่ดีที่สุด

You need to enhance the name_search method of res.partner to also search the phone number field.  You may want to enhance the name_get method as well to display the phone number field.

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
4
พ.ย. 20
6329
Get values from python method - Odoo 8 แก้ไขแล้ว
1
มี.ค. 15
5025
1
มิ.ย. 23
2307
Autocomplete input on frontend แก้ไขแล้ว
1
ต.ค. 22
4858
2
ธ.ค. 20
6278