clinic/netforce_clinic/models/fin_setting.py

13 lines
458 B
Python
Raw Normal View History

2014-10-22 03:45:23 +00:00
from netforce.model import Model, fields
class Settings(Model):
_inherit="settings"
_fields={
2014-12-21 10:11:22 +00:00
"cash_account_id": fields.Many2One("account.account","Cash Account"),
"income_account_id": fields.Many2One("account.account","Income Account"),
2014-10-26 10:11:19 +00:00
"ap_nurse_id": fields.Many2One("account.account","Account Payment Nurse"),
2014-10-27 14:17:22 +00:00
"ap_doctor_id": fields.Many2One("account.account","Account Payment Doctor"),
2014-10-22 03:45:23 +00:00
}
Settings.register()