Files
suite/sale_planner/models/stock.py
2018-05-09 09:27:45 -07:00

10 lines
281 B
Python

from odoo import api, fields, models
class Warehouse(models.Model):
_inherit = 'stock.warehouse'
shipping_calendar_id = fields.Many2one(
'resource.calendar', 'Shipping Calendar',
help="This calendar represents shipping availability from the warehouse.")