Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion report_qweb_field_option/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Report Qweb Field Option
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:6a839e0b8361541500cea7946ac9d7bfbcbe37ab2a102576061a2940c4343c5c
!! source digest: sha256:2e6250e04e346bc7f61b36e4fb244e8f744f480b1e42e0ba753a71342ebd648f
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
Expand Down Expand Up @@ -52,6 +52,9 @@ For each record:
- Set **Model** and **Field** (required)
- Set **UoM** and **UoM Field**, or **Currency** and **Currency Field**
only for fields of float type (optional)
- Set **Domain** to specify a domain for more specific filtering (e.g.,
``[('secondary_uom_id', '=', 1)]`` to apply only when a specific
secondary UoM is used) (optional)
- Set **Company** (optional)
- Set **Options** as a string representation of a dictionary. E.g.,
``{"widget": "date"}``, ``{"widget": "monetary"}``, or
Expand Down
2 changes: 1 addition & 1 deletion report_qweb_field_option/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Report Qweb Field Option",
"version": "18.0.1.0.1",
"version": "18.0.1.1.0",
"category": "Technical Settings",
"license": "AGPL-3",
"author": "Quartile, Odoo Community Association (OCA)",
Expand Down
50 changes: 40 additions & 10 deletions report_qweb_field_option/i18n/it.po
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,21 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-03-30 21:06+0000\n"
"PO-Revision-Date: 2026-03-19 16:48+0000\n"
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
"Language-Team: none\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.10.2\n"
"X-Generator: Weblate 5.15.2\n"

#. module: report_qweb_field_option
#: model:ir.model.fields,help:report_qweb_field_option.field_qweb_field_options__field_options
msgid ""
"A string representation of a dictionary to specify field formatting options. Examples:\n"
"A string representation of a dictionary to specify field formatting options. "
"Examples:\n"
"{'widget': 'date'}\n"
"{'widget': 'monetary'}\n"
"{'widget': 'contact', 'fields': ['name', 'phone']}"
Expand Down Expand Up @@ -65,6 +66,11 @@ msgstr "Cifre"
msgid "Display Name"
msgstr "Nome visualizzato"

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__domain
msgid "Domain"
msgstr "Dominio"

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__field_id
msgid "Field"
Expand Down Expand Up @@ -93,18 +99,22 @@ msgstr "ID"
#. module: report_qweb_field_option
#. odoo-python
#: code:addons/report_qweb_field_option/models/qweb_field_options.py:0
#, python-format
msgid ""
"Invalid string for the Options field: %(field_options)s.\n"
"Invalid domain format: %(domain)s.\n"
"Error: %(error)s"
msgstr ""
"Stringa non valida per il campo opzioni: %(field_options)s.\n"
"Formato dominio errato: %(domain)s.\n"
"Errore: %(error)s"

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options____last_update
msgid "Last Modified on"
msgstr "Ultima modifica il"
#. odoo-python
#: code:addons/report_qweb_field_option/models/qweb_field_options.py:0
msgid ""
"Invalid string for the Options field: %(field_options)s.\n"
"Error: %(error)s"
msgstr ""
"Stringa non valida per il campo opzioni: %(field_options)s.\n"
"Errore: %(error)s"

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__write_uid
Expand All @@ -127,6 +137,24 @@ msgstr "Modello"
msgid "Model Name"
msgstr "Nome modello"

#. module: report_qweb_field_option
#: model:ir.model.fields,help:report_qweb_field_option.field_qweb_field_options__domain
msgid ""
"Optional domain for additional filtering conditions.\n"
"This is evaluated in addition to UoM/Currency conditions.\n"
"Examples:\n"
"[('secondary_uom_id', '=', 1)]\n"
"[('secondary_uom_id.name', '=', 'Box')]\n"
"[('state', 'in', ['sale', 'done'])]"
msgstr ""
"Dominio opzionale per ulteriori condizioni di filtraggio.\n"
"Questo viene valutato in aggiunta alle condizioni relative all'unità di "
"misura/valuta.\n"
"Esempi:\n"
"[('secondary_uom_id', '=', 1)]\n"
"[('secondary_uom_id.name', '=', 'Box')]\n"
"[('state', 'in', ['sale', 'done'])]"

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__field_options
msgid "Options"
Expand All @@ -135,7 +163,6 @@ msgstr "Opzioni"
#. module: report_qweb_field_option
#. odoo-python
#: code:addons/report_qweb_field_option/models/qweb_field_options.py:0
#, python-format
msgid "Options must be a dictionary, but got %s"
msgstr "Le opzioni devono essere un dizionario, ma sono %s"

