mirror of
https://github.com/bringout/oca-financial.git
synced 2026-04-25 16:22:07 +02:00
13 lines
295 B
Python
13 lines
295 B
Python
# Copyright 2024 ACSONE SA/NV
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class HrDepartment(models.Model):
|
|
|
|
_inherit = "hr.department"
|
|
|
|
account_analytic_id = fields.Many2one(
|
|
comodel_name="account.analytic.account",
|
|
)
|