mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
15 lines
336 B
Python
15 lines
336 B
Python
from odoo import fields, models
|
|
|
|
|
|
class PmsFolio(models.Model):
|
|
_inherit = "pms.folio"
|
|
|
|
pms_api_log_ids = fields.Many2many(
|
|
string="API Logs",
|
|
help="API Logs",
|
|
comodel_name="pms.api.log",
|
|
relation="pms_folio_pms_api_log_rel",
|
|
column1="folio_ids",
|
|
column2="pms_api_log_ids",
|
|
)
|