[FIX] point_of_sale: Replaced the call to undefined search_read(...) with search(...) and read(...) calls. (Maintenance Case: 605684)

bzr revid: rgo@tinyerp.com-20140326112922-x6ac9j157han28kb
This commit is contained in:
Ravi Gohil (OpenERP) 2014-03-26 16:59:22 +05:30
parent 87f5acb97b
commit c1ce615891
1 changed files with 2 additions and 1 deletions

View File

@ -491,7 +491,8 @@ class pos_order(osv.osv):
def create_from_ui(self, cr, uid, orders, context=None):
# Keep only new orders
submitted_references = [o['data']['name'] for o in orders]
existing_orders = self.search_read(cr, uid, domain=[('pos_reference', 'in', submitted_references)], fields=['pos_reference'], context=context)
existing_order_ids = self.search(cr, uid, [('pos_reference', 'in', submitted_references)], context=context)
existing_orders = self.read(cr, uid, existing_order_ids, ['pos_reference'], context=context)
existing_references = set([o['pos_reference'] for o in existing_orders])
orders_to_save = [o for o in orders if o['data']['name'] not in existing_references]
order_ids = []