Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
6131 Представления

Hello, can someone help me with this please.

I have a situation, where, when I create an object, I would like to copy values of a Many2many field (subject_ids) from course object (which has a many2one relation with the batch object) to a Many2many field(subject_ids) in batch object. 

following is the code sample:

class Subject(models.Model):

    course_ids = fields.Many2many('course', string='Course(s)')

    batch_ids = fields.Many2many('batch', string='Batch(s)')


class Course(models.Model):

     subject_ids = fields.Many2many('subject', string='Subject(s)')


class Batch(models.Model):

  course_ids = fields.Many2many('course', string='Course(s)')  

   subject_ids = fields.Many2many('subject', string='Subject(s)')  

Regards,

Narender

Аватар
Отменить
Автор

I tried this in the batch object but throws an error: list index out of range @api.onchange('course_id') def get_default_subject_ids(self): res = [] if len(self.course_id.subject_ids): for subject in self.course_id.subject_ids : res.append(subject.id) self.subject_ids= [0,0,res] return True debugged it and observed that it throws list index out of range @ self.subject_ids= [0,0,res]

Related Posts Ответы Просмотры Активность
2
сент. 19
6035
0
авг. 18
2449
0
апр. 22
2067
0
апр. 21
2663
2
авг. 19
3409