forked from Rudoo/L10n_ru
10 lines
217 B
Python
10 lines
217 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import fields, models, _
|
|
|
|
|
|
class PurchaseOrder(models.Model):
|
|
_inherit = 'purchase.order'
|
|
|
|
consent_id = fields.Many2one('base.consent', string=_('Доверенность'))
|