Expand Down Expand Up @@ -165,3 +192,6 @@ msgstr "UdM"
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__uom_field_id
msgid "UoM Field"
msgstr "Campo UdM"

#~ msgid "Last Modified on"
#~ msgstr "Ultima modifica il"
27 changes: 26 additions & 1 deletion report_qweb_field_option/i18n/ja.po
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ msgstr ""
#. module: report_qweb_field_option
#: model:ir.model.fields,help:report_qweb_field_option.field_qweb_field_options__field_options
msgid ""
"A string representation of a dictionary to specify field formatting options. Examples:\n"
"A string representation of a dictionary to specify field formatting options. "
"Examples:\n"
"{'widget': 'date'}\n"
"{'widget': 'monetary'}\n"
"{'widget': 'contact', 'fields': ['name', 'phone']}"
Expand Down Expand Up @@ -58,6 +59,11 @@ msgstr ""
msgid "Display Name"
msgstr ""

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__domain
msgid "Domain"
msgstr ""

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__field_id
msgid "Field"
Expand All @@ -83,6 +89,14 @@ msgstr ""
msgid "ID"
msgstr ""

#. module: report_qweb_field_option
#. odoo-python
#: code:addons/report_qweb_field_option/models/qweb_field_options.py:0
msgid ""
"Invalid domain format: %(domain)s.\n"
"Error: %(error)s"
msgstr ""

#. module: report_qweb_field_option
#. odoo-python
#: code:addons/report_qweb_field_option/models/qweb_field_options.py:0
Expand Down Expand Up @@ -112,6 +126,17 @@ msgstr ""
msgid "Model Name"
msgstr ""

#. module: report_qweb_field_option
#: model:ir.model.fields,help:report_qweb_field_option.field_qweb_field_options__domain
msgid ""
"Optional domain for additional filtering conditions.\n"
"This is evaluated in addition to UoM/Currency conditions.\n"
"Examples:\n"
"[('secondary_uom_id', '=', 1)]\n"
"[('secondary_uom_id.name', '=', 'Box')]\n"
"[('state', 'in', ['sale', 'done'])]"
msgstr ""

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__field_options
msgid "Options"
Expand Down
27 changes: 26 additions & 1 deletion report_qweb_field_option/i18n/nl.po
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ msgstr ""
#. module: report_qweb_field_option
#: model:ir.model.fields,help:report_qweb_field_option.field_qweb_field_options__field_options
msgid ""
"A string representation of a dictionary to specify field formatting options. Examples:\n"
"A string representation of a dictionary to specify field formatting options. "
"Examples:\n"
"{'widget': 'date'}\n"
"{'widget': 'monetary'}\n"
"{'widget': 'contact', 'fields': ['name', 'phone']}"
Expand Down Expand Up @@ -58,6 +59,11 @@ msgstr ""
msgid "Display Name"
msgstr ""

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__domain
msgid "Domain"
msgstr ""

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__field_id
msgid "Field"
Expand All @@ -83,6 +89,14 @@ msgstr ""
msgid "ID"
msgstr ""

#. module: report_qweb_field_option
#. odoo-python
#: code:addons/report_qweb_field_option/models/qweb_field_options.py:0
msgid ""
"Invalid domain format: %(domain)s.\n"
"Error: %(error)s"
msgstr ""

#. module: report_qweb_field_option
#. odoo-python
#: code:addons/report_qweb_field_option/models/qweb_field_options.py:0
Expand Down Expand Up @@ -112,6 +126,17 @@ msgstr ""
msgid "Model Name"
msgstr ""

