This question has been flagged
2779 Views

Hi, In the pos module, How can I filter products which have positive quantity? I added a condition to the point-of-sale/static/src/js/models.js file like that (in line 180 which fetches the products):

['qty_available','>',0]

This is the whole line after adding my change:

[['qty_available','>',0],['sale_ok','=',true],['available_in_pos','=',true]],

But it seems that it doesn't work !! I experimented with the other conditions; setting false to 'sale_ok' attribute at the same line and the products have gone as expected !!

Am I wrong with the name of the 'qty_available' attribute? Is the syntax wrong? Thank you

Avatar
Discard