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

This is my code: 

class tickets(osv.Model):    
    _name = 'tickets'   
    _rec_name = 'code'    
    _columns = {        
        'code': fields.char(string='Reference'),
        'title': fields.char(string='Title', required=True),
        'description': fields.text(string='Description', required=True),
        'status': fields.selection(
            [('draft', 'New'),
            ('open', 'In Progress'),
            ('pending', 'Pending'),
            ('validate', 'To Validate'),
            ('done', 'Closed'),
            ('cancel', 'Cancelled')], string='Status', required=True),
        'related_ticket_ids': fields.many2many('tickets', 'related_tickets_rel', 'ticket_id1', 'ticket_id2', string='Related tickets'),
    }

Imagine that we have 3 tickets created: ticket1, ticket2 and ticket3. 
What I want is when I add in ticket1 (in the 'related_ticket_ids' field) the ticket2, in the ticket2's 'related_ticket_ids' field appears ticket1. 


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

Hello,

Try to add new fields that represent the bidirectional fields as:

'bi_related_ticket_ids': fields.many2many('tickets', 'related_tickets_rel', 'ticket_id2', 'ticket_id1', string='Bidirectional Related Tickets')


Table name is same as your original table name: related_tickets_rel

and columns names is inverse ticket_id2 then ticket_id1

then this new field will be filled automatically

EDIT

if you don't want to add new filed, then I think you need to override the create & write methods as well


Hope this will be helpful 



อวตาร
ละทิ้ง
ผู้เขียน

Thanks Ahmed. I will override the create and write methods

Related Posts ตอบกลับ มุมมอง กิจกรรม
1
ธ.ค. 23
41828
1
ก.พ. 24
2401
1
ก.ค. 16
6751
1
มี.ค. 15
6031
2
พ.ค. 25
10497