From 3f2bb3df379f44160e51c6805f110bc40e1a99b1 Mon Sep 17 00:00:00 2001 From: Nam Dao <daonamutc@gmail.com> Date: Mon, 11 Jul 2022 07:01:04 +0000 Subject: [PATCH] [FIX] hr_expense: User with account permission but no employee permission can't create payment - A user has accounting permission but no employee permission, when that user creates a payment in spending it gives an error that does not have access to the bank_account_id field - This commit allows the user to read the bank_account_id field when creating a payment closes odoo/odoo#96607 X-original-commit: 8045780cbf2dc36d533dbfd3315bab31a229351d Signed-off-by: Kevin Baptiste <kba@odoo.com> --- addons/hr_expense/wizard/account_payment_register.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/hr_expense/wizard/account_payment_register.py b/addons/hr_expense/wizard/account_payment_register.py index 1ffe79af1874..096efe3d85b1 100644 --- a/addons/hr_expense/wizard/account_payment_register.py +++ b/addons/hr_expense/wizard/account_payment_register.py @@ -16,7 +16,7 @@ class AccountPaymentRegister(models.TransientModel): res = super()._get_line_batch_key(line) expense_sheet = self.env['hr.expense.sheet'].search([('payment_mode', '=', 'own_account'), ('account_move_id', 'in', line.move_id.ids)]) if expense_sheet and not line.move_id.partner_bank_id: - res['partner_bank_id'] = expense_sheet.employee_id.bank_account_id.id or line.partner_id.bank_ids and line.partner_id.bank_ids.ids[0] + res['partner_bank_id'] = expense_sheet.employee_id.sudo().bank_account_id.id or line.partner_id.bank_ids and line.partner_id.bank_ids.ids[0] return res def _init_payments(self, to_process, edit_mode=False): -- GitLab