mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-19 06:32:05 +02:00
10 lines
284 B
Python
10 lines
284 B
Python
# Copyright 2019 Odoo Community Association
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class MgmtSystemManual(models.Model):
|
|
_inherit = "mgmtsystem.system"
|
|
|
|
manual_id = fields.Many2one("document.page", string="Manual")
|