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

How to pass field data one model to another model.

class one(model.Model):

  _name = one.one

    x = fields.Integer()

     y = fields.Integer()



class two(model.Model):

  _name = two.two


 p = fields.Integer()

 k = fields.Integer()

here i need x field value



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

Hello Arjun,


If you want to get data from model one.one's field in model two.two's field, then just take many2one of one.one model in two.two and take related filed of it, let me explain by example:



class one(models.Model):


_name = one.one


x = fields.Integer()

y = fields.Integer()


class two(models.Model):


_name = two.two


one_id = fields.Many2one('one.one', string='One')

x = fields.Integer(related='one_id.x', string="X")

y = fields.Integer()

Regards,




Email:      odoo@aktivsoftware.com  

Skype: kalpeshmaheshwari

   

อวตาร
ละทิ้ง
ผู้เขียน

x field is computed field that data is stored in database now i want to pass x field data in the second model. but your above method is not working

Related Posts ตอบกลับ มุมมอง กิจกรรม
4
ก.พ. 25
2716
1
ส.ค. 24
2242
2
พ.ย. 24
3386
3
ต.ค. 23
14914
Data for relations table แก้ไขแล้ว
1
เม.ย. 24
2326