clinic/netforce_clinic/models/matching_hdcase_line.py

13 lines
356 B
Python
Raw Permalink Normal View History

2015-04-09 10:47:40 +00:00
from netforce.model import Model, fields, get_model
class MatchingHDCaseLine(Model):
_name="clinic.matching.hdcase.line"
_transient=True
_fields={
"matching_hdcase_id": fields.Many2One("clinic.matching.hdcase","Matching HD Case"),
'type_id': fields.Many2One("clinic.patient.type","Type"),
}
MatchingHDCaseLine.register()