15 lines
380 B
Python
15 lines
380 B
Python
from netforce.model import Model, fields
|
|
|
|
class FileSheet(Model):
|
|
_name="clinic.file.sheet"
|
|
_string="File Sheet"
|
|
|
|
_fields={
|
|
'name': fields.Char("Name"),
|
|
'index': fields.Integer("Index"),
|
|
"select": fields.Selection([("yes","Yes"),("no","No")],"Select"),
|
|
'je_id': fields.Many2One("clinic.je","Journal Entry"),
|
|
}
|
|
|
|
FileSheet.register()
|