[WIP] stock: packaging

bzr revid: qdp-launchpad@openerp.com-20130628080035-ihj8s4rypemrs9r2
This commit is contained in:
Quentin (OpenERP) 2013-06-28 10:00:35 +02:00
parent f8495823ef
commit ad1f00170d
1 changed files with 1 additions and 3 deletions

View File

@ -3910,9 +3910,7 @@ class stock_pack_operation(osv.osv):
context = {}
#if current_package_id is given in the context, we increase the number of items in this package
package_clause = []
if context.get('current_package_id'):
package_clause = [('result_package_id', '=', context.get('current_package_id'))]
package_clause = [('result_package_id', '=', context.get('current_package_id', False))]
existing_operation_ids = self.search(cr, uid, [('picking_id', '=', picking_id), key] + package_clause, context=context)
if existing_operation_ids:
#existing operation found for the given key and picking => increment its quantity