Minor textual edit on partner

bzr revid: jvo@tinyerp.com-20081118143915-mukgzgf32ym8hkr6
This commit is contained in:
Jay Vora 2008-11-18 20:09:15 +05:30
parent fd94fbacb4
commit c7edb76980
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
############################################################################## ##############################################################################
# #
# OpenERP, Open Source Management Solution # OpenERP, Open Source Management Solution
# Copyright (C) 2004-2008 Tiny SPRL (<http://tiny.be>). All Rights Reserved # Copyright (C) 2004-2008 Tiny SPRL (<http://tiny.be>). All Rights Reserved
# $Id$ # $Id$
# #
@ -142,8 +142,8 @@ class res_partner(osv.osv):
'credit_limit': fields.float(string='Credit Limit'), 'credit_limit': fields.float(string='Credit Limit'),
'ean13': fields.char('EAN13', size=13), 'ean13': fields.char('EAN13', size=13),
'active': fields.boolean('Active'), 'active': fields.boolean('Active'),
'customer': fields.boolean('Customer', help="Check this box if the partner if a customer."), 'customer': fields.boolean('Customer', help="Check this box if the partner is a customer."),
'supplier': fields.boolean('Supplier', help="Check this box if the partner if a supplier. If it's not checked, purchase people will not see it when encoding a purchase order."), 'supplier': fields.boolean('Supplier', help="Check this box if the partner is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order."),
'city':fields.related('address','city',type='char', string='City'), 'city':fields.related('address','city',type='char', string='City'),
'country':fields.related('address','country_id',type='many2one', relation='res.country', string='Country'), 'country':fields.related('address','country_id',type='many2one', relation='res.country', string='Country'),
} }