mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
16 lines
325 B
Python
16 lines
325 B
Python
from odoo import fields, models
|
|
|
|
|
|
class PmsFolio(models.Model):
|
|
_inherit = "pms.folio"
|
|
|
|
pms_api_log_id = fields.Many2one(
|
|
string="PMS API Log",
|
|
help="PMS API Log",
|
|
comodel_name="pms.api.log",
|
|
)
|
|
origin_json = fields.Text(
|
|
string="Origin JSON",
|
|
help="Origin JSON",
|
|
)
|