11 lines
229 B
Python
11 lines
229 B
Python
|
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()
|