我需要在我的one2many字段product_id
中使用many2one product_lines
字段,并且应根据page_no
过滤产品。
Model1包含product_lines(o2m:model2-model1_id)和page_no
class model1(models.Model):
_name = "model1"
....
page_no = fields.Integer('Page No.')
...
product_lines = fields.One2many('model2', 'model1_id', 'Product lines')
model2包含product_id和model1_id(m2o:model1)
class model2(models.Model):
_name = "model2"
model1_id = fields.Many2one('model1')
product_id = fields.Many2one('product.product')
我的xml for model1的表单视图中的是
<field name="product_lines" >
<tree editable="bottom" name="petan_nos">
<field name="model1_id" invisible="1" />
<field name="product_id" domain="[('page_no', '=', model1_id.page_no)]" />
</tree>
</field>
这就是我在终端上获得错误前端错误Uncaught Error: AttributeError: object has no attribute 'page_no'
没有错误堆栈的方法。
如何处理这个并使用域中的关系字段字段,以便我可以使用name_search并修改行为?
提前致谢。
答案 0 :(得分:1)
继承product.product
并添加字段page_no
。
_inherit='product.product'
page_no = fields.Char('Page_no')
并在page_no
model2
class model2(models.Model):
_name = "model2"
model1_id = fields.Many2one('model1')
product_id = fields.Many2one('product.product')
page_no = fields.Char('Page_no')
在xml中
<field name="product_lines" >
<tree editable="bottom" name="petan_nos">
<field name="page_no" />
<field name="model1_id" invisible="1" />
<field name="product_id" domain="[('page_no', '=', page_no)]" />
</tree>
</field>
希望它会对你有所帮助。