11 lines
195 B
Python
11 lines
195 B
Python
|
from netforce.model import Model, fields
|
||
|
|
||
|
class Address(Model):
|
||
|
_inherit="address"
|
||
|
|
||
|
_fields={
|
||
|
"patient_id": fields.Many2One("clinic.patient","Patient"),
|
||
|
}
|
||
|
|
||
|
Address.register()
|