bzr revid: yanina.aular@vauxoo.com-20140326223329-o0dlgynicv0vq0t1
This commit is contained in:
Yanina Aular 2014-03-26 18:03:29 -04:30
parent 0dcc62426c
commit 204ab9f609
1 changed files with 3 additions and 2 deletions

View File

@ -288,8 +288,9 @@ 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='integer')
'doc_count': fields.function(
_get_attached_docs, string="Number of documents attached", type='integer'
)
}
def _get_type_common(self, cr, uid, context):