clinic/netforce_clinic/models/document.py

11 lines
183 B
Python
Raw Normal View History

2015-08-21 08:15:53 +00:00
from netforce.model import Model,fields
class Document(Model):
_inherit="document"
_fields={
'name': fields.Char("Name",search=True),
}
Document.register()