[IMP] subscription: change string of field 'note' to solve import issue of 'subscriptions

bzr revid: cha@tinyerp.com-20130313055937-n85y0cr963f5zzlm
This commit is contained in:
Ajay Chauhan (OpenERP) 2013-03-13 11:29:37 +05:30
parent 2c3fab123c
commit 4012a778b9
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class subscription_subscription(osv.osv):
'doc_source': fields.reference('Source Document', required=True, selection=_get_document_types, size=128, help="User can choose the source document on which he wants to create documents"),
'doc_lines': fields.one2many('subscription.subscription.history', 'subscription_id', 'Documents created', readonly=True),
'cron_id': fields.many2one('ir.cron', 'Cron Job', help="Scheduler which runs on subscription", states={'running':[('readonly',True)], 'done':[('readonly',True)]}),
'note': fields.text('Notes', help="Description or Summary of Subscription"),
'note': fields.text('Summary', help="Description or Summary of Subscription"),
}
_defaults = {
'date_init': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'),