[FIX]:increase the size of function field 64-->128 for long function names

lp bug: https://launchpad.net/bugs/885582 fixed

bzr revid: nch@tinyerp.com-20111114113535-heb33fyrsct2g1dv
This commit is contained in:
Naresh (OpenERP) 2011-11-14 17:05:35 +05:30
parent c90146707f
commit 372f610cc5
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ class res_partner_address(osv.osv):
_columns = {
'partner_id': fields.many2one('res.partner', 'Partner Name', ondelete='set null', select=True, help="Keep empty for a private address, not related to partner."),
'type': fields.selection( [ ('default','Default'),('invoice','Invoice'), ('delivery','Delivery'), ('contact','Contact'), ('other','Other') ],'Address Type', help="Used to select automatically the right address according to the context in sales and purchases documents."),
'function': fields.char('Function', size=64),
'function': fields.char('Function', size=128),
'title': fields.many2one('res.partner.title','Title'),
'name': fields.char('Contact Name', size=64, select=1),
'street': fields.char('Street', size=128),