[FIX] sale_crm: fix test in the case where the main company has no sale shop

bzr revid: rco@openerp.com-20111222160104-n8xt7qfgfa2c1di5
This commit is contained in:
Raphael Collet 2011-12-22 17:01:04 +01:00
parent f1ef473250
commit 4ed9442dcb
1 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,16 @@
-
Make sure the main company has at least one shop.
-
!python {model: sale.shop}: |
company_id = self.pool.get('res.users')._get_company(cr, uid, context=context)
shop_ids = self.search(cr, uid, [('company_id', '=', company_id)])
if not shop_ids:
# take a shop, and assign it to the user's company
shop_ids = self.search(cr, uid, [])
if shop_ids:
self.write(cr, uid, [shop_ids[0]], {'company_id': company_id})
-
I open the wizard "Make sales".
-
!record {model: crm.make.sale, id: crm_make_sale_0}:
partner_id: base.res_partner_4