mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
16 lines
391 B
Python
16 lines
391 B
Python
# Copyright 2023 ACSONE SA/NV
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
|
|
_inherit = "res.config.settings"
|
|
|
|
scrap_default_location_id = fields.Many2one(
|
|
comodel_name="stock.location",
|
|
related="company_id.scrap_default_location_id",
|
|
readonly=False,
|
|
)
|