Files
stock-logistics-warehouse/stock_location_lockdown/models/stock_location.py
Florian da Costa 6f673c000b minor fixes
2018-12-05 20:53:53 +01:00

14 lines
422 B
Python

# -*- coding: utf-8 -*-
# Copyright 2018 Akretion
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from openerp import fields, models
class StockLocation(models.Model):
_inherit = 'stock.location'
block_stock_entrance = fields.Boolean(
help="if this box is checked, putting stock in this location won't be "
"allowed. Usually used for virtual location, which has children")