Skip to Content
Menu
This question has been flagged
2874 Views

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?

Avatar
Discard
Related Posts Replies Views Activity
3
Nov 20
5196
2
Feb 24
1287
0
Oct 17
2601
2
Dec 24
11314
1
Jan 23
5340