7 lines
205 B
Python
7 lines
205 B
Python
from odoo import models, fields, _
|
|
|
|
|
|
class HmsPayments(models.Model):
|
|
_inherit = 'hms.payments'
|
|
|
|
transaction_id = fields.Many2one(comodel_name="brosse.bank.transactions", string="Bank Transaction") |