Files
stock-logistics-warehouse/stock_warehouse_calendar/models/stock_warehouse.py
2021-02-12 13:09:11 +01:00

14 lines
357 B
Python

# Copyright 2018 Eficent Business and IT Consulting Services, S.L.
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
from odoo import fields, models
class StockWarehouse(models.Model):
_inherit = 'stock.warehouse'
calendar_id = fields.Many2one(
comodel_name='resource.calendar',
string='Working Hours',
)