mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
17 lines
559 B
Python
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.")
|