mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
8 lines
195 B
Python
8 lines
195 B
Python
from odoo import fields, models
|
|
|
|
|
|
class Partner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
delivery_route_ids = fields.Many2many('stock.warehouse.delivery.route', string="Delivery Routes")
|