clinic/netforce_clinic/models/fin_setting.py

12 lines
413 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={
"mg_account_id": fields.Many2One("account.account","Account Payment Medical Government"),
"nhso_account_id": fields.Many2One("account.account","Account Payment NHSO 30B"),
"sc_account_id": fields.Many2One("account.account","Account Payment Social Security"),
}
Settings.register()