mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
Initial commit of sale_planner for 11.0
This commit is contained in:
9
sale_planner/models/stock.py
Normal file
9
sale_planner/models/stock.py
Normal file
@@ -0,0 +1,9 @@
|
||||
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.")
|
||||
Reference in New Issue
Block a user