mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-14 09:51:27 -06:00
11 lines
314 B
Python
11 lines
314 B
Python
# Copyright 2019 ForgeFlow S.L. (https://www.forgeflow.com)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class DocumentPage(models.Model):
|
|
_inherit = "document.page"
|
|
|
|
project_id = fields.Many2one(string="Project", comodel_name="project.project")
|