-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADD] stock_weighing_remote_measure: New module
TT47127
- Loading branch information
1 parent
81ea306
commit 2479dc2
Showing
16 changed files
with
1,137 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
setup/stock_weighing_remote_measure/odoo/addons/stock_weighing_remote_measure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../../stock_weighing_remote_measure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import setuptools | ||
|
||
setuptools.setup( | ||
setup_requires=['setuptools-odoo'], | ||
odoo_addon=True, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
================================= | ||
Weighing assistant remote measure | ||
================================= | ||
|
||
.. | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:a773d1c104d5f8dee9bf4d0fe2de367388f9dfebfd37549cda4ea20139cf7f39 | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png | ||
:target: https://odoo-community.org/page/development-status | ||
:alt: Beta | ||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png | ||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
:alt: License: AGPL-3 | ||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--weighing-lightgray.png?logo=github | ||
:target: https://github.com/OCA/stock-weighing/tree/15.0/stock_weighing_remote_measure | ||
:alt: OCA/stock-weighing | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/stock-weighing-15-0/stock-weighing-15-0-stock_weighing_remote_measure | ||
:alt: Translate me on Weblate | ||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png | ||
:target: https://runboat.odoo-community.org/builds?repo=OCA/stock-weighing&target_branch=15.0 | ||
:alt: Try me on Runboat | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
Meausure the weight remotely from the weighing assistant. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-weighing/issues>`_. | ||
In case of trouble, please check there if your issue has already been reported. | ||
If you spotted it first, help us to smash it by providing a detailed and welcomed | ||
`feedback <https://github.com/OCA/stock-weighing/issues/new?body=module:%20stock_weighing_remote_measure%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
------- | ||
|
||
* Tecnativa | ||
|
||
Maintainers | ||
----------- | ||
|
||
This module is maintained by the OCA. | ||
|
||
.. image:: https://odoo-community.org/logo.png | ||
:alt: Odoo Community Association | ||
:target: https://odoo-community.org | ||
|
||
OCA, or the Odoo Community Association, is a nonprofit organization whose | ||
mission is to support the collaborative development of Odoo features and | ||
promote its widespread use. | ||
|
||
This module is part of the `OCA/stock-weighing <https://github.com/OCA/stock-weighing/tree/15.0/stock_weighing_remote_measure>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from . import wizards |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright 2024 Tecnativa - David Vidal | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). | ||
{ | ||
"name": "Weighing assistant remote measure", | ||
"summary": "Gather the operations weights remotely", | ||
"version": "15.0.1.0.0", | ||
"author": "Tecnativa, Odoo Community Association (OCA)", | ||
"website": "https://github.com/OCA/stock-weighing", | ||
"license": "AGPL-3", | ||
"category": "Inventory", | ||
"depends": [ | ||
"stock_weighing", | ||
"web_widget_remote_measure", | ||
], | ||
"data": ["wizards/weighing_wizard_views.xml"], | ||
"assets": { | ||
"web.assets_backend": [ | ||
"stock_weighing_remote_measure/static/src/**/*.js", | ||
"stock_weighing_remote_measure/static/src/**/*.scss", | ||
], | ||
"web.assets_qweb": ["stock_weighing_remote_measure/static/src/**/*.xml"], | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_weighing_remote_measure | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 15.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2024-07-17 09:39+0000\n" | ||
"PO-Revision-Date: 2024-07-17 11:41+0200\n" | ||
"Last-Translator: \n" | ||
"Language-Team: \n" | ||
"Language: es\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
"X-Generator: Poedit 3.4.4\n" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#: model_terms:ir.ui.view,arch_db:stock_weighing_remote_measure.weighing_wizard_form_view | ||
msgid "" | ||
"<span><i class=\"fa fa-info-circle\" role=\"image\"/> You need to configure " | ||
"a default remote device in your user preferences to be able to start " | ||
"measuring remotely</span>" | ||
msgstr "" | ||
"<span><i class=\"fa fa-info-circle\" role=\"image\"/> Necesita configurar " | ||
"un dispositivo remoto por defecto en sus preferencias de usuario para poder " | ||
"comenzar a pesar de forma remota</span>" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/js/weight_record_form_widget.esm.js:0 | ||
#, python-format | ||
msgid "Choose a device:" | ||
msgstr "Escoja un dispositivo:" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/xml/weight_record_form_widget.xml:0 | ||
#, python-format | ||
msgid "Device info" | ||
msgstr "Información del dispositivo" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/js/weight_record_form_widget.esm.js:0 | ||
#, python-format | ||
msgid "Discard" | ||
msgstr "Descartar" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/xml/weight_record_form_widget.xml:0 | ||
#, python-format | ||
msgid "Manual tare" | ||
msgstr "Tara manual" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#: model:ir.model.fields,field_description:stock_weighing_remote_measure.field_weighing_wizard__measure_device_id | ||
msgid "Measure Device" | ||
msgstr "Dispositivo de medición" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/xml/weight_record_form_widget.xml:0 | ||
#, python-format | ||
msgid "Minus" | ||
msgstr "Menos" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/xml/weight_record_form_widget.xml:0 | ||
#, python-format | ||
msgid "Plus" | ||
msgstr "Más" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/xml/weight_record_form_widget.xml:0 | ||
#, python-format | ||
msgid "REAL:" | ||
msgstr "REAL:" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#: model:ir.model,name:stock_weighing_remote_measure.model_weighing_wizard | ||
msgid "Record weights over detailed operations" | ||
msgstr "Grabar pesos en operaciones detalladas" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/xml/weight_record_form_widget.xml:0 | ||
#, python-format | ||
msgid "TARE:" | ||
msgstr "TARA:" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#: model:ir.model.fields,field_description:stock_weighing_remote_measure.field_weighing_wizard__uom_id | ||
msgid "Uom" | ||
msgstr "UdM" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#: model:ir.model.fields,field_description:stock_weighing_remote_measure.field_weighing_wizard__weight_with_widget | ||
msgid "Weight" | ||
msgstr "Peso" |
103 changes: 103 additions & 0 deletions
103
stock_weighing_remote_measure/i18n/stock_weighing_remote_measure.pot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * stock_weighing_remote_measure | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 15.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2024-07-17 09:38+0000\n" | ||
"PO-Revision-Date: 2024-07-17 09:38+0000\n" | ||
"Last-Translator: \n" | ||
"Language-Team: \n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: \n" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#: model_terms:ir.ui.view,arch_db:stock_weighing_remote_measure.weighing_wizard_form_view | ||
msgid "" | ||
"<span><i class=\"fa fa-info-circle\" role=\"image\"/> You need to configure " | ||
"a default remote device in your user preferences to be able to start " | ||
"measuring remotely</span>" | ||
msgstr "" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/js/weight_record_form_widget.esm.js:0 | ||
#, python-format | ||
msgid "Choose a device:" | ||
msgstr "" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/xml/weight_record_form_widget.xml:0 | ||
#, python-format | ||
msgid "Device info" | ||
msgstr "" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/js/weight_record_form_widget.esm.js:0 | ||
#, python-format | ||
msgid "Discard" | ||
msgstr "" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/xml/weight_record_form_widget.xml:0 | ||
#: code:addons/stock_weighing_remote_measure/static/src/xml/weight_record_form_widget.xml:0 | ||
#, python-format | ||
msgid "Manual tare" | ||
msgstr "" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#: model:ir.model.fields,field_description:stock_weighing_remote_measure.field_weighing_wizard__measure_device_id | ||
msgid "Measure Device" | ||
msgstr "" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/xml/weight_record_form_widget.xml:0 | ||
#: code:addons/stock_weighing_remote_measure/static/src/xml/weight_record_form_widget.xml:0 | ||
#, python-format | ||
msgid "Minus" | ||
msgstr "" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/xml/weight_record_form_widget.xml:0 | ||
#: code:addons/stock_weighing_remote_measure/static/src/xml/weight_record_form_widget.xml:0 | ||
#, python-format | ||
msgid "Plus" | ||
msgstr "" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/xml/weight_record_form_widget.xml:0 | ||
#, python-format | ||
msgid "REAL:" | ||
msgstr "" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#: model:ir.model,name:stock_weighing_remote_measure.model_weighing_wizard | ||
msgid "Record weights over detailed operations" | ||
msgstr "" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#. openerp-web | ||
#: code:addons/stock_weighing_remote_measure/static/src/xml/weight_record_form_widget.xml:0 | ||
#, python-format | ||
msgid "TARE:" | ||
msgstr "" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#: model:ir.model.fields,field_description:stock_weighing_remote_measure.field_weighing_wizard__uom_id | ||
msgid "Uom" | ||
msgstr "" | ||
|
||
#. module: stock_weighing_remote_measure | ||
#: model:ir.model.fields,field_description:stock_weighing_remote_measure.field_weighing_wizard__weight_with_widget | ||
msgid "Weight" | ||
msgstr "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Meausure the weight remotely from the weighing assistant. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- [Tecnativa](https://www.tecnativa.com) | ||
- David Vidal | ||
- Sergio Teruel |
Oops, something went wrong.