clinic/netforce_clinic/models/sequence.py

11 lines
229 B
Python
Raw Normal View History

2015-03-17 09:29:34 +00:00
from netforce.model import Model, fields
class Sequence(Model):
_inherit="sequence"
_fields={
'fax': fields.Char("Fax"),
'branch_id': fields.Many2One("clinic.branch","Branch"),
}
Sequence.register()