mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
10 lines
283 B
Python
10 lines
283 B
Python
# Copyright 2021 Camptocamp SA
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html)
|
|
from odoo import fields, models
|
|
|
|
|
|
class MeasuringDevice(models.Model):
|
|
_inherit = "measuring.device"
|
|
|
|
device_type = fields.Selection(selection_add=[("zippcube", "Zippcube")])
|