mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
16 lines
387 B
Python
16 lines
387 B
Python
# Copyright 2019 Pablo Quesada
|
|
# Copyright 2019 Dario Lodeiros
|
|
# Copyright (c) 2021 Open Source Integrators
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import fields, models
|
|
|
|
|
|
class PmsService(models.Model):
|
|
_inherit = "pms.service"
|
|
|
|
contract_id = fields.Many2one(
|
|
"contract.contract",
|
|
string="Contract",
|
|
copy=False,
|
|
)
|