[IMP] typo

bzr revid: fp@tinyerp.com-20100611075620-y5bvsp2uowetb3r8
This commit is contained in:
Fabien Pinckaers 2010-06-11 09:56:20 +02:00
parent 85cebae10a
commit f378406de1
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ class res_partner_address(osv.osv):
_description ='Partner Addresses'
_name = 'res.partner.address'
_columns = {
'partner_id': fields.many2one('res.partner', 'Company Name', ondelete='set null', select=True, help="Keep empty for a private address, not related to partner."),
'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),
'title': fields.selection(_contact_title_get, 'Title', size=32),