diff --git a/odex25_accounting/exp_budget_check/models/hr_expense.py b/odex25_accounting/exp_budget_check/models/hr_expense.py index 60900a2d1..6ec510bfc 100644 --- a/odex25_accounting/exp_budget_check/models/hr_expense.py +++ b/odex25_accounting/exp_budget_check/models/hr_expense.py @@ -3,11 +3,11 @@ from odoo.exceptions import AccessError, UserError, RedirectWarning, ValidationE from odoo.tools import float_is_zero, float_compare, pycompat -# class BudgetConfirmationCustom(models.Model): -# _inherit = 'budget.confirmation' +class BudgetConfirmationCustom(models.Model): + _inherit = 'budget.confirmation' -# type = fields.Selection(selection_add=[('expense', 'Expense')]) -# expense_id = fields.Many2one('hr.expense') + # type = fields.Selection(selection_add=[('expense', 'Expense')]) + expense_id = fields.Many2one('hr.expense') # def cancel(self): # super(BudgetConfirmationCustom, self).cancel()