12 lines
413 B
Python
12 lines
413 B
Python
|
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()
|