[FIX] base : Now It's Possible to save languages that have code having size>5

bzr revid: ach@tinyerp.com-20110419090343-7h35qwblnfeotsg2
This commit is contained in:
Anup (OpenERP) 2011-04-19 14:33:43 +05:30
parent c2a752321b
commit da64dc059f
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class res_partner(osv.osv):
'parent_id': fields.many2one('res.partner','Parent Partner'),
'child_ids': fields.one2many('res.partner', 'parent_id', 'Partner Ref.'),
'ref': fields.char('Reference', size=64, select=1),
'lang': fields.selection(_lang_get, 'Language', size=5, help="If the selected language is loaded in the system, all documents related to this partner will be printed in this language. If not, it will be english."),
'lang': fields.selection(_lang_get, 'Language', help="If the selected language is loaded in the system, all documents related to this partner will be printed in this language. If not, it will be english."),
'user_id': fields.many2one('res.users', 'Salesman', help='The internal user that is in charge of communicating with this partner if any.'),
'vat': fields.char('VAT',size=32 ,help="Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement."),
'bank_ids': fields.one2many('res.partner.bank', 'partner_id', 'Banks'),