mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-24 12:22:03 +02:00
8 lines
314 B
Python
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.")
|