Initial commit of stock_delivery_route fro 11.0

This commit is contained in:
Jared Kipe
2018-05-09 09:31:24 -07:00
committed by Connor Christian
parent 1054f20119
commit 6110452ef8
13 changed files with 277 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
from odoo import fields, models
class Partner(models.Model):
_inherit = 'res.partner'
delivery_route_ids = fields.Many2many('stock.warehouse.delivery.route', string="Delivery Routes")