Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
6185 Vistas

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
Descartar
Mejor respuesta

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
Descartar
Autor

Thanks Ahmed. I will override the create and write methods

Publicaciones relacionadas Respuestas Vistas Actividad
1
dic 23
41340
1
feb 24
2092
1
jul 16
6450
1
mar 15
5699
2
may 25
10069