13 lines
396 B
Python
13 lines
396 B
Python
# Copyright 2015-2021 Akretion France (http://www.akretion.com)
|
|
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class PurchaseOrder(models.Model):
|
|
_inherit = 'purchase.order'
|
|
|
|
picking_type_id = fields.Many2one(tracking=True)
|
|
incoterm_id = fields.Many2one(tracking=True)
|