8 lines
206 B
Python
8 lines
206 B
Python
from odoo import models, fields, _
|
|
|
|
|
|
class HmsPayments(models.Model):
|
|
_inherit = 'hms.payments'
|
|
|
|
bank_payment_id = fields.Many2one(comodel_name="brosse.bank.transactions", string="Bank Payment ID")
|