mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-14 01:41:26 -06:00
11 lines
316 B
Python
11 lines
316 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2015-18 Therp BV <https://therp.nl>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
from openerp import models, fields
|
|
|
|
|
|
class DocumentPage(models.Model):
|
|
_inherit = 'document.page'
|
|
|
|
partner_id = fields.Many2one('res.partner', 'Partner', index=True)
|