Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
14914 Prikazi

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
Opusti
Best Answer

You have : _description = 'Employee Past Experience'

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

Avatar
Opusti
Avtor

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 .

Related Posts Odgovori Prikazi Aktivnost
6
sep. 24
52553
2
jun. 20
20181
2
apr. 18
4823
0
mar. 16
6057
1
feb. 16
6372