[IMP] subscription: changes string for field 'notes' in model 'subscription.subscription'

bzr revid: cha@tinyerp.com-20130321052849-bpxq2bye0flzj28p
This commit is contained in:
Ajay Chauhan (OpenERP) 2013-03-21 10:58:49 +05:30
parent d157bc386d
commit 7e188593d8
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ class subscription_subscription(osv.osv):
'name': fields.char('Name', size=60, required=True),
'active': fields.boolean('Active', help="If the active field is set to False, it will allow you to hide the subscription without removing it."),
'partner_id': fields.many2one('res.partner', 'Partner'),
'notes': fields.text('Notes'),
'notes': fields.text('Internal Notes'),
'user_id': fields.many2one('res.users', 'User', required=True),
'interval_number': fields.integer('Interval Qty'),
'interval_type': fields.selection([('days', 'Days'), ('weeks', 'Weeks'), ('months', 'Months')], 'Interval Unit'),