oca-ocb-pos/odoo-bringout-oca-ocb-pos_hr/pos_hr/models/account_bank_statement.py
Ernad Husremovic 3ca647e428 19.0 vanilla
2026-03-09 09:29:53 +01:00

8 lines
314 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class AccountBankStatementLine(models.Model):
_inherit = 'account.bank.statement.line'
employee_id = fields.Many2one('hr.employee', string="Employee", help="The employee who made the cash move.")