Odoo18-Base/addons/pos_hr/models/account_bank_statement.py

9 lines
314 B
Python
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
# 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.")