odoo-addon-web-widget-remote-measure 15.0.1.1.0.2__py3-none-any.whl → 15.0.1.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/web_widget_remote_measure/README.rst +1 -1
- odoo/addons/web_widget_remote_measure/__manifest__.py +1 -1
- odoo/addons/web_widget_remote_measure/models/res_users.py +13 -1
- odoo/addons/web_widget_remote_measure/static/description/index.html +1 -1
- {odoo_addon_web_widget_remote_measure-15.0.1.1.0.2.dist-info → odoo_addon_web_widget_remote_measure-15.0.1.1.1.dist-info}/METADATA +2 -2
- {odoo_addon_web_widget_remote_measure-15.0.1.1.0.2.dist-info → odoo_addon_web_widget_remote_measure-15.0.1.1.1.dist-info}/RECORD +8 -8
- {odoo_addon_web_widget_remote_measure-15.0.1.1.0.2.dist-info → odoo_addon_web_widget_remote_measure-15.0.1.1.1.dist-info}/WHEEL +0 -0
- {odoo_addon_web_widget_remote_measure-15.0.1.1.0.2.dist-info → odoo_addon_web_widget_remote_measure-15.0.1.1.1.dist-info}/top_level.txt +0 -0
@@ -7,7 +7,7 @@ Remote Measure Devices Input
|
|
7
7
|
!! This file is generated by oca-gen-addon-readme !!
|
8
8
|
!! changes will be overwritten. !!
|
9
9
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
10
|
-
!! source digest: sha256:
|
10
|
+
!! source digest: sha256:e831c7e7887ecac3cb847609cb165118e4354f041ab07ed6cbd62ed9859a83c9
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
12
12
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -3,7 +3,7 @@
|
|
3
3
|
{
|
4
4
|
"name": "Remote Measure Devices Input",
|
5
5
|
"summary": "Allows to connect to remote devices to record measures",
|
6
|
-
"version": "15.0.1.1.
|
6
|
+
"version": "15.0.1.1.1",
|
7
7
|
"author": "Tecnativa, Odoo Community Association (OCA)",
|
8
8
|
"website": "https://github.com/OCA/stock-weighing",
|
9
9
|
"maintainers": ["chienandalu"],
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# Copyright 2023 Tecnativa - David Vidal
|
2
|
-
#
|
2
|
+
# Copyright 2025 Tecnativa - Sergio Teruel
|
3
|
+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
3
4
|
from odoo import fields, models
|
4
5
|
|
5
6
|
|
@@ -15,3 +16,14 @@ class ResUsers(models.Model):
|
|
15
16
|
return {
|
16
17
|
"type": "ir.actions.act_window_close",
|
17
18
|
}
|
19
|
+
|
20
|
+
# Allow users without setting security group read and write the remote device
|
21
|
+
@property
|
22
|
+
def SELF_READABLE_FIELDS(self):
|
23
|
+
return super().SELF_READABLE_FIELDS + ["remote_measure_device_id"]
|
24
|
+
|
25
|
+
@property
|
26
|
+
def SELF_WRITEABLE_FIELDS(self):
|
27
|
+
return super().SELF_WRITEABLE_FIELDS + [
|
28
|
+
"remote_measure_device_id",
|
29
|
+
]
|
@@ -367,7 +367,7 @@ ul.auto-toc {
|
|
367
367
|
!! This file is generated by oca-gen-addon-readme !!
|
368
368
|
!! changes will be overwritten. !!
|
369
369
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
370
|
-
!! source digest: sha256:
|
370
|
+
!! source digest: sha256:e831c7e7887ecac3cb847609cb165118e4354f041ab07ed6cbd62ed9859a83c9
|
371
371
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
372
372
|
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/stock-weighing/tree/15.0/web_widget_remote_measure"><img alt="OCA/stock-weighing" src="https://img.shields.io/badge/github-OCA%2Fstock--weighing-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/stock-weighing-15-0/stock-weighing-15-0-web_widget_remote_measure"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/stock-weighing&target_branch=15.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
373
373
|
<p>This module allows to input data from remote devices in your network. Currently, only
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: odoo-addon-web_widget_remote_measure
|
3
|
-
Version: 15.0.1.1.
|
3
|
+
Version: 15.0.1.1.1
|
4
4
|
Summary: Allows to connect to remote devices to record measures
|
5
5
|
Home-page: https://github.com/OCA/stock-weighing
|
6
6
|
Author: Tecnativa, Odoo Community Association (OCA)
|
@@ -22,7 +22,7 @@ Remote Measure Devices Input
|
|
22
22
|
!! This file is generated by oca-gen-addon-readme !!
|
23
23
|
!! changes will be overwritten. !!
|
24
24
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
25
|
-
!! source digest: sha256:
|
25
|
+
!! source digest: sha256:e831c7e7887ecac3cb847609cb165118e4354f041ab07ed6cbd62ed9859a83c9
|
26
26
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
27
27
|
|
28
28
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -1,13 +1,13 @@
|
|
1
|
-
odoo/addons/web_widget_remote_measure/README.rst,sha256=
|
1
|
+
odoo/addons/web_widget_remote_measure/README.rst,sha256=6i-hj9JUm2dx0S4AWJZA6LFPTKUQkJNnlGppEdhBAEQ,4962
|
2
2
|
odoo/addons/web_widget_remote_measure/__init__.py,sha256=jQ-fltIs1ohXt7udDkkJwzh7ckauQW2rbmv1Wtg3SjQ,47
|
3
|
-
odoo/addons/web_widget_remote_measure/__manifest__.py,sha256=
|
3
|
+
odoo/addons/web_widget_remote_measure/__manifest__.py,sha256=J2ZlMeDxNVxVlvu8veb2vvr-CcOqFUL6iFr2pjzNfIw,935
|
4
4
|
odoo/addons/web_widget_remote_measure/controllers/__init__.py,sha256=4KFqEP2QHFbPN66eQJMdGsmNz2v7ywWv_FR1pW_kkLk,19
|
5
5
|
odoo/addons/web_widget_remote_measure/controllers/main.py,sha256=Y7-KWYAzJUsFOUXp8pYb6gubSRPjYaMMTK-EwPvf-FM,1596
|
6
6
|
odoo/addons/web_widget_remote_measure/i18n/es.po,sha256=kRExBvXqKLl-OsldqqfXEvO3DsxlhVJsdUEzhTPXwm8,11634
|
7
7
|
odoo/addons/web_widget_remote_measure/i18n/web_widget_remote_measure.pot,sha256=KxGwpx8coIWOz2BxEXZZ3C4wVg2BJJdUDQJVkFbLEAs,10054
|
8
8
|
odoo/addons/web_widget_remote_measure/models/__init__.py,sha256=J_ouBD3wdPWoRA5-ZLkwygexPIblJEq2FymqQkO9ez8,60
|
9
9
|
odoo/addons/web_widget_remote_measure/models/remote_measure_device.py,sha256=btbPQiNQ8Su7pKEOVzMt8hmMWaZDvRJepvijSv9FH3c,2695
|
10
|
-
odoo/addons/web_widget_remote_measure/models/res_users.py,sha256=
|
10
|
+
odoo/addons/web_widget_remote_measure/models/res_users.py,sha256=zMry9ZVmUUq-JCve2y7ZT2rmGbU82TRzoeOfx-O9Edk,888
|
11
11
|
odoo/addons/web_widget_remote_measure/readme/CONFIGURE.rst,sha256=4ZndrZNCFSSTNyNiRbvVUGXBRyUxEHfld7hlmq66iXc,377
|
12
12
|
odoo/addons/web_widget_remote_measure/readme/CONTRIBUTORS.rst,sha256=CsagrKWiP3dFqMxkMX1CjG1YBQmJt5Bc4CtU1UoRK9Q,95
|
13
13
|
odoo/addons/web_widget_remote_measure/readme/DESCRIPTION.rst,sha256=0ZoY5qczzhDfXvpyx5OUOBLsQFHA_dRIwu8qSFeUu1c,241
|
@@ -16,7 +16,7 @@ odoo/addons/web_widget_remote_measure/readme/USAGE.rst,sha256=z2p53R2-gi5mY3lTvX
|
|
16
16
|
odoo/addons/web_widget_remote_measure/security/ir.model.access.csv,sha256=3bwXFcGN-56-3-aR-RYGH8G6sVnuYkirAzpY4dDu8IA,426
|
17
17
|
odoo/addons/web_widget_remote_measure/security/security.xml,sha256=1lW2jowKe0fu9fRj-dPZt0-2q70c4VQKxBBHSAzE7L0,264
|
18
18
|
odoo/addons/web_widget_remote_measure/static/description/icon.png,sha256=O9NGHv3egMV4Z7wp_y1yxXS9BmUi7AiGAleQTwMkuRo,9652
|
19
|
-
odoo/addons/web_widget_remote_measure/static/description/index.html,sha256=
|
19
|
+
odoo/addons/web_widget_remote_measure/static/description/index.html,sha256=FgS4MiMT9U4hsoDx6Tho6bj8bwsc5qN_oRlwJR2vgqE,15497
|
20
20
|
odoo/addons/web_widget_remote_measure/static/src/js/remote_measure_device_kanban_widget.esm.js,sha256=vw2rHAKmv8F7V3AKVydkN01yNW4_b_uhO0O-GgUWlzI,1119
|
21
21
|
odoo/addons/web_widget_remote_measure/static/src/js/remote_measure_widget.esm.js,sha256=btbxBKiu65prtRhMw6Mqh3jMBnKoY70RAwzltaqqBXw,15431
|
22
22
|
odoo/addons/web_widget_remote_measure/static/src/js/systray_device_selector.esm.js,sha256=GeAoxLPc8u6Kgx7kdb34fWa3il5uyxFnroD5q5hfRi4,1372
|
@@ -25,7 +25,7 @@ odoo/addons/web_widget_remote_measure/static/src/xml/measure_device_status.xml,s
|
|
25
25
|
odoo/addons/web_widget_remote_measure/static/src/xml/systray_device_selector.xml,sha256=LZIlsnhgzCDFnZRtTZc2okAPQC4qoxoe0Khi1oDzU_c,692
|
26
26
|
odoo/addons/web_widget_remote_measure/views/remote_measure_device_views.xml,sha256=pyIEp4WqR9hmfA5fXtsNYb78f5VFpiGVG7fBZxwjkjU,4630
|
27
27
|
odoo/addons/web_widget_remote_measure/views/res_users_views.xml,sha256=QqvjaLWw1eEWJc8nShScpi-OcPeg7QV8OoqVnEOgJWY,2315
|
28
|
-
odoo_addon_web_widget_remote_measure-15.0.1.1.
|
29
|
-
odoo_addon_web_widget_remote_measure-15.0.1.1.
|
30
|
-
odoo_addon_web_widget_remote_measure-15.0.1.1.
|
31
|
-
odoo_addon_web_widget_remote_measure-15.0.1.1.
|
28
|
+
odoo_addon_web_widget_remote_measure-15.0.1.1.1.dist-info/METADATA,sha256=otOnTQucBBrl9TUrBA5yBmL-6xlWyj7Lz5xfNwBNCOE,5516
|
29
|
+
odoo_addon_web_widget_remote_measure-15.0.1.1.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
30
|
+
odoo_addon_web_widget_remote_measure-15.0.1.1.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
31
|
+
odoo_addon_web_widget_remote_measure-15.0.1.1.1.dist-info/RECORD,,
|
File without changes
|