[ADD] web_widget_remote_measure: New module

TT38745
This commit is contained in:
David
2023-02-02 14:08:17 +01:00
parent 436d2cab3c
commit 47c69999fe
22 changed files with 1267 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
# Copyright 2023 Tecnativa - David Vidal
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class ResUsers(models.Model):
_inherit = "res.users"
remote_measure_device_id = fields.Many2one(
comodel_name="remote.measure.device",
help="Default remote measure device for this user",
)