This question has been flagged
1 Reply
13386 Views

I am getting this error while instaling the module

DataError: value too long for type character varying(64)

And:

new openerp.sql_db: bad query: INSERT INTO ir_model (id,model, name, info,state) VALUES (305, 'employee.experience', 'Employee Past                                                                                                                                                                                                         Experience', NULL, 'base')

In Xml I have :

inherit='hr.employee'
'emp_family_id':fields.one2many('employee.family', 'family_employee_rel', 'Employee Family Details'),

And:

class employee_experience(osv.osv):
    _name = 'employee.experience'    
    _description = 'Employee Past                                                                                                                                                                                                         Experience'
    _columns = {
              'employer_name':fields.char('Employer Name', size=100),
              'designation':fields.char('Designation', size=50),
              'ctc':fields.char('CTC', size=50),
              'expr_start':fields.date('Start Date'),
              'expr_end':fields.date('End Date'),
              'experience':fields.char('Experience', size=20),
              'emp_expr_rel':fields.many2one('hr.employee', 'Experience', ondelete="cascade"),

              }
Avatar
Discard
Best Answer

You have : _description = 'Employee Past Experience'

remove blank spaces in _description to just put : _description = 'Employee Past Experience'

Avatar
Discard
Author

Yeah, you are right, I figured it out myself after checking the code again n again... the spaces were more that I was not able to figure it out using eclipse .