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

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. 


Avatar
Discard
Best Answer

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 



Avatar
Discard
Author

Thanks Ahmed. I will override the create and write methods

Related Posts Replies Views Activity
1
Dec 23
39296
1
Feb 24
932
1
Jul 16
5355
1
Mar 15
4717
3
Apr 23
8687