[FIX] point_of_sale: wrong object name fixed

bzr revid: qdp-launchpad@openerp.com-20131202093800-b4rdelveh3rildog
This commit is contained in:
Quentin (OpenERP) 2013-12-02 10:38:00 +01:00
parent 20a7040163
commit 2a2ef2fe4b
1 changed files with 1 additions and 1 deletions

View File

@ -703,7 +703,7 @@ class pos_order(osv.osv):
def create_picking(self, cr, uid, ids, context=None):
"""Create a picking for each order and validate it."""
picking_obj = self.pool.get('stock.picking.out')
picking_obj = self.pool.get('stock.picking')
partner_obj = self.pool.get('res.partner')
move_obj = self.pool.get('stock.move')