13 lines
291 B
Python
13 lines
291 B
Python
|
from netforce.model import Model, fields
|
||
|
|
||
|
class PatientCateg(Model):
|
||
|
_name="clinic.patient.categ"
|
||
|
_string="Patient Category"
|
||
|
|
||
|
_fields={
|
||
|
"name": fields.Char("Name",required=True,search=True),
|
||
|
"code": fields.Char("Code",search=True),
|
||
|
}
|
||
|
|
||
|
PatientCateg.register()
|