Initial commit of sale_planner for 11.0

This commit is contained in:
Jared Kipe
2018-05-09 09:27:45 -07:00
parent e5ea09d5b6
commit e01c8ac937
14 changed files with 1018 additions and 0 deletions

View 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.")