Skip to Content
Menu
This question has been flagged
1 Reply
1060 Views

hello

i add one object button . i add two field first is partner_id(many2one) and second is sale_ids(many2many) .

now i want this flow 


first i select re.partner and i click on my button so in sale_ids field automatic give me the all sale order in this field 


thank you in advamce


Avatar
Discard
Best Answer
you can call following method to update sale_ids(m2m) from the button:

def update_m2m(self):
for rec in self:
rec.sale_ids = [(6,0,self.search([('id','!=',rec.id),('partner_id', '=', rec.partner_id.id)]).ids)]

Thanks & Regards,



CandidRoot Solutions Pvt. Ltd.

Mobile: (+91) 8849036209
Email: info@candidroot.com
Skype: live:candidroot
Web: https://www.candidroot.com
Address: 1229-1230, Iconic Shyamal, Near Shyamal Cross Road, Ahmedabad, Gujarat 380015
    

Avatar
Discard
Related Posts Replies Views Activity
0
Sep 22
961
0
Feb 23
157
3
Aug 22
7506
1
Jul 22
3571
0
Jul 22
1366