[FIX][sale_stock]Added validation in get_partner_to_invoice, to only check sale.orders when the picking that call this method coming from a sale.order

This commit is contained in:
luistorresm 2015-04-14 17:20:29 -05:00 committed by Nicolas Martinelli
parent fcc2852a27
commit 01e4b76f65
1 changed files with 6 additions and 5 deletions

View File

@ -445,11 +445,12 @@ class stock_picking(osv.osv):
""" Inherit the original function of the 'stock' module """ Inherit the original function of the 'stock' module
We select the partner of the sales order as the partner of the customer invoice We select the partner of the sales order as the partner of the customer invoice
""" """
saleorder_ids = self.pool['sale.order'].search(cr, uid, [('procurement_group_id' ,'=', picking.group_id.id)], context=context) if picking.sale_id:
saleorders = self.pool['sale.order'].browse(cr, uid, saleorder_ids, context=context) saleorder_ids = self.pool['sale.order'].search(cr, uid, [('procurement_group_id' ,'=', picking.group_id.id)], context=context)
if saleorders and saleorders[0] and saleorders[0].order_policy == 'picking': saleorders = self.pool['sale.order'].browse(cr, uid, saleorder_ids, context=context)
saleorder = saleorders[0] if saleorders and saleorders[0] and saleorders[0].order_policy == 'picking':
return saleorder.partner_invoice_id.id saleorder = saleorders[0]
return saleorder.partner_invoice_id.id
return super(stock_picking, self)._get_partner_to_invoice(cr, uid, picking, context=context) return super(stock_picking, self)._get_partner_to_invoice(cr, uid, picking, context=context)
def _get_sale_id(self, cr, uid, ids, name, args, context=None): def _get_sale_id(self, cr, uid, ids, name, args, context=None):