Skip to Content
Menu
This question has been flagged
1 Reply
3270 Views

Hello all

I want to sort lines on product  'default code' 
When we click on fill inventory and select location then All product list appear so I want to sort that basis on default code 

Thanks

Avatar
Discard
Best Answer

class product_product(models.Model):

    _inherit = 'product.product'

    _order = 'default_code'

    default_code = fields.Char('Internal Reference', index=True)

Avatar
Discard
Related Posts Replies Views Activity
1
Jul 15
5034
11
Sep 16
26354
3
Oct 25
27965
4
Jun 21
40561
1
Dec 20
3303