11 lines
183 B
Python
11 lines
183 B
Python
|
from netforce.model import Model,fields
|
||
|
|
||
|
class Document(Model):
|
||
|
_inherit="document"
|
||
|
|
||
|
_fields={
|
||
|
'name': fields.Char("Name",search=True),
|
||
|
}
|
||
|
|
||
|
Document.register()
|