Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
14858 Zobrazení

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
Zrušit
Nejlepší odpověď

You have : _description = 'Employee Past Experience'

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

Avatar
Zrušit
Autor

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 Odpovědi Zobrazení Aktivita
6
zář 24
52467
2
čvn 20
20097
2
dub 18
4743
0
bře 16
6021
1
úno 16
6319