[11.0][ADD] document_page_project

This commit is contained in:
Lois Rilo
2019-02-28 12:59:30 +01:00
committed by Bhavesh Heliconia
parent a014c5a848
commit 7742c09195
13 changed files with 707 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# Copyright 2019 Eficent Business and IT Consulting Services S.L.
# (http://www.eficent.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',
)