mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
9 lines
246 B
Python
9 lines
246 B
Python
from odoo import fields, models
|
|
|
|
|
|
class DeliveryRoute(models.Model):
|
|
_inherit = 'stock.warehouse.delivery.route'
|
|
|
|
latitude = fields.Float(string='Latitude', digits=(12, 6))
|
|
longitude = fields.Float(string='Longitude', digits=(12, 6))
|