我需要在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的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'终端上没有错误堆栈的方式。

如何处理此问题并在domain中使用关系字段的字段,以便我可以使用name_search并修改行为?

提前致谢。

最佳答案

继承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>


希望对您有帮助。

08-25 03:05