11 lines
319 B
Python
11 lines
319 B
Python
from netforce.model import Model, fields
|
|
|
|
class AccountInvoice(Model):
|
|
_inherit="account.invoice"
|
|
_fields={
|
|
'clinic_expense_id': fields.Many2One("clinic.hd.case.expense","Expense"),
|
|
'department_id': fields.Many2One("clinic.department","Department",search=True),
|
|
}
|
|
|
|
AccountInvoice.register()
|