Files
manufacture/mrp_subcontracting/models/res_partner.py

17 lines
559 B
Python

# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
# Copyright 2019 Odoo
# Copyright 2020 Tecnativa - Alexandre Díaz
# Copyright 2020 Tecnativa - Pedro M. Baeza
from odoo import fields, models
class ResPartner(models.Model):
_inherit = 'res.partner'
property_stock_subcontractor = fields.Many2one(
'stock.location', string="Subcontractor Location",
company_dependent=True,
help="The stock location used as source and destination when sending\
goods to this contact during a subcontracting process.")