[REM] partner: do not track user_id.

bzr revid: tde@openerp.com-20121219102539-lvlbl2vh828602ra
This commit is contained in:
Thibault Delavallée 2012-12-19 11:25:39 +01:00
parent f68d97a9a8
commit 4936f0b683
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ class res_partner(osv.osv, format_address):
"It is important to set a value for this field. You should use the same timezone "
"that is otherwise used to pick and render date and time values: your computer's timezone."),
'tz_offset': fields.function(_get_tz_offset, type='char', size=5, string='Timezone offset', invisible=True),
'user_id': fields.many2one('res.users', 'Salesperson', track_visibility=1, help='The internal user that is in charge of communicating with this contact if any.'),
'user_id': fields.many2one('res.users', 'Salesperson', help='The internal user that is in charge of communicating with this contact if any.'),
'vat': fields.char('TIN', size=32, help="Tax Identification Number. Check the box if this contact is subjected to taxes. Used by the some of the legal statements."),
'bank_ids': fields.one2many('res.partner.bank', 'partner_id', 'Banks'),
'website': fields.char('Website', size=64, help="Website of Partner or Company"),