跳至内容
菜单
此问题已终结
1 回复
16029 查看

Hi all

the properties field in sale.order.line model is a many2many field which display all the properties available and wont filter based on anything. So, I've created a field in sale_stock.py

'group_id': fields.many2one('mrp.property.group', 'Property Group', select=True),
and changed the default property_ids field as below,
        'property_ids': fields.many2many('mrp.property', 'sale_order_line_property_rel', 'order_id', 'property_id', 'Properties', readonly=True, states={'draft': [('readonly', False)]}, domain="[('group_id.name', '=', group_id.name)]"),

and changed sale_stock.xml

<field name="group_id" widget="selection"/>
<field name="property_ids" widget="selection" groups="sale.group_mrp_properties" domain="[('group_id.name', '=', 'group_id.name')]"/>

But i'm not getting any filter of the list so can any one please help me out?

形象
丢弃

You can leave out .name and the second group_id should not have '

编写者

Sorry josse I didnt get you which second group_id

domain="[('group_id','=',group_id)]"

编写者

Thanks Josse, I tried this but there is no error but there is no filter of the dropdown list

编写者

an anyone help me on this i'm in great trouble please help me out

最佳答案

Hi,

Below link may help you

link1

link2

link3

形象
丢弃
编写者

thanks for your help Jack but nothing works all throws different errors. Please can you help me out in any way

相关帖文 回复 查看 活动
0
10月 17
2745
2
8月 22
2382
1
4月 20
3298
3
7月 15
7735
3
2月 25
16274