clinic/netforce_clinic/models/address.py

11 lines
195 B
Python
Raw Normal View History

2014-10-26 01:34:10 +00:00
from netforce.model import Model, fields
class Address(Model):
_inherit="address"
_fields={
"patient_id": fields.Many2One("clinic.patient","Patient"),
}
Address.register()