[FIX] set the domain

bzr revid: shp@tinyerp.com-20121031121720-8w2kml7l5mihdjop
This commit is contained in:
pankita shah (Open ERP) 2012-10-31 17:47:20 +05:30
parent 2a03bc48b9
commit ccddcef5da
1 changed files with 4 additions and 2 deletions

View File

@ -50,7 +50,7 @@ class crm_lead(base_stage, format_address, osv.osv):
def _get_default_stage_id(self, cr, uid, context=None):
""" Gives default stage_id """
section_id = self._get_default_section_id(cr, uid, context=context)
return self.stage_find(cr, uid, [], section_id, [('state', '=', 'draft'),'|', ('type', '=', 'lead'),('type', '=', 'both')], context=context)
return self.stage_find(cr, uid, [], section_id, [('state', '=', 'draft')], context=context)
def _resolve_section_id_from_context(self, cr, uid, context=None):
""" Returns ID of section based on the value of 'section_id'
@ -338,7 +338,9 @@ class crm_lead(base_stage, format_address, osv.osv):
cases = self.browse(cr, uid, cases, context=context)
# collect all section_ids
section_ids = []
types = ['lead','both']
types = ['both']
if not cases :
types += ['lead', 'opportunity']
if section_id:
section_ids.append(section_id)
for lead in cases: