[FIX] function field with wrong type int instead of integer

bzr revid: yanina.aular@vauxoo.com-20131115222717-12bplq7rnv3rorbm
This commit is contained in:
Yanina Aular 2013-11-15 17:57:17 -04:30
parent 1fe9b19c83
commit 0dcc62426c
1 changed files with 2 additions and 1 deletions

View File

@ -288,7 +288,8 @@ class project(osv.osv):
help="The kind of document created when an email is received on this project's email alias"),
'privacy_visibility': fields.selection(_visibility_selection, 'Privacy / Visibility', required=True),
'state': fields.selection([('template', 'Template'),('draft','New'),('open','In Progress'), ('cancelled', 'Cancelled'),('pending','Pending'),('close','Closed')], 'Status', required=True,),
'doc_count':fields.function(_get_attached_docs, string="Number of documents attached", type='int')
'doc_count':fields.function(_get_attached_docs, string="Number of documents attached",
type='integer')
}
def _get_type_common(self, cr, uid, context):