[WIP] Add function _check_qorder returning True to allow expressions in order of search

bzr revid: jco@openerp.com-20130716161107-iw8it4dt6l1k7xc7
This commit is contained in:
Josse Colpaert 2013-07-16 18:11:07 +02:00
parent 37ab5c83f7
commit 4ae7d5cec6
1 changed files with 7 additions and 0 deletions

View File

@ -169,6 +169,13 @@ class stock_quant(osv.osv):
# Used for negative quants to reconcile after compensated by a new positive one
'propagated_from_id': fields.many2one('stock.quant', 'Linked Quant', help = 'The negative quant this is coming from'),
}
def _check_qorder(self, word):
"""
Needs to pass True to allow "expression order" in search
"""
return True
def quants_reserve(self, cr, uid, quants, move, context=None):
toreserve = []