#. module: report_qweb_field_option
#: model:ir.model.fields,help:report_qweb_field_option.field_qweb_field_options__domain
msgid ""
"Optional domain for additional filtering conditions.\n"
"This is evaluated in addition to UoM/Currency conditions.\n"
"Examples:\n"
"[('secondary_uom_id', '=', 1)]\n"
"[('secondary_uom_id.name', '=', 'Box')]\n"
"[('state', 'in', ['sale', 'done'])]"
msgstr ""

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__field_options
msgid "Options"
Expand Down
27 changes: 26 additions & 1 deletion report_qweb_field_option/i18n/nl_NL.po
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ msgstr ""
#. module: report_qweb_field_option
#: model:ir.model.fields,help:report_qweb_field_option.field_qweb_field_options__field_options
msgid ""
"A string representation of a dictionary to specify field formatting options. Examples:\n"
"A string representation of a dictionary to specify field formatting options. "
"Examples:\n"
"{'widget': 'date'}\n"
"{'widget': 'monetary'}\n"
"{'widget': 'contact', 'fields': ['name', 'phone']}"
Expand Down Expand Up @@ -65,6 +66,11 @@ msgstr "Cijfers"
msgid "Display Name"
msgstr "Weergavenaam"

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__domain
msgid "Domain"
msgstr ""

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__field_id
msgid "Field"
Expand All @@ -90,6 +96,14 @@ msgstr "Groeperen op"
msgid "ID"
msgstr "ID"

#. module: report_qweb_field_option
#. odoo-python
#: code:addons/report_qweb_field_option/models/qweb_field_options.py:0
msgid ""
"Invalid domain format: %(domain)s.\n"
"Error: %(error)s"
msgstr ""

#. module: report_qweb_field_option
#. odoo-python
#: code:addons/report_qweb_field_option/models/qweb_field_options.py:0
Expand Down Expand Up @@ -121,6 +135,17 @@ msgstr "Model"
msgid "Model Name"
msgstr "Modelnaam"

#. module: report_qweb_field_option
#: model:ir.model.fields,help:report_qweb_field_option.field_qweb_field_options__domain
msgid ""
"Optional domain for additional filtering conditions.\n"
"This is evaluated in addition to UoM/Currency conditions.\n"
"Examples:\n"
"[('secondary_uom_id', '=', 1)]\n"
"[('secondary_uom_id.name', '=', 'Box')]\n"
"[('state', 'in', ['sale', 'done'])]"
msgstr ""

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__field_options
msgid "Options"
Expand Down
24 changes: 24 additions & 0 deletions report_qweb_field_option/i18n/report_qweb_field_option.pot
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ msgstr ""
msgid "Display Name"
msgstr ""

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__domain
msgid "Domain"
msgstr ""

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__field_id
msgid "Field"
Expand All @@ -82,6 +87,14 @@ msgstr ""
msgid "ID"
msgstr ""

#. module: report_qweb_field_option
#. odoo-python
#: code:addons/report_qweb_field_option/models/qweb_field_options.py:0
msgid ""
"Invalid domain format: %(domain)s.\n"
"Error: %(error)s"
msgstr ""

#. module: report_qweb_field_option
#. odoo-python
#: code:addons/report_qweb_field_option/models/qweb_field_options.py:0
Expand Down Expand Up @@ -111,6 +124,17 @@ msgstr ""
msgid "Model Name"
msgstr ""

#. module: report_qweb_field_option
#: model:ir.model.fields,help:report_qweb_field_option.field_qweb_field_options__domain
msgid ""
"Optional domain for additional filtering conditions.\n"
"This is evaluated in addition to UoM/Currency conditions.\n"
"Examples:\n"
"[('secondary_uom_id', '=', 1)]\n"
"[('secondary_uom_id.name', '=', 'Box')]\n"
"[('state', 'in', ['sale', 'done'])]"
msgstr ""

#. module: report_qweb_field_option
#: model:ir.model.fields,field_description:report_qweb_field_option.field_qweb_field_options__field_options
msgid "Options"
Expand Down
Loading
Loading