تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
6283 أدوات العرض

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

المنشورات ذات الصلة الردود أدوات العرض النشاط
1
ديسمبر 23
41528
1
فبراير 24
2241
1
يوليو 16
6567
1
مارس 15
5800
2
مايو 25
10276