mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2026-01-07 08:32:57 +02:00
9 lines
188 B
Python
9 lines
188 B
Python
# -*- coding: utf-8 -*-
|
|
from odoo import models, api, fields
|
|
|
|
|
|
class AccountMoveLine(models.Model):
|
|
_inherit = "account.move.line"
|
|
|
|
loan_id = fields.Many2one('hr.loan', 'Loan Id')
|