[IMP] crm_partner_assign: Improved yml to check smtp configurations are given or not.

bzr revid: uco@tinyerp.com-20110208104714-udvmuyw3wmkl0e89
This commit is contained in:
Ujjvala Collins (OpenERP) 2011-02-08 16:17:14 +05:30
parent 3a35938bab
commit fd81f1badf
1 changed files with 4 additions and 4 deletions

View File

@ -60,6 +60,7 @@
Now I click on Forward button.
-
!python {model: crm.lead.forward.to.partner}: |
import tools
vals = {
'name': 'email',
'email_to': 'info@axelor.com',
@ -67,7 +68,6 @@
'reply_to': 'sales_openerp@openerp.com'
}
ids = self.create(cr, uid, vals, context={'active_id': ref('crm_lead_questionnaireonopenerp0'), 'active_model': 'crm.lead'})
try:
self.action_forward(cr, uid, [ids], context={'active_id': ref('crm_lead_questionnaireonopenerp0'), 'active_model': 'crm.lead'})
except Exception, e:
pass
assert tools.config.get('smtp_user', False), 'SMTP not configured !'
self.action_forward(cr, uid, [ids], context={'active_id': ref('crm_lead_questionnaireonopenerp0'), 'active_model': 'crm.lead'})