2014-12-16 09:53:36 +00:00
|
|
|
from netforce.model import Model, fields
|
|
|
|
|
|
|
|
class Partner(Model):
|
|
|
|
_inherit="partner"
|
|
|
|
|
|
|
|
_fields={
|
2015-02-13 07:46:39 +00:00
|
|
|
'walkin_cust': fields.Boolean("Walkin Customer"),
|
|
|
|
'is_patient': fields.Boolean("Is Patient"),
|
2015-02-18 16:53:29 +00:00
|
|
|
'is_staff': fields.Boolean("Is Staff"),
|
2014-12-16 09:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Partner.register()
|