mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
10 lines
281 B
Python
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.")
|