Odoo Help
Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps:
CRM
|
e-Commerce
|
Accounting
|
Inventory
|
PoS
|
Project management
|
MRP
|
etc.
No Handler found error while validating the email field ?
Hi, I have a scenario where I need to validate a email address whether it is valid or not. For validating I have used the following code.
hr_view.xml:
<field name="work_email" widget="email" on_change="onchange_work_email(work_email)"/>
hr.py
def onchange_work_email(self, cr, uid, ids, work_email):
if re.match("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$", work_email) != None:
return True
else:
raise osv.except_osv(_('Invalid Email'), _('Please enter a valid email address'))
But I got No handler found error. I made changes in only above two files, Did i need to import regular expressions ? what is the error ? Any appreciate suggestions
About This Community
This platform is for beginners and experts willing to share their Odoo knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers.
RegisterOdoo Training Center
Access to our E-learning platform and experience all Odoo Apps through learning videos, exercises and Quizz.
Test it nowQuestion tools
Stats
Asked: 2/15/14, 3:03 AM |
Seen: 1042 times |
Last updated: 3/16/15, 8:10 AM |
Look in you openerp-server.log. (the error is probably described in it)