[MERGE] increase the size of res.partner.address.function field from 64 to 128.

bzr revid: vmt@openerp.com-20120104101444-4003iwhl2d3aducm
This commit is contained in:
Vo Minh Thu 2012-01-04 11:14:44 +01:00
commit f63dca7122
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,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),