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

I need to create a One2Many field in Odoo, but using the same model where the field is created. For example.

class WindowForm(models.Model):

        _name= 'window.form'

        doors = fields.One2Many('window.form')

As you can see the One2Many field has the same model of the class where it is declared.

I know that the above declaration is not correct, but that is exactly my doubt. When you define a One2Many field you have to create Many2One field in the other model. So, how can i declare the One2Many?

Thanks in advanced.

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

Hi,

class WindowForm(models.Model):

    _name = 'window.form' 


    parent_id = fields.Many2one('window.form', string="Parent")

    child_ids = fields.One2many('window.form', 'parent_id', string="Lines")


Bye

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
1
มิ.ย. 18
3840
1
ก.พ. 16
4290
0
ก.พ. 16
4189
1
มี.ค. 23
2217
0
ธ.ค. 22
2858