コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
3892 ビュー

Hello,

I have a table material_code I have fields like m_category, name, code.

I have an another table material_example I have same fields m_category, name, code.

I have to set the all the three fields as many2one which is related to the all three fields of the material_example.

But only one field can be set as many2one and it only takes "name" field from material_example.

How can I get all the three fields and relate them with?

Please help me with an example code

Thank you

アバター
破棄
最善の回答

Hi Uppili Arivukkannu,

You can do this. you can declare more than one many2one field in model. please see bellow code:

Step-1: in material_code model

m_category = fields.Many2one('ModelName', string="Category")

name = fields.Many2one('ModelName', string="Name")

code = fields.Many2one('ModelName', string="Code")


Step-2: in material_example model

m_category = fields.One2many('ModelName', 'm_category')

name = fields.One2many('ModelName', 'name')

code = fields.One2many('ModelName', 'code')

Thank you..

アバター
破棄
関連投稿 返信 ビュー 活動
1
12月 19
9962
1
1月 22
3462
0
3月 16
3370
0
12月 15
4404
0
12月 15
5347