11 lines
249 B
Python
11 lines
249 B
Python
# Copyright 2024 Akretion
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import _, api, fields, models
|
|
|
|
|
|
class StockLocation(models.Model):
|
|
_inherit = "stock.location"
|
|
|
|
is_created_by_warehouse = fields.Boolean()
|