mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 09:52:02 +02:00
Initial commit: OCA Technical packages (595 packages)
This commit is contained in:
commit
2cc02aac6e
24950 changed files with 2318079 additions and 0 deletions
280
odoo-bringout-oca-server-tools-jsonifier/jsonifier/README.rst
Normal file
280
odoo-bringout-oca-server-tools-jsonifier/jsonifier/README.rst
Normal file
|
|
@ -0,0 +1,280 @@
|
|||
=========
|
||||
JSONifier
|
||||
=========
|
||||
|
||||
..
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:b4e38b8c4c0fb183e4fee0005cba8864f90c1da9705d957c0b2dd379a7ce6987
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |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-LGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
|
||||
:alt: License: LGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/server-tools/tree/16.0/jsonifier
|
||||
:alt: OCA/server-tools
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-jsonifier
|
||||
: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/server-tools&target_branch=16.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
This module adds a 'jsonify' method to every model of the ORM.
|
||||
It works on the current recordset and requires a single argument 'parser'
|
||||
that specify the field to extract.
|
||||
|
||||
Example of a simple parser:
|
||||
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
parser = [
|
||||
'name',
|
||||
'number',
|
||||
'create_date',
|
||||
('partner_id', ['id', 'display_name', 'ref'])
|
||||
('line_id', ['id', ('product_id', ['name']), 'price_unit'])
|
||||
]
|
||||
|
||||
In order to be consistent with the Odoo API the jsonify method always
|
||||
returns a list of objects even if there is only one element in the recordset.
|
||||
|
||||
By default the key into the JSON is the name of the field extracted
|
||||
from the model. If you need to specify an alternate name to use as key, you
|
||||
can define your mapping as follow into the parser definition:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
parser = [
|
||||
'field_name:json_key'
|
||||
]
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
|
||||
parser = [
|
||||
'name',
|
||||
'number',
|
||||
'create_date:creationDate',
|
||||
('partner_id:partners', ['id', 'display_name', 'ref'])
|
||||
('line_id:lines', ['id', ('product_id', ['name']), 'price_unit'])
|
||||
]
|
||||
|
||||
If you need to parse the value of a field in a custom way,
|
||||
you can pass a callable or the name of a method on the model:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
parser = [
|
||||
('name', "jsonify_name") # method name
|
||||
('number', lambda rec, field_name: rec[field_name] * 2)) # callable
|
||||
]
|
||||
|
||||
Also the module provide a method "get_json_parser" on the ir.exports object
|
||||
that generate a parser from an ir.exports configuration.
|
||||
|
||||
Further features are available for advanced uses.
|
||||
It defines a simple "resolver" model that has a "python_code" field and a resolve
|
||||
function so that arbitrary functions can be configured to transform fields,
|
||||
or process the resulting dictionary.
|
||||
It is also to specify a lang to extract the translation of any given field.
|
||||
|
||||
To use these features, a full parser follows the following structure:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
parser = {
|
||||
"resolver": 3,
|
||||
"language_agnostic": True,
|
||||
"langs": {
|
||||
False: [
|
||||
{'name': 'description'},
|
||||
{'name': 'number', 'resolver': 5},
|
||||
({'name': 'partner_id', 'target': 'partner'}, [{'name': 'display_name'}])
|
||||
],
|
||||
'fr_FR': [
|
||||
{'name': 'description', 'target': 'descriptions_fr'},
|
||||
({'name': 'partner_id', 'target': 'partner'}, [{'name': 'description', 'target': 'description_fr'}])
|
||||
],
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
One would get a result having this structure (note that the translated fields are merged in the same dictionary):
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
exported_json == {
|
||||
"description": "English description",
|
||||
"description_fr": "French description, voilà",
|
||||
"number": 42,
|
||||
"partner": {
|
||||
"display_name": "partner name",
|
||||
"description_fr": "French description of that partner",
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
Note that a resolver can be passed either as a recordset or as an id, so as to be fully serializable.
|
||||
A slightly simpler version in case the translation of fields is not needed,
|
||||
but other features like custom resolvers are:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
parser = {
|
||||
"resolver": 3,
|
||||
"fields": [
|
||||
{'name': 'description'},
|
||||
{'name': 'number', 'resolver': 5},
|
||||
({'name': 'partner_id', 'target': 'partners'}, [{'name': 'display_name'}]),
|
||||
],
|
||||
}
|
||||
|
||||
|
||||
By passing the `fields` key instead of `langs`, we have essentially the same behaviour as simple parsers,
|
||||
with the added benefit of being able to use resolvers.
|
||||
|
||||
Standard use-cases of resolvers are:
|
||||
- give field-specific defaults (e.g. `""` instead of `None`)
|
||||
- cast a field type (e.g. `int()`)
|
||||
- alias a particular field for a specific export
|
||||
- ...
|
||||
|
||||
A simple parser is simply translated into a full parser at export.
|
||||
|
||||
If the global resolver is given, then the json_dict goes through:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
resolver.resolve(dict, record)
|
||||
|
||||
Which allows to add external data from the context or transform the dictionary
|
||||
if necessary. Similarly if given for a field the resolver evaluates the result.
|
||||
|
||||
It is possible for a target to have a marshaller by ending the target with '=list':
|
||||
in that case the result is put into a list.
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
parser = {
|
||||
fields: [
|
||||
{'name': 'name'},
|
||||
{'name': 'field_1', 'target': 'customTags=list'},
|
||||
{'name': 'field_2', 'target': 'customTags=list'},
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
Would result in the following JSON structure:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
{
|
||||
'name': 'record_name',
|
||||
'customTags': ['field_1_value', 'field_2_value'],
|
||||
}
|
||||
|
||||
The intended use-case is to be compatible with APIs that require all translated
|
||||
parameters to be exported simultaneously, and ask for custom properties to be
|
||||
put in a sub-dictionary.
|
||||
Since it is often the case that some of these requirements are optional,
|
||||
new requirements could be met without needing to add field or change any code.
|
||||
|
||||
Note that the export values with the simple parser depends on the record's lang;
|
||||
this is in contrast with full parsers which are designed to be language agnostic.
|
||||
|
||||
|
||||
NOTE: this module was named `base_jsonify` till version 14.0.1.5.0.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
with_fieldname parameter
|
||||
==========================
|
||||
|
||||
The with_fieldname option of jsonify() method, when true, will inject on
|
||||
the same level of the data "_fieldname_$field" keys that will
|
||||
contain the field name, in the language of the current user.
|
||||
|
||||
|
||||
Examples of with_fieldname usage:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
# example 1
|
||||
parser = [('name')]
|
||||
a.jsonify(parser=parser)
|
||||
[{'name': 'SO3996'}]
|
||||
>>> a.jsonify(parser=parser, with_fieldname=False)
|
||||
[{'name': 'SO3996'}]
|
||||
>>> a.jsonify(parser=parser, with_fieldname=True)
|
||||
[{'fieldname_name': 'Order Reference', 'name': 'SO3996'}}]
|
||||
|
||||
|
||||
# example 2 - with a subparser-
|
||||
parser=['name', 'create_date', ('order_line', ['id' , 'product_uom', 'is_expense'])]
|
||||
>>> a.jsonify(parser=parser, with_fieldname=False)
|
||||
[{'name': 'SO3996', 'create_date': '2015-06-02T12:18:26.279909+00:00', 'order_line': [{'id': 16649, 'product_uom': 'stuks', 'is_expense': False}, {'id': 16651, 'product_uom': 'stuks', 'is_expense': False}, {'id': 16650, 'product_uom': 'stuks', 'is_expense': False}]}]
|
||||
>>> a.jsonify(parser=parser, with_fieldname=True)
|
||||
[{'fieldname_name': 'Order Reference', 'name': 'SO3996', 'fieldname_create_date': 'Creation Date', 'create_date': '2015-06-02T12:18:26.279909+00:00', 'fieldname_order_line': 'Order Lines', 'order_line': [{'fieldname_id': 'ID', 'id': 16649, 'fieldname_product_uom': 'Unit of Measure', 'product_uom': 'stuks', 'fieldname_is_expense': 'Is expense', 'is_expense': False}]}]
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/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/server-tools/issues/new?body=module:%20jsonifier%0Aversion:%2016.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
|
||||
~~~~~~~
|
||||
|
||||
* Akretion
|
||||
* ACSONE
|
||||
* Camptocamp
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* BEAU Sébastien <sebastien.beau@akretion.com>
|
||||
* Raphaël Reverdy <raphael.reverdy@akretion.com>
|
||||
* Laurent Mignon <laurent.mignon@acsone.eu>
|
||||
* Nans Lefebvre <nans.lefebvre@acsone.eu>
|
||||
* Simone Orsi <simone.orsi@camptocamp.com>
|
||||
* Iván Todorovich <ivan.todorovich@camptocamp.com>
|
||||
|
||||
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/server-tools <https://github.com/OCA/server-tools/tree/16.0/jsonifier>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
|
|
@ -0,0 +1 @@
|
|||
from . import models
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
# Copyright 2017-2018 Akretion (http://www.akretion.com)
|
||||
# Sébastien BEAU <sebastien.beau@akretion.com>
|
||||
# Raphaël Reverdy <raphael.reverdy@akretion.com>
|
||||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
||||
|
||||
{
|
||||
"name": "JSONifier",
|
||||
"summary": "JSON-ify data for all models",
|
||||
"version": "16.0.0.1.0",
|
||||
"category": "Uncategorized",
|
||||
"website": "https://github.com/OCA/server-tools",
|
||||
"author": "Akretion, ACSONE, Camptocamp, Odoo Community Association (OCA)",
|
||||
"license": "LGPL-3",
|
||||
"installable": True,
|
||||
"depends": ["base"],
|
||||
"data": [
|
||||
"security/ir.model.access.csv",
|
||||
"views/ir_exports_view.xml",
|
||||
"views/ir_exports_resolver_view.xml",
|
||||
],
|
||||
"demo": [
|
||||
"demo/resolver_demo.xml",
|
||||
"demo/export_demo.xml",
|
||||
"demo/ir.exports.line.csv",
|
||||
],
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record id="ir_exp_partner" model="ir.exports">
|
||||
<field name="name">Partner Export</field>
|
||||
<field name="resource">res.partner</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
id,export_id/id,name
|
||||
name,ir_exp_partner,name
|
||||
active,ir_exp_partner,active
|
||||
partner_latitude,ir_exp_partner,partner_latitude
|
||||
color,ir_exp_partner,color
|
||||
category_id_name,ir_exp_partner,category_id/name
|
||||
country_id_name,ir_exp_partner,country_id/name
|
||||
country_id_code,ir_exp_partner,country_id/code
|
||||
child_ids_name,ir_exp_partner,child_ids/name
|
||||
child_ids_id,ir_exp_partner,child_ids/id
|
||||
child_ids_email,ir_exp_partner,child_ids/email
|
||||
child_ids_country_id_name,ir_exp_partner,child_ids/country_id/name
|
||||
child_ids_country_id_code,ir_exp_partner,child_ids/country_id/code
|
||||
child_ids_child_ids_name,ir_exp_partner,child_ids/child_ids/name
|
||||
lang,ir_exp_partner,lang
|
||||
comment,ir_exp_partner,comment
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record id="ir_exports_resolver_dict" model="ir.exports.resolver">
|
||||
<field name="name">ExtraData dictionary (number/text)</field>
|
||||
<field name="python_code">
|
||||
is_number = field_type in ('integer', 'float')
|
||||
ftype = "NUMBER" if is_number else "TEXT"
|
||||
value = value if is_number else str(value)
|
||||
result = {"Key": name, "Value": value, "Type": ftype, "IsPublic": True}
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Copyright 2022 Camptocamp SA (http://www.camptocamp.com)
|
||||
# Simone Orsi <simahawk@gmail.com>
|
||||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
||||
|
||||
|
||||
class SwallableException(Exception):
|
||||
"""An exception that can be safely skipped."""
|
||||
242
odoo-bringout-oca-server-tools-jsonifier/jsonifier/i18n/bs.po
Normal file
242
odoo-bringout-oca-server-tools-jsonifier/jsonifier/i18n/bs.po
Normal file
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * jsonifier
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \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: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__instance_method_name
|
||||
msgid "A method defined on the model that takes a record and a field_name"
|
||||
msgstr "Metod definisan na modelu koji prima zapis i naziv_polja"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_base
|
||||
msgid "Base"
|
||||
msgstr "Osnova"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_resolver__python_code
|
||||
msgid ""
|
||||
"Compute the result from 'value' by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
"For fields resolvers:\n"
|
||||
":param record: the record\n"
|
||||
":param name: name of the field\n"
|
||||
":param value: value of the field\n"
|
||||
":param field_type: type of the field\n"
|
||||
"\n"
|
||||
"For global resolvers:\n"
|
||||
":param value: JSON dict\n"
|
||||
":param record: the record\n"
|
||||
"\n"
|
||||
"In both types, you can override the final json key.\n"
|
||||
"To achieve this, simply return a dict like: \n"
|
||||
"{'result': {'_value': $value, '_json_key': $new_json_key}}"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model_terms:ir.ui.view,arch_db:jsonifier.view_ir_exports
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguracija"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.actions.act_window,name:jsonifier.act_ui_exports_resolver_view
|
||||
#: model:ir.ui.menu,name:jsonifier.ui_exports_resolvers
|
||||
msgid "Custom Export Resolvers"
|
||||
msgstr "Prilagođeni export resolveri"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__global_resolver_id
|
||||
msgid "Custom global resolver"
|
||||
msgstr "Prilagođeni globalni resolver"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__resolver_id
|
||||
msgid "Custom resolver"
|
||||
msgstr "Prilagođeni resolver"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid "Either set a function or a resolver, not both."
|
||||
msgstr "Postavite ili funkciju ili resolver, ne oboje."
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.actions.act_window,name:jsonifier.act_ui_exports_view
|
||||
#: model:ir.ui.menu,name:jsonifier.ui_exports
|
||||
msgid "Export Fields"
|
||||
msgstr "Export polja"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports_resolver
|
||||
msgid "Export Resolver"
|
||||
msgstr "Export resolver"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports
|
||||
msgid "Exports"
|
||||
msgstr "ir.exports"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports_line
|
||||
msgid "Exports Line"
|
||||
msgstr "ir.exports.line"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields.selection,name:jsonifier.selection__ir_exports_resolver__type__field
|
||||
msgid "Field"
|
||||
msgstr "Polje"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__instance_method_name
|
||||
msgid "Function"
|
||||
msgstr "Funkcija"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields.selection,name:jsonifier.selection__ir_exports_resolver__type__global
|
||||
msgid "Global"
|
||||
msgstr "Opšte"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__lang_id
|
||||
msgid "If set, the language in which the field is exported"
|
||||
msgstr "Ako je postavljen, jezik u kojem se polje exportuje"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports__global_resolver_id
|
||||
msgid "If set, will apply the global resolver to the result"
|
||||
msgstr "Ako je postavljen, primijenit će globalni resolver na rezultat"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__resolver_id
|
||||
msgid "If set, will apply the resolver on the field value"
|
||||
msgstr "Ako je postavljen, primijenit će resolver na vrijednost polja"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports__language_agnostic
|
||||
msgid ""
|
||||
"If set, will set the lang to False when exporting lines without lang, "
|
||||
"otherwise it uses the lang in the given context to export these fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model_terms:ir.ui.view,arch_db:jsonifier.view_ir_exports
|
||||
msgid "Index"
|
||||
msgstr "Indeks"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__lang_id
|
||||
msgid "Language"
|
||||
msgstr "Jezik"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__language_agnostic
|
||||
msgid "Language Agnostic"
|
||||
msgstr "Nezavisan od jezika"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__name
|
||||
msgid "Name"
|
||||
msgstr "Naziv:"
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid "Name and Target must have the same hierarchy depth"
|
||||
msgstr "Naziv i cilj moraju imati istu dubinu hijerarhije"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__python_code
|
||||
msgid "Python Code"
|
||||
msgstr "Python Kod"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__smart_search
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__smart_search
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__smart_search
|
||||
msgid "Smart Search"
|
||||
msgstr "Pametno pretraživanje"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__target
|
||||
msgid "Target"
|
||||
msgstr "Cilj"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__target
|
||||
msgid ""
|
||||
"The complete path to the field where you can specify a target on the step as"
|
||||
" field:target"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The target must reference the same field as in name '%(name)s' not in "
|
||||
"'%(name_with_target)s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__type
|
||||
msgid "Type"
|
||||
msgstr "Tip"
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/models.py:0
|
||||
#, python-format
|
||||
msgid "Wrong parser configuration for field: `%s`"
|
||||
msgstr "Pogrešna konfiguracija parsera za polje: `%s`"
|
||||
243
odoo-bringout-oca-server-tools-jsonifier/jsonifier/i18n/ca.po
Normal file
243
odoo-bringout-oca-server-tools-jsonifier/jsonifier/i18n/ca.po
Normal file
|
|
@ -0,0 +1,243 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * jsonifier
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 14.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: ca\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"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__instance_method_name
|
||||
msgid "A method defined on the model that takes a record and a field_name"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_base
|
||||
msgid "Base"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_resolver__python_code
|
||||
msgid ""
|
||||
"Compute the result from 'value' by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
"For fields resolvers:\n"
|
||||
":param record: the record\n"
|
||||
":param name: name of the field\n"
|
||||
":param value: value of the field\n"
|
||||
":param field_type: type of the field\n"
|
||||
"\n"
|
||||
"For global resolvers:\n"
|
||||
":param value: JSON dict\n"
|
||||
":param record: the record\n"
|
||||
"\n"
|
||||
"In both types, you can override the final json key.\n"
|
||||
"To achieve this, simply return a dict like: \n"
|
||||
"{'result': {'_value': $value, '_json_key': $new_json_key}}"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model_terms:ir.ui.view,arch_db:jsonifier.view_ir_exports
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.actions.act_window,name:jsonifier.act_ui_exports_resolver_view
|
||||
#: model:ir.ui.menu,name:jsonifier.ui_exports_resolvers
|
||||
msgid "Custom Export Resolvers"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__global_resolver_id
|
||||
msgid "Custom global resolver"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__resolver_id
|
||||
msgid "Custom resolver"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid "Either set a function or a resolver, not both."
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.actions.act_window,name:jsonifier.act_ui_exports_view
|
||||
#: model:ir.ui.menu,name:jsonifier.ui_exports
|
||||
msgid "Export Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports_resolver
|
||||
msgid "Export Resolver"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports
|
||||
msgid "Exports"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports_line
|
||||
msgid "Exports Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields.selection,name:jsonifier.selection__ir_exports_resolver__type__field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__instance_method_name
|
||||
msgid "Function"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields.selection,name:jsonifier.selection__ir_exports_resolver__type__global
|
||||
msgid "Global"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__lang_id
|
||||
msgid "If set, the language in which the field is exported"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports__global_resolver_id
|
||||
msgid "If set, will apply the global resolver to the result"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__resolver_id
|
||||
msgid "If set, will apply the resolver on the field value"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports__language_agnostic
|
||||
msgid ""
|
||||
"If set, will set the lang to False when exporting lines without lang, "
|
||||
"otherwise it uses the lang in the given context to export these fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model_terms:ir.ui.view,arch_db:jsonifier.view_ir_exports
|
||||
msgid "Index"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__lang_id
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__language_agnostic
|
||||
msgid "Language Agnostic"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid "Name and Target must have the same hierarchy depth"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__python_code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__smart_search
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__smart_search
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__smart_search
|
||||
msgid "Smart Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__target
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__target
|
||||
msgid ""
|
||||
"The complete path to the field where you can specify a target on the step as "
|
||||
"field:target"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The target must reference the same field as in name '%(name)s' not in "
|
||||
"'%(name_with_target)s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/models.py:0
|
||||
#, python-format
|
||||
msgid "Wrong parser configuration for field: `%s`"
|
||||
msgstr ""
|
||||
272
odoo-bringout-oca-server-tools-jsonifier/jsonifier/i18n/es.po
Normal file
272
odoo-bringout-oca-server-tools-jsonifier/jsonifier/i18n/es.po
Normal file
|
|
@ -0,0 +1,272 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * jsonifier
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-11 15:39+0000\n"
|
||||
"Last-Translator: Ivorra78 <informatica@totmaterial.es>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: es\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 4.17\n"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__instance_method_name
|
||||
msgid "A method defined on the model that takes a record and a field_name"
|
||||
msgstr "Un método definido en el modelo que toma un registro y un field_name"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_base
|
||||
msgid "Base"
|
||||
msgstr "Base"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_resolver__python_code
|
||||
msgid ""
|
||||
"Compute the result from 'value' by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
"For fields resolvers:\n"
|
||||
":param record: the record\n"
|
||||
":param name: name of the field\n"
|
||||
":param value: value of the field\n"
|
||||
":param field_type: type of the field\n"
|
||||
"\n"
|
||||
"For global resolvers:\n"
|
||||
":param value: JSON dict\n"
|
||||
":param record: the record\n"
|
||||
"\n"
|
||||
"In both types, you can override the final json key.\n"
|
||||
"To achieve this, simply return a dict like: \n"
|
||||
"{'result': {'_value': $value, '_json_key': $new_json_key}}"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model_terms:ir.ui.view,arch_db:jsonifier.view_ir_exports
|
||||
msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.actions.act_window,name:jsonifier.act_ui_exports_resolver_view
|
||||
#: model:ir.ui.menu,name:jsonifier.ui_exports_resolvers
|
||||
msgid "Custom Export Resolvers"
|
||||
msgstr "Resolucionadores de Exportación Personalizados"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__global_resolver_id
|
||||
msgid "Custom global resolver"
|
||||
msgstr "Resolución global personalizada"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__resolver_id
|
||||
msgid "Custom resolver"
|
||||
msgstr "Resolución personalizada"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar Nombre"
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid "Either set a function or a resolver, not both."
|
||||
msgstr "O bien establece una función o una resolución, no ambas."
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.actions.act_window,name:jsonifier.act_ui_exports_view
|
||||
#: model:ir.ui.menu,name:jsonifier.ui_exports
|
||||
msgid "Export Fields"
|
||||
msgstr "Exportar Campos"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports_resolver
|
||||
msgid "Export Resolver"
|
||||
msgstr "Resolver Exportaciones"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports
|
||||
msgid "Exports"
|
||||
msgstr "Exportaciones"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports_line
|
||||
msgid "Exports Line"
|
||||
msgstr "Línea de Exportación"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields.selection,name:jsonifier.selection__ir_exports_resolver__type__field
|
||||
msgid "Field"
|
||||
msgstr "Campo"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__instance_method_name
|
||||
msgid "Function"
|
||||
msgstr "Función"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields.selection,name:jsonifier.selection__ir_exports_resolver__type__global
|
||||
msgid "Global"
|
||||
msgstr "Global"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__lang_id
|
||||
msgid "If set, the language in which the field is exported"
|
||||
msgstr "Si se establece, el idioma en el que se exporta el campo"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports__global_resolver_id
|
||||
msgid "If set, will apply the global resolver to the result"
|
||||
msgstr "Si se establece, se aplicará el resolver global al resultado"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__resolver_id
|
||||
msgid "If set, will apply the resolver on the field value"
|
||||
msgstr "Si se establece, se aplicará el resolver en el valor del campo"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports__language_agnostic
|
||||
msgid ""
|
||||
"If set, will set the lang to False when exporting lines without lang, "
|
||||
"otherwise it uses the lang in the given context to export these fields"
|
||||
msgstr ""
|
||||
"Si se establece, se establecerá el lang a False al exportar líneas sin lang, "
|
||||
"de lo contrario utiliza el lang en el contexto dado para exportar estos "
|
||||
"campos"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model_terms:ir.ui.view,arch_db:jsonifier.view_ir_exports
|
||||
msgid "Index"
|
||||
msgstr "Índice"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__lang_id
|
||||
msgid "Language"
|
||||
msgstr "Lenguaje"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__language_agnostic
|
||||
msgid "Language Agnostic"
|
||||
msgstr "Agnóstico lingüístico"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modifiación en"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por Última vez por"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última Actualización el"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__name
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid "Name and Target must have the same hierarchy depth"
|
||||
msgstr "Nombre y Destino deben tener la misma profundidad jerárquica"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__python_code
|
||||
msgid "Python Code"
|
||||
msgstr "Código Python"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__smart_search
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__smart_search
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__smart_search
|
||||
msgid "Smart Search"
|
||||
msgstr "Búsqueda Inteligente"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__target
|
||||
msgid "Target"
|
||||
msgstr "Objetivo"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__target
|
||||
msgid ""
|
||||
"The complete path to the field where you can specify a target on the step as "
|
||||
"field:target"
|
||||
msgstr ""
|
||||
"La ruta completa al campo donde se puede especificar un objetivo en el paso "
|
||||
"como field:target"
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The target must reference the same field as in name '%(name)s' not in "
|
||||
"'%(name_with_target)s'"
|
||||
msgstr ""
|
||||
"El objetivo debe hacer referencia al mismo campo que en nombre '%(name)s' no "
|
||||
"en '%(name_with_target)s'"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__type
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/models.py:0
|
||||
#, python-format
|
||||
msgid "Wrong parser configuration for field: `%s`"
|
||||
msgstr "Configuración incorrecta del analizador sintáctico para el campo: `%s`"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Compute the result from 'value' by setting the variable 'result'.\n"
|
||||
#~ "For fields resolvers:\n"
|
||||
#~ ":param name: name of the field\n"
|
||||
#~ ":param value: value of the field\n"
|
||||
#~ ":param field_type: type of the field\n"
|
||||
#~ "For global resolvers:\n"
|
||||
#~ ":param value: JSON dict\n"
|
||||
#~ ":param record: the record"
|
||||
#~ msgstr ""
|
||||
#~ "Calcule el resultado a partir de 'valor' estableciendo la variable "
|
||||
#~ "'resultado'.\n"
|
||||
#~ "Para resolvedores de campos:\n"
|
||||
#~ ":param nombre: nombre del campo\n"
|
||||
#~ ":param valor: valor del campo\n"
|
||||
#~ ":param tipo_campo: tipo del campo\n"
|
||||
#~ "Para resolvedores globales:\n"
|
||||
#~ ":param valor: dict JSON\n"
|
||||
#~ ":param registro: el registro"
|
||||
286
odoo-bringout-oca-server-tools-jsonifier/jsonifier/i18n/it.po
Normal file
286
odoo-bringout-oca-server-tools-jsonifier/jsonifier/i18n/it.po
Normal file
|
|
@ -0,0 +1,286 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * jsonifier
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-21 17: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.6.2\n"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__instance_method_name
|
||||
msgid "A method defined on the model that takes a record and a field_name"
|
||||
msgstr "Un metdo definito nel modello che usa un record e un field_name"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__active
|
||||
msgid "Active"
|
||||
msgstr "Attiva"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_base
|
||||
msgid "Base"
|
||||
msgstr "Base"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_resolver__python_code
|
||||
msgid ""
|
||||
"Compute the result from 'value' by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
"For fields resolvers:\n"
|
||||
":param record: the record\n"
|
||||
":param name: name of the field\n"
|
||||
":param value: value of the field\n"
|
||||
":param field_type: type of the field\n"
|
||||
"\n"
|
||||
"For global resolvers:\n"
|
||||
":param value: JSON dict\n"
|
||||
":param record: the record\n"
|
||||
"\n"
|
||||
"In both types, you can override the final json key.\n"
|
||||
"To achieve this, simply return a dict like: \n"
|
||||
"{'result': {'_value': $value, '_json_key': $new_json_key}}"
|
||||
msgstr ""
|
||||
"Calcola il risultato dal 'value' impostando la variabile 'result'.\n"
|
||||
"\n"
|
||||
"Per risolutori campi:\n"
|
||||
":param record: il record\n"
|
||||
":param name: nome del campo\n"
|
||||
":param value: valore del campo\n"
|
||||
":param field_type: tipo del campo\n"
|
||||
"\n"
|
||||
"Per risolutori globali:\n"
|
||||
":param value: dizionario JSON \n"
|
||||
":param record: il record\n"
|
||||
"\n"
|
||||
"In entrambi i tipi, si può forzare la chiave JSON finale.\n"
|
||||
"Per farlo, restituire un dizionario come: \n"
|
||||
"{'result': {'_value': $value, '_json_key': $new_json_key}}"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model_terms:ir.ui.view,arch_db:jsonifier.view_ir_exports
|
||||
msgid "Configuration"
|
||||
msgstr "Configurazione"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creato il"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.actions.act_window,name:jsonifier.act_ui_exports_resolver_view
|
||||
#: model:ir.ui.menu,name:jsonifier.ui_exports_resolvers
|
||||
msgid "Custom Export Resolvers"
|
||||
msgstr "Identificatori esportazione personalizzati"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__global_resolver_id
|
||||
msgid "Custom global resolver"
|
||||
msgstr "identificatore globale personalizzato"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__resolver_id
|
||||
msgid "Custom resolver"
|
||||
msgstr "Identificatore personalizzato"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid "Either set a function or a resolver, not both."
|
||||
msgstr "Impostare una funzione o un identificatore, non entrambi."
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.actions.act_window,name:jsonifier.act_ui_exports_view
|
||||
#: model:ir.ui.menu,name:jsonifier.ui_exports
|
||||
msgid "Export Fields"
|
||||
msgstr "Esporta campi"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports_resolver
|
||||
msgid "Export Resolver"
|
||||
msgstr "Identificatore esportazione"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports
|
||||
msgid "Exports"
|
||||
msgstr "Esportazioni"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports_line
|
||||
msgid "Exports Line"
|
||||
msgstr "Riga esportazioni"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields.selection,name:jsonifier.selection__ir_exports_resolver__type__field
|
||||
msgid "Field"
|
||||
msgstr "Campo"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__instance_method_name
|
||||
msgid "Function"
|
||||
msgstr "Funzione"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields.selection,name:jsonifier.selection__ir_exports_resolver__type__global
|
||||
msgid "Global"
|
||||
msgstr "Globale"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__lang_id
|
||||
msgid "If set, the language in which the field is exported"
|
||||
msgstr "Se impostato, la lingua in cui è esportato il campo"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports__global_resolver_id
|
||||
msgid "If set, will apply the global resolver to the result"
|
||||
msgstr "Se impostata, applicherà il riferimento globale al risultato"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__resolver_id
|
||||
msgid "If set, will apply the resolver on the field value"
|
||||
msgstr "Se impostata, applicherà il riferimento al valore del campo"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports__language_agnostic
|
||||
msgid ""
|
||||
"If set, will set the lang to False when exporting lines without lang, "
|
||||
"otherwise it uses the lang in the given context to export these fields"
|
||||
msgstr ""
|
||||
"Se impostata, imposterà il linuaggio a False nell'esportazione di righe "
|
||||
"senza linguaggio, altrimenti utilizzerà il linguaggio nel dato contesto per "
|
||||
"esportare questi campi"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model_terms:ir.ui.view,arch_db:jsonifier.view_ir_exports
|
||||
msgid "Index"
|
||||
msgstr "Indice"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__lang_id
|
||||
msgid "Language"
|
||||
msgstr "Lingua"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__language_agnostic
|
||||
msgid "Language Agnostic"
|
||||
msgstr "Agnostico alla lingua"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__name
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid "Name and Target must have the same hierarchy depth"
|
||||
msgstr "Nome e obiettivo devno avere la stessa profondità gerarchica"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__python_code
|
||||
msgid "Python Code"
|
||||
msgstr "Codice Python"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__smart_search
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__smart_search
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__smart_search
|
||||
msgid "Smart Search"
|
||||
msgstr "Ricerca intelligente"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__target
|
||||
msgid "Target"
|
||||
msgstr "Obiettivo"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__target
|
||||
msgid ""
|
||||
"The complete path to the field where you can specify a target on the step as "
|
||||
"field:target"
|
||||
msgstr ""
|
||||
"Il percorso completo al campo dove si può indicare un obiettivo sul "
|
||||
"passaggio come field:target"
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The target must reference the same field as in name '%(name)s' not in "
|
||||
"'%(name_with_target)s'"
|
||||
msgstr ""
|
||||
"L'obiettivo deve far riferimento allo stesso campo come nel nome '%(name)s' "
|
||||
"non in '%(name_with_target)s'"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__type
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/models.py:0
|
||||
#, python-format
|
||||
msgid "Wrong parser configuration for field: `%s`"
|
||||
msgstr "Errata configurazione parser per il campo: `%s`"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Compute the result from 'value' by setting the variable 'result'.\n"
|
||||
#~ "For fields resolvers:\n"
|
||||
#~ ":param name: name of the field\n"
|
||||
#~ ":param value: value of the field\n"
|
||||
#~ ":param field_type: type of the field\n"
|
||||
#~ "For global resolvers:\n"
|
||||
#~ ":param value: JSON dict\n"
|
||||
#~ ":param record: the record"
|
||||
#~ msgstr ""
|
||||
#~ "Calcola il risultato da 'value'impostando la variabile 'result'.\n"
|
||||
#~ "Identificatri campi:\n"
|
||||
#~ ":param name: nome del campo\n"
|
||||
#~ ":param value: valore del cmapo\n"
|
||||
#~ ":param field_type: tipo del campo\n"
|
||||
#~ "Identificatori globali:\n"
|
||||
#~ ":param value: dizionario JSON\n"
|
||||
#~ ":param record: il record"
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * jsonifier
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \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: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__instance_method_name
|
||||
msgid "A method defined on the model that takes a record and a field_name"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_base
|
||||
msgid "Base"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_resolver__python_code
|
||||
msgid ""
|
||||
"Compute the result from 'value' by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
"For fields resolvers:\n"
|
||||
":param record: the record\n"
|
||||
":param name: name of the field\n"
|
||||
":param value: value of the field\n"
|
||||
":param field_type: type of the field\n"
|
||||
"\n"
|
||||
"For global resolvers:\n"
|
||||
":param value: JSON dict\n"
|
||||
":param record: the record\n"
|
||||
"\n"
|
||||
"In both types, you can override the final json key.\n"
|
||||
"To achieve this, simply return a dict like: \n"
|
||||
"{'result': {'_value': $value, '_json_key': $new_json_key}}"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model_terms:ir.ui.view,arch_db:jsonifier.view_ir_exports
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.actions.act_window,name:jsonifier.act_ui_exports_resolver_view
|
||||
#: model:ir.ui.menu,name:jsonifier.ui_exports_resolvers
|
||||
msgid "Custom Export Resolvers"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__global_resolver_id
|
||||
msgid "Custom global resolver"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__resolver_id
|
||||
msgid "Custom resolver"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid "Either set a function or a resolver, not both."
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.actions.act_window,name:jsonifier.act_ui_exports_view
|
||||
#: model:ir.ui.menu,name:jsonifier.ui_exports
|
||||
msgid "Export Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports_resolver
|
||||
msgid "Export Resolver"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports
|
||||
msgid "Exports"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports_line
|
||||
msgid "Exports Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields.selection,name:jsonifier.selection__ir_exports_resolver__type__field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__instance_method_name
|
||||
msgid "Function"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields.selection,name:jsonifier.selection__ir_exports_resolver__type__global
|
||||
msgid "Global"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__lang_id
|
||||
msgid "If set, the language in which the field is exported"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports__global_resolver_id
|
||||
msgid "If set, will apply the global resolver to the result"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__resolver_id
|
||||
msgid "If set, will apply the resolver on the field value"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports__language_agnostic
|
||||
msgid ""
|
||||
"If set, will set the lang to False when exporting lines without lang, "
|
||||
"otherwise it uses the lang in the given context to export these fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model_terms:ir.ui.view,arch_db:jsonifier.view_ir_exports
|
||||
msgid "Index"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__lang_id
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__language_agnostic
|
||||
msgid "Language Agnostic"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid "Name and Target must have the same hierarchy depth"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__python_code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__smart_search
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__smart_search
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__smart_search
|
||||
msgid "Smart Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__target
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__target
|
||||
msgid ""
|
||||
"The complete path to the field where you can specify a target on the step as"
|
||||
" field:target"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The target must reference the same field as in name '%(name)s' not in "
|
||||
"'%(name_with_target)s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/models.py:0
|
||||
#, python-format
|
||||
msgid "Wrong parser configuration for field: `%s`"
|
||||
msgstr ""
|
||||
249
odoo-bringout-oca-server-tools-jsonifier/jsonifier/i18n/zh_CN.po
Normal file
249
odoo-bringout-oca-server-tools-jsonifier/jsonifier/i18n/zh_CN.po
Normal file
|
|
@ -0,0 +1,249 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * jsonifier
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 12.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2019-08-31 04:35+0000\n"
|
||||
"Last-Translator: 黎伟杰 <674416404@qq.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 3.8\n"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__instance_method_name
|
||||
msgid "A method defined on the model that takes a record and a field_name"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_base
|
||||
msgid "Base"
|
||||
msgstr "基础"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_resolver__python_code
|
||||
msgid ""
|
||||
"Compute the result from 'value' by setting the variable 'result'.\n"
|
||||
"\n"
|
||||
"For fields resolvers:\n"
|
||||
":param record: the record\n"
|
||||
":param name: name of the field\n"
|
||||
":param value: value of the field\n"
|
||||
":param field_type: type of the field\n"
|
||||
"\n"
|
||||
"For global resolvers:\n"
|
||||
":param value: JSON dict\n"
|
||||
":param record: the record\n"
|
||||
"\n"
|
||||
"In both types, you can override the final json key.\n"
|
||||
"To achieve this, simply return a dict like: \n"
|
||||
"{'result': {'_value': $value, '_json_key': $new_json_key}}"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model_terms:ir.ui.view,arch_db:jsonifier.view_ir_exports
|
||||
msgid "Configuration"
|
||||
msgstr "配置"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.actions.act_window,name:jsonifier.act_ui_exports_resolver_view
|
||||
#: model:ir.ui.menu,name:jsonifier.ui_exports_resolvers
|
||||
msgid "Custom Export Resolvers"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__global_resolver_id
|
||||
msgid "Custom global resolver"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__resolver_id
|
||||
msgid "Custom resolver"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid "Either set a function or a resolver, not both."
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.actions.act_window,name:jsonifier.act_ui_exports_view
|
||||
#: model:ir.ui.menu,name:jsonifier.ui_exports
|
||||
msgid "Export Fields"
|
||||
msgstr "导出字段"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports_resolver
|
||||
msgid "Export Resolver"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports
|
||||
msgid "Exports"
|
||||
msgstr "导出"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model,name:jsonifier.model_ir_exports_line
|
||||
msgid "Exports Line"
|
||||
msgstr "导出行"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields.selection,name:jsonifier.selection__ir_exports_resolver__type__field
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__instance_method_name
|
||||
msgid "Function"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields.selection,name:jsonifier.selection__ir_exports_resolver__type__global
|
||||
msgid "Global"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__lang_id
|
||||
msgid "If set, the language in which the field is exported"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports__global_resolver_id
|
||||
msgid "If set, will apply the global resolver to the result"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__resolver_id
|
||||
msgid "If set, will apply the resolver on the field value"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports__language_agnostic
|
||||
msgid ""
|
||||
"If set, will set the lang to False when exporting lines without lang, "
|
||||
"otherwise it uses the lang in the given context to export these fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model_terms:ir.ui.view,arch_db:jsonifier.view_ir_exports
|
||||
msgid "Index"
|
||||
msgstr "索引"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__lang_id
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__language_agnostic
|
||||
msgid "Language Agnostic"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid "Name and Target must have the same hierarchy depth"
|
||||
msgstr "名称和别名必须具有相同的层次结构深度"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__python_code
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports__smart_search
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__smart_search
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__smart_search
|
||||
msgid "Smart Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_line__target
|
||||
msgid "Target"
|
||||
msgstr "别名"
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,help:jsonifier.field_ir_exports_line__target
|
||||
msgid ""
|
||||
"The complete path to the field where you can specify a target on the step as "
|
||||
"field:target"
|
||||
msgstr "字段的完整路径,您可以在其中指定步骤作为字段的别名:别名"
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/ir_exports_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The target must reference the same field as in name '%(name)s' not in "
|
||||
"'%(name_with_target)s'"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#: model:ir.model.fields,field_description:jsonifier.field_ir_exports_resolver__type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: jsonifier
|
||||
#. odoo-python
|
||||
#: code:addons/jsonifier/models/models.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "Wrong parser configuration for field: `%s`"
|
||||
msgstr "错误的解析器配置 %s"
|
||||
|
||||
#, python-format
|
||||
#~ msgid "The target must reference the same field as in name '%s' not in '%s'"
|
||||
#~ msgstr "别名必须引用与名称相同的字段'%s'不在'%s'"
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
from . import utils
|
||||
from . import models
|
||||
from . import ir_exports
|
||||
from . import ir_exports_line
|
||||
from . import ir_exports_resolver
|
||||
|
|
@ -0,0 +1,124 @@
|
|||
# © 2017 Akretion (http://www.akretion.com)
|
||||
# Sébastien BEAU <sebastien.beau@akretion.com>
|
||||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
||||
|
||||
from collections import OrderedDict
|
||||
|
||||
from odoo import fields, models
|
||||
from odoo.tools import ormcache
|
||||
|
||||
|
||||
def partition(line, accessor):
|
||||
"""Partition a recordset according to an accessor (e.g. a lambda).
|
||||
Returns a dictionary whose keys are the values obtained from accessor,
|
||||
and values are the items that have this value.
|
||||
Example: partition([{"name": "ax"}, {"name": "by"}], lambda x: "x" in x["name"])
|
||||
=> {True: [{"name": "ax"}], False: [{"name": "by"}]}
|
||||
"""
|
||||
result = {}
|
||||
for item in line:
|
||||
key = accessor(item)
|
||||
if key not in result:
|
||||
result[key] = []
|
||||
result[key].append(item)
|
||||
return result
|
||||
|
||||
|
||||
def update_dict(data, fields, options):
|
||||
"""Contruct a tree of fields.
|
||||
|
||||
Example:
|
||||
|
||||
{
|
||||
"name": True,
|
||||
"resource": True,
|
||||
}
|
||||
|
||||
Order of keys is important.
|
||||
"""
|
||||
field = fields[0]
|
||||
if len(fields) == 1:
|
||||
if field == ".id":
|
||||
field = "id"
|
||||
data[field] = (True, options)
|
||||
else:
|
||||
if field not in data:
|
||||
data[field] = (False, OrderedDict())
|
||||
update_dict(data[field][1], fields[1:], options)
|
||||
|
||||
|
||||
def convert_dict(dict_parser):
|
||||
"""Convert dict returned by update_dict to list consistent w/ Odoo API.
|
||||
|
||||
The list is composed of strings (field names or targets) or tuples.
|
||||
"""
|
||||
parser = []
|
||||
for field, value in dict_parser.items():
|
||||
if value[0] is True: # is a leaf
|
||||
parser.append(field_dict(field, value[1]))
|
||||
else:
|
||||
parser.append((field_dict(field), convert_dict(value[1])))
|
||||
return parser
|
||||
|
||||
|
||||
def field_dict(field, options=None):
|
||||
"""Create a parser dict for the field field."""
|
||||
result = {"name": field.split(":")[0]}
|
||||
if len(field.split(":")) > 1:
|
||||
result["target"] = field.split(":")[1]
|
||||
for option in options or {}:
|
||||
if options[option]:
|
||||
result[option] = options[option]
|
||||
return result
|
||||
|
||||
|
||||
class IrExports(models.Model):
|
||||
_inherit = "ir.exports"
|
||||
|
||||
language_agnostic = fields.Boolean(
|
||||
default=False,
|
||||
help="If set, will set the lang to False when exporting lines without lang,"
|
||||
" otherwise it uses the lang in the given context to export these fields",
|
||||
)
|
||||
|
||||
global_resolver_id = fields.Many2one(
|
||||
comodel_name="ir.exports.resolver",
|
||||
string="Custom global resolver",
|
||||
domain="[('type', '=', 'global')]",
|
||||
help="If set, will apply the global resolver to the result",
|
||||
)
|
||||
|
||||
@ormcache(
|
||||
"self.language_agnostic",
|
||||
"self.global_resolver_id.id",
|
||||
"tuple(self.export_fields.mapped('write_date'))",
|
||||
)
|
||||
def get_json_parser(self):
|
||||
"""Creates a parser from ir.exports record and return it.
|
||||
|
||||
The final parser can be used to "jsonify" records of ir.export's model.
|
||||
"""
|
||||
self.ensure_one()
|
||||
parser = {}
|
||||
lang_to_lines = partition(self.export_fields, lambda l: l.lang_id.code)
|
||||
lang_parsers = {}
|
||||
for lang in lang_to_lines:
|
||||
dict_parser = OrderedDict()
|
||||
for line in lang_to_lines[lang]:
|
||||
names = line.name.split("/")
|
||||
if line.target:
|
||||
names = line.target.split("/")
|
||||
function = line.instance_method_name
|
||||
# resolver must be passed as ID to avoid cache issues
|
||||
options = {"resolver": line.resolver_id.id, "function": function}
|
||||
update_dict(dict_parser, names, options)
|
||||
lang_parsers[lang] = convert_dict(dict_parser)
|
||||
if list(lang_parsers.keys()) == [False]:
|
||||
parser["fields"] = lang_parsers[False]
|
||||
else:
|
||||
parser["langs"] = lang_parsers
|
||||
if self.global_resolver_id:
|
||||
parser["resolver"] = self.global_resolver_id.id
|
||||
if self.language_agnostic:
|
||||
parser["language_agnostic"] = self.language_agnostic
|
||||
return parser
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
# Copyright 2017 ACSONE SA/NV
|
||||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
|
||||
class IrExportsLine(models.Model):
|
||||
_inherit = "ir.exports.line"
|
||||
|
||||
target = fields.Char(
|
||||
help="The complete path to the field where you can specify a "
|
||||
"target on the step as field:target",
|
||||
)
|
||||
active = fields.Boolean(default=True)
|
||||
lang_id = fields.Many2one(
|
||||
comodel_name="res.lang",
|
||||
string="Language",
|
||||
help="If set, the language in which the field is exported",
|
||||
)
|
||||
resolver_id = fields.Many2one(
|
||||
comodel_name="ir.exports.resolver",
|
||||
string="Custom resolver",
|
||||
help="If set, will apply the resolver on the field value",
|
||||
)
|
||||
instance_method_name = fields.Char(
|
||||
string="Function",
|
||||
help="A method defined on the model that takes a record and a field_name",
|
||||
)
|
||||
|
||||
@api.constrains("resolver_id", "instance_method_name")
|
||||
def _check_function_resolver(self):
|
||||
for rec in self:
|
||||
if rec.resolver_id and rec.instance_method_name:
|
||||
msg = _("Either set a function or a resolver, not both.")
|
||||
raise ValidationError(msg)
|
||||
|
||||
@api.constrains("target", "name")
|
||||
def _check_target(self):
|
||||
for rec in self:
|
||||
if not rec.target:
|
||||
continue
|
||||
names = rec.name.split("/")
|
||||
names_with_target = rec.target.split("/")
|
||||
if len(names) != len(names_with_target):
|
||||
raise ValidationError(
|
||||
_("Name and Target must have the same hierarchy depth")
|
||||
)
|
||||
for name, name_with_target in zip(names, names_with_target):
|
||||
field_name = name_with_target.split(":")[0]
|
||||
if name != field_name:
|
||||
raise ValidationError(
|
||||
_(
|
||||
"The target must reference the same field as in "
|
||||
"name '%(name)s' not in '%(name_with_target)s'"
|
||||
)
|
||||
% dict(name=name, name_with_target=name_with_target)
|
||||
)
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
# Copyright 2020 ACSONE SA/NV
|
||||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||
|
||||
from odoo import fields, models
|
||||
from odoo.tools.safe_eval import safe_eval
|
||||
|
||||
help_message = [
|
||||
"Compute the result from 'value' by setting the variable 'result'.",
|
||||
"\n" "For fields resolvers:",
|
||||
":param record: the record",
|
||||
":param name: name of the field",
|
||||
":param value: value of the field",
|
||||
":param field_type: type of the field",
|
||||
"\n" "For global resolvers:",
|
||||
":param value: JSON dict",
|
||||
":param record: the record",
|
||||
"\n"
|
||||
"In both types, you can override the final json key."
|
||||
"\nTo achieve this, simply return a dict like: "
|
||||
"\n{'result': {'_value': $value, '_json_key': $new_json_key}}",
|
||||
]
|
||||
|
||||
|
||||
class FieldResolver(models.Model):
|
||||
"""Arbitrary function to process a field or a dict at export time."""
|
||||
|
||||
_name = "ir.exports.resolver"
|
||||
_description = "Export Resolver"
|
||||
|
||||
name = fields.Char()
|
||||
type = fields.Selection([("field", "Field"), ("global", "Global")])
|
||||
python_code = fields.Text(
|
||||
default="\n".join(["# " + h for h in help_message] + ["result = value"]),
|
||||
help="\n".join(help_message),
|
||||
)
|
||||
|
||||
def resolve(self, param, records):
|
||||
self.ensure_one()
|
||||
result = []
|
||||
context = records.env.context
|
||||
if self.type == "global":
|
||||
assert len(param) == len(records)
|
||||
for value, record in zip(param, records):
|
||||
values = {"value": value, "record": record, "context": context}
|
||||
safe_eval(self.python_code, values, mode="exec", nocopy=True)
|
||||
result.append(values["result"])
|
||||
else: # param is a field
|
||||
for record in records:
|
||||
values = {
|
||||
"record": record,
|
||||
"value": record[param.name],
|
||||
"name": param.name,
|
||||
"field_type": param.type,
|
||||
"context": context,
|
||||
}
|
||||
safe_eval(self.python_code, values, mode="exec", nocopy=True)
|
||||
result.append(values["result"])
|
||||
return result
|
||||
|
|
@ -0,0 +1,267 @@
|
|||
# Copyright 2017 Akretion (http://www.akretion.com)
|
||||
# Sébastien BEAU <sebastien.beau@akretion.com>
|
||||
# Raphaël Reverdy <raphael.reverdy@akretion.com>
|
||||
# Copyright 2020 Camptocamp SA (http://www.camptocamp.com)
|
||||
# Simone Orsi <simahawk@gmail.com>
|
||||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
||||
|
||||
import logging
|
||||
|
||||
from odoo import api, fields, models, tools
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.tools.misc import format_duration
|
||||
from odoo.tools.translate import _
|
||||
|
||||
from ..exceptions import SwallableException
|
||||
from .utils import convert_simple_to_full_parser
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class Base(models.AbstractModel):
|
||||
|
||||
_inherit = "base"
|
||||
|
||||
@api.model
|
||||
def __parse_field(self, parser_field):
|
||||
"""Deduct how to handle a field from its parser."""
|
||||
return parser_field if isinstance(parser_field, tuple) else (parser_field, None)
|
||||
|
||||
@api.model
|
||||
def _jsonify_bad_parser_error(self, field_name):
|
||||
raise UserError(_("Wrong parser configuration for field: `%s`") % field_name)
|
||||
|
||||
def _function_value(self, record, function, field_name):
|
||||
if function in dir(record):
|
||||
method = getattr(record, function, None)
|
||||
return method(field_name)
|
||||
elif callable(function):
|
||||
return function(record, field_name)
|
||||
else:
|
||||
return self._jsonify_bad_parser_error(field_name)
|
||||
|
||||
@api.model
|
||||
def _jsonify_value(self, field, value):
|
||||
"""Override this function to support new field types."""
|
||||
if value is False and field.type != "boolean":
|
||||
value = None
|
||||
elif field.type == "date":
|
||||
value = fields.Date.to_date(value).isoformat()
|
||||
elif field.type == "datetime":
|
||||
# Ensures value is a datetime
|
||||
value = fields.Datetime.to_datetime(value)
|
||||
value = value.isoformat()
|
||||
elif field.type in ("many2one", "reference"):
|
||||
value = value.display_name if value else None
|
||||
elif field.type in ("one2many", "many2many"):
|
||||
value = [v.display_name for v in value]
|
||||
return value
|
||||
|
||||
@api.model
|
||||
def _add_json_key(self, values, json_key, value):
|
||||
"""To manage defaults, you can use a specific resolver."""
|
||||
key, sep, marshaller = json_key.partition("=")
|
||||
if marshaller == "list": # sublist field
|
||||
if not values.get(key):
|
||||
values[key] = []
|
||||
values[key].append(value)
|
||||
else:
|
||||
values[key] = value
|
||||
|
||||
@api.model
|
||||
def _jsonify_record(self, parser, rec, root):
|
||||
"""JSONify one record (rec). Private function called by jsonify."""
|
||||
strict = self.env.context.get("jsonify_record_strict", False)
|
||||
for field in parser:
|
||||
field_dict, subparser = rec.__parse_field(field)
|
||||
function = field_dict.get("function")
|
||||
try:
|
||||
self._jsonify_record_validate_field(rec, field_dict, strict)
|
||||
except SwallableException:
|
||||
if not function:
|
||||
continue
|
||||
json_key = field_dict.get("target", field_dict["name"])
|
||||
if function:
|
||||
try:
|
||||
value = self._jsonify_record_handle_function(
|
||||
rec, field_dict, strict
|
||||
)
|
||||
except SwallableException:
|
||||
continue
|
||||
elif subparser:
|
||||
try:
|
||||
value = self._jsonify_record_handle_subparser(
|
||||
rec, field_dict, strict, subparser
|
||||
)
|
||||
except SwallableException:
|
||||
continue
|
||||
else:
|
||||
field = rec._fields[field_dict["name"]]
|
||||
value = rec._jsonify_value(field, rec[field.name])
|
||||
resolver = field_dict.get("resolver")
|
||||
if resolver:
|
||||
if isinstance(resolver, int):
|
||||
# cached versions of the parser are stored as integer
|
||||
resolver = self.env["ir.exports.resolver"].browse(resolver)
|
||||
value, json_key = self._jsonify_record_handle_resolver(
|
||||
rec, field, resolver, json_key
|
||||
)
|
||||
# whatever json value we have found in subparser or not ass a sister key
|
||||
# on the same level _fieldname_{json_key}
|
||||
if rec.env.context.get("with_fieldname"):
|
||||
json_key_fieldname = "_fieldname_" + json_key
|
||||
# check if we are in a subparser has already the fieldname sister keys
|
||||
fieldname_value = rec._fields[field_dict["name"]].string
|
||||
self._add_json_key(root, json_key_fieldname, fieldname_value)
|
||||
self._add_json_key(root, json_key, value)
|
||||
return root
|
||||
|
||||
def _jsonify_record_validate_field(self, rec, field_dict, strict):
|
||||
field_name = field_dict["name"]
|
||||
if field_name not in rec._fields:
|
||||
if strict:
|
||||
# let it fail
|
||||
rec._fields[field_name] # pylint: disable=pointless-statement
|
||||
else:
|
||||
if not tools.config["test_enable"]:
|
||||
# If running live, log proper error
|
||||
# so that techies can track it down
|
||||
_logger.warning(
|
||||
"%(model)s.%(fname)s not available",
|
||||
{"model": self._name, "fname": field_name},
|
||||
)
|
||||
raise SwallableException()
|
||||
return True
|
||||
|
||||
def _jsonify_record_handle_function(self, rec, field_dict, strict):
|
||||
field_name = field_dict["name"]
|
||||
function = field_dict["function"]
|
||||
try:
|
||||
return self._function_value(rec, function, field_name)
|
||||
except UserError as err:
|
||||
if strict:
|
||||
raise
|
||||
if not tools.config["test_enable"]:
|
||||
_logger.error(
|
||||
"%(model)s.%(func)s not available",
|
||||
{"model": self._name, "func": str(function)},
|
||||
)
|
||||
raise SwallableException() from err
|
||||
|
||||
def _jsonify_record_handle_subparser(self, rec, field_dict, strict, subparser):
|
||||
field_name = field_dict["name"]
|
||||
field = rec._fields[field_name]
|
||||
if not (field.relational or field.type == "reference"):
|
||||
if strict:
|
||||
self._jsonify_bad_parser_error(field_name)
|
||||
if not tools.config["test_enable"]:
|
||||
_logger.error(
|
||||
"%(model)s.%(fname)s not relational",
|
||||
{"model": self._name, "fname": field_name},
|
||||
)
|
||||
raise SwallableException()
|
||||
value = [self._jsonify_record(subparser, r, {}) for r in rec[field_name]]
|
||||
|
||||
if field.type in ("many2one", "reference"):
|
||||
value = value[0] if value else None
|
||||
|
||||
return value
|
||||
|
||||
def _jsonify_record_handle_resolver(self, rec, field, resolver, json_key):
|
||||
value = rec._jsonify_value(field, rec[field.name])
|
||||
value = resolver.resolve(field, rec)[0] if resolver else value
|
||||
if isinstance(value, dict) and "_json_key" in value and "_value" in value:
|
||||
# Allow override of json_key.
|
||||
# In this case,
|
||||
# the final value must be encapsulated into _value key
|
||||
value, json_key = value["_value"], value["_json_key"]
|
||||
return value, json_key
|
||||
|
||||
def jsonify(self, parser, one=False, with_fieldname=False):
|
||||
"""Convert the record according to the given parser.
|
||||
|
||||
Example of (simple) parser:
|
||||
parser = [
|
||||
'name',
|
||||
'number',
|
||||
'create_date',
|
||||
('partner_id', ['id', 'display_name', 'ref'])
|
||||
('shipping_id', callable)
|
||||
('delivery_id', "record_method")
|
||||
('line_id', ['id', ('product_id', ['name']), 'price_unit'])
|
||||
]
|
||||
|
||||
In order to be consistent with the Odoo API the jsonify method always
|
||||
returns a list of objects even if there is only one element in input.
|
||||
You can change this behavior by passing `one=True` to get only one element.
|
||||
|
||||
By default the key into the JSON is the name of the field extracted
|
||||
from the model. If you need to specify an alternate name to use as
|
||||
key, you can define your mapping as follow into the parser definition:
|
||||
|
||||
parser = [
|
||||
'field_name:json_key'
|
||||
]
|
||||
|
||||
"""
|
||||
if one:
|
||||
self.ensure_one()
|
||||
if isinstance(parser, list):
|
||||
parser = convert_simple_to_full_parser(parser)
|
||||
resolver = parser.get("resolver")
|
||||
if isinstance(resolver, int):
|
||||
# cached versions of the parser are stored as integer
|
||||
resolver = self.env["ir.exports.resolver"].browse(resolver)
|
||||
results = [{} for record in self]
|
||||
parsers = {False: parser["fields"]} if "fields" in parser else parser["langs"]
|
||||
for lang in parsers:
|
||||
translate = lang or parser.get("language_agnostic")
|
||||
new_ctx = {}
|
||||
if translate:
|
||||
new_ctx["lang"] = lang
|
||||
if with_fieldname:
|
||||
new_ctx["with_fieldname"] = True
|
||||
records = self.with_context(**new_ctx) if new_ctx else self
|
||||
for record, json in zip(records, results):
|
||||
self._jsonify_record(parsers[lang], record, json)
|
||||
|
||||
if resolver:
|
||||
results = resolver.resolve(results, self)
|
||||
return results[0] if one else results
|
||||
|
||||
# HELPERS
|
||||
|
||||
def _jsonify_m2o_to_id(self, fname):
|
||||
"""Helper to get an ID only from a m2o field.
|
||||
|
||||
Example:
|
||||
|
||||
<field name="name">m2o_id</field>
|
||||
<field name="target">m2o_id:rel_id</field>
|
||||
<field name="instance_method_name">_jsonify_m2o_to_id</field>
|
||||
|
||||
"""
|
||||
return self[fname].id
|
||||
|
||||
def _jsonify_x2m_to_ids(self, fname):
|
||||
"""Helper to get a list of IDs only from a o2m or m2m field.
|
||||
|
||||
Example:
|
||||
|
||||
<field name="name">m2m_ids</field>
|
||||
<field name="target">m2m_ids:rel_ids</field>
|
||||
<field name="instance_method_name">_jsonify_x2m_to_ids</field>
|
||||
|
||||
"""
|
||||
return self[fname].ids
|
||||
|
||||
def _jsonify_format_duration(self, fname):
|
||||
"""Helper to format a Float-like duration to string 00:00.
|
||||
|
||||
Example:
|
||||
|
||||
<field name="name">duration</field>
|
||||
<field name="instance_method_name">_jsonify_format_duration</field>
|
||||
|
||||
"""
|
||||
return format_duration(self[fname])
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
def convert_simple_to_full_parser(parser):
|
||||
"""Convert a simple API style parser to a full parser"""
|
||||
assert isinstance(parser, list)
|
||||
return {"fields": _convert_parser(parser)}
|
||||
|
||||
|
||||
def _convert_field(fld, function=None):
|
||||
"""Return a dict from the string encoding a field to export.
|
||||
The : is used as a separator to specify a target, if any.
|
||||
"""
|
||||
name, sep, target = fld.partition(":")
|
||||
field_dict = {"name": name}
|
||||
if target:
|
||||
field_dict["target"] = target
|
||||
if function:
|
||||
field_dict["function"] = function
|
||||
return field_dict
|
||||
|
||||
|
||||
def _convert_parser(parser):
|
||||
"""Recursively process each list to replace encoded fields as string
|
||||
by dicts specifying each attribute by its relevant key.
|
||||
"""
|
||||
result = []
|
||||
for line in parser:
|
||||
if isinstance(line, str):
|
||||
field_def = _convert_field(line)
|
||||
else:
|
||||
fld, sub = line
|
||||
if callable(sub) or isinstance(sub, str):
|
||||
field_def = _convert_field(fld, sub)
|
||||
else:
|
||||
field_def = (_convert_field(fld), _convert_parser(sub))
|
||||
result.append(field_def)
|
||||
return result
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
* BEAU Sébastien <sebastien.beau@akretion.com>
|
||||
* Raphaël Reverdy <raphael.reverdy@akretion.com>
|
||||
* Laurent Mignon <laurent.mignon@acsone.eu>
|
||||
* Nans Lefebvre <nans.lefebvre@acsone.eu>
|
||||
* Simone Orsi <simone.orsi@camptocamp.com>
|
||||
* Iván Todorovich <ivan.todorovich@camptocamp.com>
|
||||
|
|
@ -0,0 +1,166 @@
|
|||
This module adds a 'jsonify' method to every model of the ORM.
|
||||
It works on the current recordset and requires a single argument 'parser'
|
||||
that specify the field to extract.
|
||||
|
||||
Example of a simple parser:
|
||||
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
parser = [
|
||||
'name',
|
||||
'number',
|
||||
'create_date',
|
||||
('partner_id', ['id', 'display_name', 'ref'])
|
||||
('line_id', ['id', ('product_id', ['name']), 'price_unit'])
|
||||
]
|
||||
|
||||
In order to be consistent with the Odoo API the jsonify method always
|
||||
returns a list of objects even if there is only one element in the recordset.
|
||||
|
||||
By default the key into the JSON is the name of the field extracted
|
||||
from the model. If you need to specify an alternate name to use as key, you
|
||||
can define your mapping as follow into the parser definition:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
parser = [
|
||||
'field_name:json_key'
|
||||
]
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
|
||||
parser = [
|
||||
'name',
|
||||
'number',
|
||||
'create_date:creationDate',
|
||||
('partner_id:partners', ['id', 'display_name', 'ref'])
|
||||
('line_id:lines', ['id', ('product_id', ['name']), 'price_unit'])
|
||||
]
|
||||
|
||||
If you need to parse the value of a field in a custom way,
|
||||
you can pass a callable or the name of a method on the model:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
parser = [
|
||||
('name', "jsonify_name") # method name
|
||||
('number', lambda rec, field_name: rec[field_name] * 2)) # callable
|
||||
]
|
||||
|
||||
Also the module provide a method "get_json_parser" on the ir.exports object
|
||||
that generate a parser from an ir.exports configuration.
|
||||
|
||||
Further features are available for advanced uses.
|
||||
It defines a simple "resolver" model that has a "python_code" field and a resolve
|
||||
function so that arbitrary functions can be configured to transform fields,
|
||||
or process the resulting dictionary.
|
||||
It is also to specify a lang to extract the translation of any given field.
|
||||
|
||||
To use these features, a full parser follows the following structure:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
parser = {
|
||||
"resolver": 3,
|
||||
"language_agnostic": True,
|
||||
"langs": {
|
||||
False: [
|
||||
{'name': 'description'},
|
||||
{'name': 'number', 'resolver': 5},
|
||||
({'name': 'partner_id', 'target': 'partner'}, [{'name': 'display_name'}])
|
||||
],
|
||||
'fr_FR': [
|
||||
{'name': 'description', 'target': 'descriptions_fr'},
|
||||
({'name': 'partner_id', 'target': 'partner'}, [{'name': 'description', 'target': 'description_fr'}])
|
||||
],
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
One would get a result having this structure (note that the translated fields are merged in the same dictionary):
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
exported_json == {
|
||||
"description": "English description",
|
||||
"description_fr": "French description, voilà",
|
||||
"number": 42,
|
||||
"partner": {
|
||||
"display_name": "partner name",
|
||||
"description_fr": "French description of that partner",
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
Note that a resolver can be passed either as a recordset or as an id, so as to be fully serializable.
|
||||
A slightly simpler version in case the translation of fields is not needed,
|
||||
but other features like custom resolvers are:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
parser = {
|
||||
"resolver": 3,
|
||||
"fields": [
|
||||
{'name': 'description'},
|
||||
{'name': 'number', 'resolver': 5},
|
||||
({'name': 'partner_id', 'target': 'partners'}, [{'name': 'display_name'}]),
|
||||
],
|
||||
}
|
||||
|
||||
|
||||
By passing the `fields` key instead of `langs`, we have essentially the same behaviour as simple parsers,
|
||||
with the added benefit of being able to use resolvers.
|
||||
|
||||
Standard use-cases of resolvers are:
|
||||
- give field-specific defaults (e.g. `""` instead of `None`)
|
||||
- cast a field type (e.g. `int()`)
|
||||
- alias a particular field for a specific export
|
||||
- ...
|
||||
|
||||
A simple parser is simply translated into a full parser at export.
|
||||
|
||||
If the global resolver is given, then the json_dict goes through:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
resolver.resolve(dict, record)
|
||||
|
||||
Which allows to add external data from the context or transform the dictionary
|
||||
if necessary. Similarly if given for a field the resolver evaluates the result.
|
||||
|
||||
It is possible for a target to have a marshaller by ending the target with '=list':
|
||||
in that case the result is put into a list.
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
parser = {
|
||||
fields: [
|
||||
{'name': 'name'},
|
||||
{'name': 'field_1', 'target': 'customTags=list'},
|
||||
{'name': 'field_2', 'target': 'customTags=list'},
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
Would result in the following JSON structure:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
{
|
||||
'name': 'record_name',
|
||||
'customTags': ['field_1_value', 'field_2_value'],
|
||||
}
|
||||
|
||||
The intended use-case is to be compatible with APIs that require all translated
|
||||
parameters to be exported simultaneously, and ask for custom properties to be
|
||||
put in a sub-dictionary.
|
||||
Since it is often the case that some of these requirements are optional,
|
||||
new requirements could be met without needing to add field or change any code.
|
||||
|
||||
Note that the export values with the simple parser depends on the record's lang;
|
||||
this is in contrast with full parsers which are designed to be language agnostic.
|
||||
|
||||
|
||||
NOTE: this module was named `base_jsonify` till version 14.0.1.5.0.
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
with_fieldname parameter
|
||||
==========================
|
||||
|
||||
The with_fieldname option of jsonify() method, when true, will inject on
|
||||
the same level of the data "_fieldname_$field" keys that will
|
||||
contain the field name, in the language of the current user.
|
||||
|
||||
|
||||
Examples of with_fieldname usage:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
# example 1
|
||||
parser = [('name')]
|
||||
a.jsonify(parser=parser)
|
||||
[{'name': 'SO3996'}]
|
||||
>>> a.jsonify(parser=parser, with_fieldname=False)
|
||||
[{'name': 'SO3996'}]
|
||||
>>> a.jsonify(parser=parser, with_fieldname=True)
|
||||
[{'fieldname_name': 'Order Reference', 'name': 'SO3996'}}]
|
||||
|
||||
|
||||
# example 2 - with a subparser-
|
||||
parser=['name', 'create_date', ('order_line', ['id' , 'product_uom', 'is_expense'])]
|
||||
>>> a.jsonify(parser=parser, with_fieldname=False)
|
||||
[{'name': 'SO3996', 'create_date': '2015-06-02T12:18:26.279909+00:00', 'order_line': [{'id': 16649, 'product_uom': 'stuks', 'is_expense': False}, {'id': 16651, 'product_uom': 'stuks', 'is_expense': False}, {'id': 16650, 'product_uom': 'stuks', 'is_expense': False}]}]
|
||||
>>> a.jsonify(parser=parser, with_fieldname=True)
|
||||
[{'fieldname_name': 'Order Reference', 'name': 'SO3996', 'fieldname_create_date': 'Creation Date', 'create_date': '2015-06-02T12:18:26.279909+00:00', 'fieldname_order_line': 'Order Lines', 'order_line': [{'fieldname_id': 'ID', 'id': 16649, 'fieldname_product_uom': 'Unit of Measure', 'product_uom': 'stuks', 'fieldname_is_expense': 'Is expense', 'is_expense': False}]}]
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_ir_exports_resolver,ir.exports.resolver,model_ir_exports_resolver,base.group_system,1,1,1,1
|
||||
|
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
|
|
@ -0,0 +1,590 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
||||
<title>JSONifier</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
Despite the name, some widely supported CSS2 features are used.
|
||||
|
||||
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: gray; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic, pre.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="jsonifier">
|
||||
<h1 class="title">JSONifier</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:b4e38b8c4c0fb183e4fee0005cba8864f90c1da9705d957c0b2dd379a7ce6987
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<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/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/licence-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/server-tools/tree/16.0/jsonifier"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-jsonifier"><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/server-tools&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module adds a ‘jsonify’ method to every model of the ORM.
|
||||
It works on the current recordset and requires a single argument ‘parser’
|
||||
that specify the field to extract.</p>
|
||||
<p>Example of a simple parser:</p>
|
||||
<pre class="code python literal-block">
|
||||
<span class="n">parser</span> <span class="o">=</span> <span class="p">[</span><span class="w">
|
||||
</span> <span class="s1">'name'</span><span class="p">,</span><span class="w">
|
||||
</span> <span class="s1">'number'</span><span class="p">,</span><span class="w">
|
||||
</span> <span class="s1">'create_date'</span><span class="p">,</span><span class="w">
|
||||
</span> <span class="p">(</span><span class="s1">'partner_id'</span><span class="p">,</span> <span class="p">[</span><span class="s1">'id'</span><span class="p">,</span> <span class="s1">'display_name'</span><span class="p">,</span> <span class="s1">'ref'</span><span class="p">])</span><span class="w">
|
||||
</span> <span class="p">(</span><span class="s1">'line_id'</span><span class="p">,</span> <span class="p">[</span><span class="s1">'id'</span><span class="p">,</span> <span class="p">(</span><span class="s1">'product_id'</span><span class="p">,</span> <span class="p">[</span><span class="s1">'name'</span><span class="p">]),</span> <span class="s1">'price_unit'</span><span class="p">])</span><span class="w">
|
||||
</span><span class="p">]</span>
|
||||
</pre>
|
||||
<p>In order to be consistent with the Odoo API the jsonify method always
|
||||
returns a list of objects even if there is only one element in the recordset.</p>
|
||||
<p>By default the key into the JSON is the name of the field extracted
|
||||
from the model. If you need to specify an alternate name to use as key, you
|
||||
can define your mapping as follow into the parser definition:</p>
|
||||
<pre class="code python literal-block">
|
||||
<span class="n">parser</span> <span class="o">=</span> <span class="p">[</span><span class="w">
|
||||
</span> <span class="s1">'field_name:json_key'</span><span class="w">
|
||||
</span><span class="p">]</span>
|
||||
</pre>
|
||||
<pre class="code python literal-block">
|
||||
<span class="n">parser</span> <span class="o">=</span> <span class="p">[</span><span class="w">
|
||||
</span> <span class="s1">'name'</span><span class="p">,</span><span class="w">
|
||||
</span> <span class="s1">'number'</span><span class="p">,</span><span class="w">
|
||||
</span> <span class="s1">'create_date:creationDate'</span><span class="p">,</span><span class="w">
|
||||
</span> <span class="p">(</span><span class="s1">'partner_id:partners'</span><span class="p">,</span> <span class="p">[</span><span class="s1">'id'</span><span class="p">,</span> <span class="s1">'display_name'</span><span class="p">,</span> <span class="s1">'ref'</span><span class="p">])</span><span class="w">
|
||||
</span> <span class="p">(</span><span class="s1">'line_id:lines'</span><span class="p">,</span> <span class="p">[</span><span class="s1">'id'</span><span class="p">,</span> <span class="p">(</span><span class="s1">'product_id'</span><span class="p">,</span> <span class="p">[</span><span class="s1">'name'</span><span class="p">]),</span> <span class="s1">'price_unit'</span><span class="p">])</span><span class="w">
|
||||
</span><span class="p">]</span>
|
||||
</pre>
|
||||
<p>If you need to parse the value of a field in a custom way,
|
||||
you can pass a callable or the name of a method on the model:</p>
|
||||
<pre class="code python literal-block">
|
||||
<span class="n">parser</span> <span class="o">=</span> <span class="p">[</span><span class="w">
|
||||
</span> <span class="p">(</span><span class="s1">'name'</span><span class="p">,</span> <span class="s2">"jsonify_name"</span><span class="p">)</span> <span class="c1"># method name</span><span class="w">
|
||||
</span> <span class="p">(</span><span class="s1">'number'</span><span class="p">,</span> <span class="k">lambda</span> <span class="n">rec</span><span class="p">,</span> <span class="n">field_name</span><span class="p">:</span> <span class="n">rec</span><span class="p">[</span><span class="n">field_name</span><span class="p">]</span> <span class="o">*</span> <span class="mi">2</span><span class="p">))</span> <span class="c1"># callable</span><span class="w">
|
||||
</span><span class="p">]</span>
|
||||
</pre>
|
||||
<p>Also the module provide a method “get_json_parser” on the ir.exports object
|
||||
that generate a parser from an ir.exports configuration.</p>
|
||||
<p>Further features are available for advanced uses.
|
||||
It defines a simple “resolver” model that has a “python_code” field and a resolve
|
||||
function so that arbitrary functions can be configured to transform fields,
|
||||
or process the resulting dictionary.
|
||||
It is also to specify a lang to extract the translation of any given field.</p>
|
||||
<p>To use these features, a full parser follows the following structure:</p>
|
||||
<pre class="code python literal-block">
|
||||
<span class="n">parser</span> <span class="o">=</span> <span class="p">{</span><span class="w">
|
||||
</span> <span class="s2">"resolver"</span><span class="p">:</span> <span class="mi">3</span><span class="p">,</span><span class="w">
|
||||
</span> <span class="s2">"language_agnostic"</span><span class="p">:</span> <span class="kc">True</span><span class="p">,</span><span class="w">
|
||||
</span> <span class="s2">"langs"</span><span class="p">:</span> <span class="p">{</span><span class="w">
|
||||
</span> <span class="kc">False</span><span class="p">:</span> <span class="p">[</span><span class="w">
|
||||
</span> <span class="p">{</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'description'</span><span class="p">},</span><span class="w">
|
||||
</span> <span class="p">{</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'number'</span><span class="p">,</span> <span class="s1">'resolver'</span><span class="p">:</span> <span class="mi">5</span><span class="p">},</span><span class="w">
|
||||
</span> <span class="p">({</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'partner_id'</span><span class="p">,</span> <span class="s1">'target'</span><span class="p">:</span> <span class="s1">'partner'</span><span class="p">},</span> <span class="p">[{</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'display_name'</span><span class="p">}])</span><span class="w">
|
||||
</span> <span class="p">],</span><span class="w">
|
||||
</span> <span class="s1">'fr_FR'</span><span class="p">:</span> <span class="p">[</span><span class="w">
|
||||
</span> <span class="p">{</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'description'</span><span class="p">,</span> <span class="s1">'target'</span><span class="p">:</span> <span class="s1">'descriptions_fr'</span><span class="p">},</span><span class="w">
|
||||
</span> <span class="p">({</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'partner_id'</span><span class="p">,</span> <span class="s1">'target'</span><span class="p">:</span> <span class="s1">'partner'</span><span class="p">},</span> <span class="p">[{</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'description'</span><span class="p">,</span> <span class="s1">'target'</span><span class="p">:</span> <span class="s1">'description_fr'</span><span class="p">}])</span><span class="w">
|
||||
</span> <span class="p">],</span><span class="w">
|
||||
</span> <span class="p">}</span><span class="w">
|
||||
</span><span class="p">}</span>
|
||||
</pre>
|
||||
<p>One would get a result having this structure (note that the translated fields are merged in the same dictionary):</p>
|
||||
<pre class="code python literal-block">
|
||||
<span class="n">exported_json</span> <span class="o">==</span> <span class="p">{</span><span class="w">
|
||||
</span> <span class="s2">"description"</span><span class="p">:</span> <span class="s2">"English description"</span><span class="p">,</span><span class="w">
|
||||
</span> <span class="s2">"description_fr"</span><span class="p">:</span> <span class="s2">"French description, voilà"</span><span class="p">,</span><span class="w">
|
||||
</span> <span class="s2">"number"</span><span class="p">:</span> <span class="mi">42</span><span class="p">,</span><span class="w">
|
||||
</span> <span class="s2">"partner"</span><span class="p">:</span> <span class="p">{</span><span class="w">
|
||||
</span> <span class="s2">"display_name"</span><span class="p">:</span> <span class="s2">"partner name"</span><span class="p">,</span><span class="w">
|
||||
</span> <span class="s2">"description_fr"</span><span class="p">:</span> <span class="s2">"French description of that partner"</span><span class="p">,</span><span class="w">
|
||||
</span> <span class="p">},</span><span class="w">
|
||||
</span><span class="p">}</span>
|
||||
</pre>
|
||||
<p>Note that a resolver can be passed either as a recordset or as an id, so as to be fully serializable.
|
||||
A slightly simpler version in case the translation of fields is not needed,
|
||||
but other features like custom resolvers are:</p>
|
||||
<pre class="code python literal-block">
|
||||
<span class="n">parser</span> <span class="o">=</span> <span class="p">{</span><span class="w">
|
||||
</span> <span class="s2">"resolver"</span><span class="p">:</span> <span class="mi">3</span><span class="p">,</span><span class="w">
|
||||
</span> <span class="s2">"fields"</span><span class="p">:</span> <span class="p">[</span><span class="w">
|
||||
</span> <span class="p">{</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'description'</span><span class="p">},</span><span class="w">
|
||||
</span> <span class="p">{</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'number'</span><span class="p">,</span> <span class="s1">'resolver'</span><span class="p">:</span> <span class="mi">5</span><span class="p">},</span><span class="w">
|
||||
</span> <span class="p">({</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'partner_id'</span><span class="p">,</span> <span class="s1">'target'</span><span class="p">:</span> <span class="s1">'partners'</span><span class="p">},</span> <span class="p">[{</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'display_name'</span><span class="p">}]),</span><span class="w">
|
||||
</span> <span class="p">],</span><span class="w">
|
||||
</span><span class="p">}</span>
|
||||
</pre>
|
||||
<p>By passing the <cite>fields</cite> key instead of <cite>langs</cite>, we have essentially the same behaviour as simple parsers,
|
||||
with the added benefit of being able to use resolvers.</p>
|
||||
<p>Standard use-cases of resolvers are:
|
||||
- give field-specific defaults (e.g. <cite>“”</cite> instead of <cite>None</cite>)
|
||||
- cast a field type (e.g. <cite>int()</cite>)
|
||||
- alias a particular field for a specific export
|
||||
- …</p>
|
||||
<p>A simple parser is simply translated into a full parser at export.</p>
|
||||
<p>If the global resolver is given, then the json_dict goes through:</p>
|
||||
<pre class="code python literal-block">
|
||||
<span class="n">resolver</span><span class="o">.</span><span class="n">resolve</span><span class="p">(</span><span class="nb">dict</span><span class="p">,</span> <span class="n">record</span><span class="p">)</span>
|
||||
</pre>
|
||||
<p>Which allows to add external data from the context or transform the dictionary
|
||||
if necessary. Similarly if given for a field the resolver evaluates the result.</p>
|
||||
<p>It is possible for a target to have a marshaller by ending the target with ‘=list’:
|
||||
in that case the result is put into a list.</p>
|
||||
<pre class="code python literal-block">
|
||||
<span class="n">parser</span> <span class="o">=</span> <span class="p">{</span><span class="w">
|
||||
</span> <span class="n">fields</span><span class="p">:</span> <span class="p">[</span><span class="w">
|
||||
</span> <span class="p">{</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'name'</span><span class="p">},</span><span class="w">
|
||||
</span> <span class="p">{</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'field_1'</span><span class="p">,</span> <span class="s1">'target'</span><span class="p">:</span> <span class="s1">'customTags=list'</span><span class="p">},</span><span class="w">
|
||||
</span> <span class="p">{</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'field_2'</span><span class="p">,</span> <span class="s1">'target'</span><span class="p">:</span> <span class="s1">'customTags=list'</span><span class="p">},</span><span class="w">
|
||||
</span> <span class="p">]</span><span class="w">
|
||||
</span><span class="p">}</span>
|
||||
</pre>
|
||||
<p>Would result in the following JSON structure:</p>
|
||||
<pre class="code python literal-block">
|
||||
<span class="p">{</span><span class="w">
|
||||
</span> <span class="s1">'name'</span><span class="p">:</span> <span class="s1">'record_name'</span><span class="p">,</span><span class="w">
|
||||
</span> <span class="s1">'customTags'</span><span class="p">:</span> <span class="p">[</span><span class="s1">'field_1_value'</span><span class="p">,</span> <span class="s1">'field_2_value'</span><span class="p">],</span><span class="w">
|
||||
</span><span class="p">}</span>
|
||||
</pre>
|
||||
<p>The intended use-case is to be compatible with APIs that require all translated
|
||||
parameters to be exported simultaneously, and ask for custom properties to be
|
||||
put in a sub-dictionary.
|
||||
Since it is often the case that some of these requirements are optional,
|
||||
new requirements could be met without needing to add field or change any code.</p>
|
||||
<p>Note that the export values with the simple parser depends on the record’s lang;
|
||||
this is in contrast with full parsers which are designed to be language agnostic.</p>
|
||||
<p>NOTE: this module was named <cite>base_jsonify</cite> till version 14.0.1.5.0.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#usage" id="toc-entry-1">Usage</a></li>
|
||||
<li><a class="reference internal" href="#with-fieldname-parameter" id="toc-entry-2">with_fieldname parameter</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-3">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="toc-entry-4">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="toc-entry-5">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="toc-entry-6">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="toc-entry-7">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="usage">
|
||||
<h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
|
||||
</div>
|
||||
<div class="section" id="with-fieldname-parameter">
|
||||
<h1><a class="toc-backref" href="#toc-entry-2">with_fieldname parameter</a></h1>
|
||||
<p>The with_fieldname option of jsonify() method, when true, will inject on
|
||||
the same level of the data “_fieldname_$field” keys that will
|
||||
contain the field name, in the language of the current user.</p>
|
||||
<blockquote>
|
||||
Examples of with_fieldname usage:</blockquote>
|
||||
<pre class="code python literal-block">
|
||||
<span class="c1"># example 1</span><span class="w">
|
||||
</span><span class="n">parser</span> <span class="o">=</span> <span class="p">[(</span><span class="s1">'name'</span><span class="p">)]</span><span class="w">
|
||||
</span><span class="n">a</span><span class="o">.</span><span class="n">jsonify</span><span class="p">(</span><span class="n">parser</span><span class="o">=</span><span class="n">parser</span><span class="p">)</span><span class="w">
|
||||
</span><span class="p">[{</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'SO3996'</span><span class="p">}]</span><span class="w">
|
||||
</span><span class="o">>>></span> <span class="n">a</span><span class="o">.</span><span class="n">jsonify</span><span class="p">(</span><span class="n">parser</span><span class="o">=</span><span class="n">parser</span><span class="p">,</span> <span class="n">with_fieldname</span><span class="o">=</span><span class="kc">False</span><span class="p">)</span><span class="w">
|
||||
</span><span class="p">[{</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'SO3996'</span><span class="p">}]</span><span class="w">
|
||||
</span><span class="o">>>></span> <span class="n">a</span><span class="o">.</span><span class="n">jsonify</span><span class="p">(</span><span class="n">parser</span><span class="o">=</span><span class="n">parser</span><span class="p">,</span> <span class="n">with_fieldname</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span><span class="w">
|
||||
</span><span class="p">[{</span><span class="s1">'fieldname_name'</span><span class="p">:</span> <span class="s1">'Order Reference'</span><span class="p">,</span> <span class="s1">'name'</span><span class="p">:</span> <span class="s1">'SO3996'</span><span class="p">}}]</span><span class="w">
|
||||
|
||||
|
||||
</span><span class="c1"># example 2 - with a subparser-</span><span class="w">
|
||||
</span><span class="n">parser</span><span class="o">=</span><span class="p">[</span><span class="s1">'name'</span><span class="p">,</span> <span class="s1">'create_date'</span><span class="p">,</span> <span class="p">(</span><span class="s1">'order_line'</span><span class="p">,</span> <span class="p">[</span><span class="s1">'id'</span> <span class="p">,</span> <span class="s1">'product_uom'</span><span class="p">,</span> <span class="s1">'is_expense'</span><span class="p">])]</span><span class="w">
|
||||
</span><span class="o">>>></span> <span class="n">a</span><span class="o">.</span><span class="n">jsonify</span><span class="p">(</span><span class="n">parser</span><span class="o">=</span><span class="n">parser</span><span class="p">,</span> <span class="n">with_fieldname</span><span class="o">=</span><span class="kc">False</span><span class="p">)</span><span class="w">
|
||||
</span><span class="p">[{</span><span class="s1">'name'</span><span class="p">:</span> <span class="s1">'SO3996'</span><span class="p">,</span> <span class="s1">'create_date'</span><span class="p">:</span> <span class="s1">'2015-06-02T12:18:26.279909+00:00'</span><span class="p">,</span> <span class="s1">'order_line'</span><span class="p">:</span> <span class="p">[{</span><span class="s1">'id'</span><span class="p">:</span> <span class="mi">16649</span><span class="p">,</span> <span class="s1">'product_uom'</span><span class="p">:</span> <span class="s1">'stuks'</span><span class="p">,</span> <span class="s1">'is_expense'</span><span class="p">:</span> <span class="kc">False</span><span class="p">},</span> <span class="p">{</span><span class="s1">'id'</span><span class="p">:</span> <span class="mi">16651</span><span class="p">,</span> <span class="s1">'product_uom'</span><span class="p">:</span> <span class="s1">'stuks'</span><span class="p">,</span> <span class="s1">'is_expense'</span><span class="p">:</span> <span class="kc">False</span><span class="p">},</span> <span class="p">{</span><span class="s1">'id'</span><span class="p">:</span> <span class="mi">16650</span><span class="p">,</span> <span class="s1">'product_uom'</span><span class="p">:</span> <span class="s1">'stuks'</span><span class="p">,</span> <span class="s1">'is_expense'</span><span class="p">:</span> <span class="kc">False</span><span class="p">}]}]</span><span class="w">
|
||||
</span><span class="o">>>></span> <span class="n">a</span><span class="o">.</span><span class="n">jsonify</span><span class="p">(</span><span class="n">parser</span><span class="o">=</span><span class="n">parser</span><span class="p">,</span> <span class="n">with_fieldname</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span><span class="w">
|
||||
</span><span class="p">[{</span><span class="s1">'fieldname_name'</span><span class="p">:</span> <span class="s1">'Order Reference'</span><span class="p">,</span> <span class="s1">'name'</span><span class="p">:</span> <span class="s1">'SO3996'</span><span class="p">,</span> <span class="s1">'fieldname_create_date'</span><span class="p">:</span> <span class="s1">'Creation Date'</span><span class="p">,</span> <span class="s1">'create_date'</span><span class="p">:</span> <span class="s1">'2015-06-02T12:18:26.279909+00:00'</span><span class="p">,</span> <span class="s1">'fieldname_order_line'</span><span class="p">:</span> <span class="s1">'Order Lines'</span><span class="p">,</span> <span class="s1">'order_line'</span><span class="p">:</span> <span class="p">[{</span><span class="s1">'fieldname_id'</span><span class="p">:</span> <span class="s1">'ID'</span><span class="p">,</span> <span class="s1">'id'</span><span class="p">:</span> <span class="mi">16649</span><span class="p">,</span> <span class="s1">'fieldname_product_uom'</span><span class="p">:</span> <span class="s1">'Unit of Measure'</span><span class="p">,</span> <span class="s1">'product_uom'</span><span class="p">:</span> <span class="s1">'stuks'</span><span class="p">,</span> <span class="s1">'fieldname_is_expense'</span><span class="p">:</span> <span class="s1">'Is expense'</span><span class="p">,</span> <span class="s1">'is_expense'</span><span class="p">:</span> <span class="kc">False</span><span class="p">}]}]</span>
|
||||
</pre>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/server-tools/issues">GitHub Issues</a>.
|
||||
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
|
||||
<a class="reference external" href="https://github.com/OCA/server-tools/issues/new?body=module:%20jsonifier%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#toc-entry-4">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-5">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Akretion</li>
|
||||
<li>ACSONE</li>
|
||||
<li>Camptocamp</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-6">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>BEAU Sébastien <<a class="reference external" href="mailto:sebastien.beau@akretion.com">sebastien.beau@akretion.com</a>></li>
|
||||
<li>Raphaël Reverdy <<a class="reference external" href="mailto:raphael.reverdy@akretion.com">raphael.reverdy@akretion.com</a>></li>
|
||||
<li>Laurent Mignon <<a class="reference external" href="mailto:laurent.mignon@acsone.eu">laurent.mignon@acsone.eu</a>></li>
|
||||
<li>Nans Lefebvre <<a class="reference external" href="mailto:nans.lefebvre@acsone.eu">nans.lefebvre@acsone.eu</a>></li>
|
||||
<li>Simone Orsi <<a class="reference external" href="mailto:simone.orsi@camptocamp.com">simone.orsi@camptocamp.com</a>></li>
|
||||
<li>Iván Todorovich <<a class="reference external" href="mailto:ivan.todorovich@camptocamp.com">ivan.todorovich@camptocamp.com</a>></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org">
|
||||
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
||||
</a>
|
||||
<p>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.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/server-tools/tree/16.0/jsonifier">OCA/server-tools</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
from . import test_get_parser
|
||||
from . import test_helpers
|
||||
from . import test_ir_exports_line
|
||||
|
|
@ -0,0 +1,408 @@
|
|||
# Copyright 2017 ACSONE SA/NV
|
||||
# Copyright 2022 Camptocamp SA (http://www.camptocamp.com)
|
||||
# Simone Orsi <simahawk@gmail.com>
|
||||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||
|
||||
|
||||
from odoo import fields, tools
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.tests.common import TransactionCase
|
||||
|
||||
from ..models.utils import convert_simple_to_full_parser
|
||||
|
||||
|
||||
def jsonify_custom(self, field_name):
|
||||
return "yeah!"
|
||||
|
||||
|
||||
class TestParser(TransactionCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
# disable tracking test suite wise
|
||||
cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True))
|
||||
cls.env.user.tz = "Europe/Brussels"
|
||||
cls.partner = cls.env["res.partner"].create(
|
||||
{
|
||||
"name": "Akretion",
|
||||
"country_id": cls.env.ref("base.fr").id,
|
||||
"lang": "en_US", # default
|
||||
"category_id": [(0, 0, {"name": "Inovator"})],
|
||||
"child_ids": [
|
||||
(
|
||||
0,
|
||||
0,
|
||||
{
|
||||
"name": "Sebatien Beau",
|
||||
"country_id": cls.env.ref("base.fr").id,
|
||||
},
|
||||
)
|
||||
],
|
||||
"date": fields.Date.from_string("2019-10-31"),
|
||||
}
|
||||
)
|
||||
Langs = cls.env["res.lang"].with_context(active_test=False)
|
||||
cls.lang = Langs.search([("code", "=", "fr_FR")])
|
||||
cls.lang.active = True
|
||||
category = cls.env["res.partner.category"].create({"name": "name"})
|
||||
cls.translated_target = "name_{}".format(cls.lang.code)
|
||||
category.with_context(lang=cls.lang.code).write({"name": cls.translated_target})
|
||||
cls.global_resolver = cls.env["ir.exports.resolver"].create(
|
||||
{"python_code": "value['X'] = 'X'; result = value", "type": "global"}
|
||||
)
|
||||
cls.resolver = cls.env["ir.exports.resolver"].create(
|
||||
{"python_code": "result = value + '_pidgin'", "type": "field"}
|
||||
)
|
||||
cls.category_export = cls.env["ir.exports"].create(
|
||||
{
|
||||
"global_resolver_id": cls.global_resolver.id,
|
||||
"language_agnostic": True,
|
||||
"export_fields": [
|
||||
(0, 0, {"name": "name"}),
|
||||
(
|
||||
0,
|
||||
0,
|
||||
{
|
||||
"name": "name",
|
||||
"target": "name:{}".format(cls.translated_target),
|
||||
"lang_id": cls.lang.id,
|
||||
},
|
||||
),
|
||||
(
|
||||
0,
|
||||
0,
|
||||
{
|
||||
"name": "name",
|
||||
"target": "name:name_resolved",
|
||||
"resolver_id": cls.resolver.id,
|
||||
},
|
||||
),
|
||||
],
|
||||
}
|
||||
)
|
||||
cls.category = category.with_context(lang=None)
|
||||
cls.category_lang = category.with_context(lang=cls.lang.code)
|
||||
|
||||
def test_getting_parser(self):
|
||||
expected_parser = [
|
||||
"name",
|
||||
"active",
|
||||
"partner_latitude",
|
||||
"color",
|
||||
("category_id", ["name"]),
|
||||
("country_id", ["name", "code"]),
|
||||
(
|
||||
"child_ids",
|
||||
[
|
||||
"name",
|
||||
"id",
|
||||
"email",
|
||||
("country_id", ["name", "code"]),
|
||||
("child_ids", ["name"]),
|
||||
],
|
||||
),
|
||||
"lang",
|
||||
"comment",
|
||||
]
|
||||
|
||||
exporter = self.env.ref("jsonifier.ir_exp_partner")
|
||||
parser = exporter.get_json_parser()
|
||||
expected_full_parser = convert_simple_to_full_parser(expected_parser)
|
||||
self.assertEqual(parser, expected_full_parser)
|
||||
|
||||
# modify an ir.exports_line to put a target for a field
|
||||
self.env.ref("jsonifier.category_id_name").write(
|
||||
{"target": "category_id:category/name"}
|
||||
)
|
||||
expected_parser[4] = ("category_id:category", ["name"])
|
||||
parser = exporter.get_json_parser()
|
||||
expected_full_parser = convert_simple_to_full_parser(expected_parser)
|
||||
self.assertEqual(parser, expected_full_parser)
|
||||
|
||||
def test_json_export(self):
|
||||
# will allow to view large dict diff in case of regression
|
||||
self.maxDiff = None
|
||||
# Enforces TZ to validate the serialization result of a Datetime
|
||||
parser = [
|
||||
"lang",
|
||||
"comment",
|
||||
"partner_latitude",
|
||||
"name",
|
||||
"color",
|
||||
(
|
||||
"child_ids:children",
|
||||
[
|
||||
("child_ids:children", ["name"]),
|
||||
"email",
|
||||
("country_id:country", ["code", "name"]),
|
||||
"name",
|
||||
"id",
|
||||
],
|
||||
),
|
||||
("country_id:country", ["code", "name"]),
|
||||
"active",
|
||||
("category_id", ["name"]),
|
||||
"create_date",
|
||||
"date",
|
||||
]
|
||||
# put our own create date to ease tests
|
||||
self.env.cr.execute(
|
||||
"update res_partner set create_date=%s where id=%s",
|
||||
("2019-10-31 14:39:49", self.partner.id),
|
||||
)
|
||||
expected_json = {
|
||||
"lang": "en_US",
|
||||
"comment": None,
|
||||
"partner_latitude": 0.0,
|
||||
"name": "Akretion",
|
||||
"color": 0,
|
||||
"country": {"code": "FR", "name": "France"},
|
||||
"active": True,
|
||||
"category_id": [{"name": "Inovator"}],
|
||||
"children": [
|
||||
{
|
||||
"id": self.partner.child_ids.id,
|
||||
"country": {"code": "FR", "name": "France"},
|
||||
"children": [],
|
||||
"name": "Sebatien Beau",
|
||||
"email": None,
|
||||
}
|
||||
],
|
||||
"create_date": "2019-10-31T14:39:49",
|
||||
"date": "2019-10-31",
|
||||
}
|
||||
expected_json_with_fieldname = {
|
||||
"_fieldname_lang": "Language",
|
||||
"lang": "en_US",
|
||||
"_fieldname_comment": "Notes",
|
||||
"comment": None,
|
||||
"_fieldname_partner_latitude": "Geo Latitude",
|
||||
"_fieldname_name": "Name",
|
||||
"name": "Akretion",
|
||||
"_fieldname_color": "Color Index",
|
||||
"color": 0,
|
||||
"_fieldname_children": "Contact",
|
||||
"children": [
|
||||
{
|
||||
"_fieldname_children": "Contact",
|
||||
"children": [],
|
||||
"_fieldname_email": "Email",
|
||||
"email": None,
|
||||
"_fieldname_country": "Country",
|
||||
"country": {
|
||||
"_fieldname_code": "Country Code",
|
||||
"code": "FR",
|
||||
"_fieldname_name": "Country Name",
|
||||
"name": "France",
|
||||
},
|
||||
"_fieldname_name": "Name",
|
||||
"name": "Sebatien Beau",
|
||||
"_fieldname_id": "ID",
|
||||
"id": self.partner.child_ids.id,
|
||||
}
|
||||
],
|
||||
"_fieldname_country": "Country",
|
||||
"country": {
|
||||
"_fieldname_code": "Country Code",
|
||||
"code": "FR",
|
||||
"_fieldname_name": "Country Name",
|
||||
"name": "France",
|
||||
},
|
||||
"_fieldname_active": "Active",
|
||||
"active": True,
|
||||
"_fieldname_category_id": "Tags",
|
||||
"category_id": [{"_fieldname_name": "Tag Name", "name": "Inovator"}],
|
||||
"_fieldname_create_date": "Created on",
|
||||
"create_date": "2019-10-31T14:39:49",
|
||||
"_fieldname_date": "Date",
|
||||
"date": "2019-10-31",
|
||||
"partner_latitude": 0.0,
|
||||
}
|
||||
json_partner = self.partner.jsonify(parser)
|
||||
self.assertDictEqual(json_partner[0], expected_json)
|
||||
json_partner_with_fieldname = self.partner.jsonify(
|
||||
parser=parser, with_fieldname=True
|
||||
)
|
||||
self.assertDictEqual(
|
||||
json_partner_with_fieldname[0], expected_json_with_fieldname
|
||||
)
|
||||
# Check that only boolean fields have boolean values into json
|
||||
# By default if a field is not set into Odoo, the value is always False
|
||||
# This value is not the expected one into the json
|
||||
self.partner.write({"child_ids": [(6, 0, [])], "active": False, "lang": False})
|
||||
json_partner = self.partner.jsonify(parser)
|
||||
expected_json["active"] = False
|
||||
expected_json["lang"] = None
|
||||
expected_json["children"] = []
|
||||
self.assertDictEqual(json_partner[0], expected_json)
|
||||
|
||||
def test_one(self):
|
||||
parser = [
|
||||
"name",
|
||||
]
|
||||
expected_json = {
|
||||
"name": "Akretion",
|
||||
}
|
||||
json_partner = self.partner.jsonify(parser, one=True)
|
||||
self.assertDictEqual(json_partner, expected_json)
|
||||
# cannot call on multiple records
|
||||
with self.assertRaises(ValueError) as err:
|
||||
self.env["res.partner"].search([]).jsonify(parser, one=True)
|
||||
self.assertIn("Expected singleton", str(err.exception))
|
||||
|
||||
def test_json_export_callable_parser(self):
|
||||
self.partner.__class__.jsonify_custom = jsonify_custom
|
||||
parser = [
|
||||
# callable subparser
|
||||
("name", lambda rec, fname: rec[fname] + " rocks!"),
|
||||
("name:custom", "jsonify_custom"),
|
||||
("unknown_field", lambda rec, fname: "yeah again!"),
|
||||
]
|
||||
expected_json = {
|
||||
"name": "Akretion rocks!",
|
||||
"custom": "yeah!",
|
||||
"unknown_field": "yeah again!",
|
||||
}
|
||||
json_partner = self.partner.jsonify(parser)
|
||||
self.assertDictEqual(json_partner[0], expected_json)
|
||||
del self.partner.__class__.jsonify_custom
|
||||
|
||||
def test_full_parser(self):
|
||||
parser = self.category_export.get_json_parser()
|
||||
json = self.category.jsonify(parser)[0]
|
||||
json_fr = self.category_lang.jsonify(parser)[0]
|
||||
|
||||
self.assertEqual(
|
||||
json, json_fr
|
||||
) # starting from different languages should not change anything
|
||||
self.assertEqual(json[self.translated_target], self.translated_target)
|
||||
self.assertEqual(json["name_resolved"], "name_pidgin") # field resolver
|
||||
self.assertEqual(json["X"], "X") # added by global resolver
|
||||
|
||||
def test_full_parser_resolver_json_key_override(self):
|
||||
self.resolver.write(
|
||||
{"python_code": """result = {"_json_key": "foo", "_value": record.id}"""}
|
||||
)
|
||||
parser = self.category_export.get_json_parser()
|
||||
json = self.category.jsonify(parser)[0]
|
||||
self.assertNotIn("name_resolved", json)
|
||||
self.assertEqual(json["foo"], self.category.id) # field resolver
|
||||
self.assertEqual(json["X"], "X") # added by global resolver
|
||||
|
||||
def test_simple_parser_translations(self):
|
||||
"""The simple parser result should depend on the context language."""
|
||||
parser = ["name"]
|
||||
json = self.category.jsonify(parser)[0]
|
||||
json_fr = self.category_lang.jsonify(parser)[0]
|
||||
|
||||
self.assertEqual(json["name"], "name")
|
||||
self.assertEqual(json_fr["name"], self.translated_target)
|
||||
|
||||
def test_simple_star_target_and_field_resolver(self):
|
||||
"""The simple parser result should depend on the context language."""
|
||||
code = (
|
||||
"is_number = field_type in ('integer', 'float');"
|
||||
"ftype = 'NUMBER' if is_number else 'TEXT';"
|
||||
"value = value if is_number else str(value);"
|
||||
"result = {'Key': name, 'Value': value, 'Type': ftype, 'IsPublic': True}"
|
||||
)
|
||||
resolver = self.env["ir.exports.resolver"].create({"python_code": code})
|
||||
lang_parser = [
|
||||
{"target": "customTags=list", "name": "name", "resolver": resolver},
|
||||
{"target": "customTags=list", "name": "id", "resolver": resolver},
|
||||
]
|
||||
parser = {"language_agnostic": True, "langs": {False: lang_parser}}
|
||||
expected_json = {
|
||||
"customTags": [
|
||||
{"Value": "name", "Key": "name", "Type": "TEXT", "IsPublic": True},
|
||||
{
|
||||
"Value": self.category.id,
|
||||
"Key": "id",
|
||||
"Type": "NUMBER",
|
||||
"IsPublic": True,
|
||||
},
|
||||
]
|
||||
}
|
||||
|
||||
json = self.category.jsonify(parser)[0]
|
||||
self.assertEqual(json, expected_json)
|
||||
|
||||
def test_simple_export_with_function(self):
|
||||
self.category.__class__.jsonify_custom = jsonify_custom
|
||||
export = self.env["ir.exports"].create(
|
||||
{
|
||||
"export_fields": [
|
||||
(0, 0, {"name": "name", "instance_method_name": "jsonify_custom"}),
|
||||
],
|
||||
}
|
||||
)
|
||||
|
||||
json = self.category.jsonify(export.get_json_parser())[0]
|
||||
self.assertEqual(json, {"name": "yeah!"})
|
||||
|
||||
def test_export_relational_display_names(self):
|
||||
"""If we export a relational, we get its display_name in the json."""
|
||||
parser = [
|
||||
"state_id",
|
||||
"country_id",
|
||||
"category_id",
|
||||
"user_ids",
|
||||
]
|
||||
expected_json = {
|
||||
"state_id": None,
|
||||
"country_id": "France",
|
||||
"category_id": ["Inovator"],
|
||||
"user_ids": [],
|
||||
}
|
||||
|
||||
json_partner = self.partner.jsonify(parser, one=True)
|
||||
|
||||
self.assertDictEqual(json_partner, expected_json)
|
||||
|
||||
def test_export_reference_display_names(self):
|
||||
"""Reference work the same as relational"""
|
||||
menu = self.env.ref("base.menu_action_res_users")
|
||||
|
||||
json_menu = menu.jsonify(["action"], one=True)
|
||||
|
||||
self.assertDictEqual(json_menu, {"action": "Users"})
|
||||
|
||||
def test_bad_parsers_strict(self):
|
||||
rec = self.category.with_context(jsonify_record_strict=True)
|
||||
bad_field_name = ["Name"]
|
||||
with self.assertRaises(KeyError):
|
||||
rec.jsonify(bad_field_name, one=True)
|
||||
|
||||
bad_function_name = {"fields": [{"name": "name", "function": "notafunction"}]}
|
||||
with self.assertRaises(UserError):
|
||||
rec.jsonify(bad_function_name, one=True)
|
||||
|
||||
bad_subparser = {"fields": [({"name": "name"}, [{"name": "subparser_name"}])]}
|
||||
with self.assertRaises(UserError):
|
||||
rec.jsonify(bad_subparser, one=True)
|
||||
|
||||
def test_bad_parsers_fail_gracefully(self):
|
||||
rec = self.category
|
||||
|
||||
# logging is disabled when testing as it makes too much noise
|
||||
tools.config["test_enable"] = False
|
||||
|
||||
logger_name = "odoo.addons.jsonifier.models.models"
|
||||
bad_field_name = ["Name"]
|
||||
with self.assertLogs(logger=logger_name, level="WARNING") as capt:
|
||||
rec.jsonify(bad_field_name, one=True)
|
||||
self.assertIn("res.partner.category.Name not availabl", capt.output[0])
|
||||
|
||||
bad_function_name = {"fields": [{"name": "name", "function": "notafunction"}]}
|
||||
with self.assertLogs(logger=logger_name, level="WARNING") as capt:
|
||||
rec.jsonify(bad_function_name, one=True)
|
||||
self.assertIn(
|
||||
"res.partner.category.notafunction not available", capt.output[0]
|
||||
)
|
||||
|
||||
bad_subparser = {"fields": [({"name": "name"}, [{"name": "subparser_name"}])]}
|
||||
with self.assertLogs(logger=logger_name, level="WARNING") as capt:
|
||||
rec.jsonify(bad_subparser, one=True)
|
||||
self.assertIn("res.partner.category.name not relational", capt.output[0])
|
||||
|
||||
tools.config["test_enable"] = True
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
# Copyright 2021 Camptocamp SA (https://www.camptocamp.com).
|
||||
# @author Iván Todorovich <ivan.todorovich@camptocamp.com>
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo.tests.common import TransactionCase
|
||||
|
||||
|
||||
class TestJsonifyHelpers(TransactionCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True))
|
||||
cls.partner = cls.env["res.partner"].create(
|
||||
{
|
||||
"name": "My Partner",
|
||||
}
|
||||
)
|
||||
cls.children = cls.env["res.partner"].create(
|
||||
[
|
||||
{"parent_id": cls.partner.id, "name": "Child 1"},
|
||||
{"parent_id": cls.partner.id, "name": "Child 2"},
|
||||
]
|
||||
)
|
||||
|
||||
def test_helper_m2o_to_id(self):
|
||||
child = self.children[0]
|
||||
self.assertEqual(
|
||||
child._jsonify_m2o_to_id("parent_id"),
|
||||
child.parent_id.id,
|
||||
)
|
||||
|
||||
def test_helper_m2m_to_ids(self):
|
||||
self.assertEqual(
|
||||
self.partner._jsonify_x2m_to_ids("child_ids"),
|
||||
self.partner.child_ids.ids,
|
||||
)
|
||||
|
||||
def test_helper_format_duration(self):
|
||||
# partner_latitude is not intended for this, but it's a float field in core
|
||||
# any float field does the trick here
|
||||
self.partner.partner_latitude = 15.5
|
||||
self.assertEqual(
|
||||
self.partner._jsonify_format_duration("partner_latitude"),
|
||||
"15:30",
|
||||
)
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# Copyright 2017 ACSONE SA/NV
|
||||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||
|
||||
from odoo.exceptions import ValidationError
|
||||
from odoo.tests.common import TransactionCase
|
||||
|
||||
|
||||
class TestIrExportsLine(TransactionCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.ir_export = cls.env.ref("jsonifier.ir_exp_partner")
|
||||
|
||||
def test_target_constrains(self):
|
||||
ir_export_lines_model = self.env["ir.exports.line"]
|
||||
with self.assertRaises(ValidationError):
|
||||
# The field into the name must be also into the target
|
||||
ir_export_lines_model.create(
|
||||
{
|
||||
"export_id": self.ir_export.id,
|
||||
"name": "name",
|
||||
"target": "toto:my_target",
|
||||
}
|
||||
)
|
||||
with self.assertRaises(ValidationError):
|
||||
# The hierarchy into the target must be the same as the one into
|
||||
# the name
|
||||
ir_export_lines_model.create(
|
||||
{
|
||||
"export_id": self.ir_export.id,
|
||||
"name": "child_ids/child_ids/name",
|
||||
"target": "child_ids:children/name",
|
||||
}
|
||||
)
|
||||
with self.assertRaises(ValidationError):
|
||||
# The hierarchy into the target must be the same as the one into
|
||||
# the name and must contains the same fields as into the name
|
||||
ir_export_lines_model.create(
|
||||
{
|
||||
"export_id": self.ir_export.id,
|
||||
"name": "child_ids/child_ids/name",
|
||||
"target": "child_ids:children/category_id:category/name",
|
||||
}
|
||||
)
|
||||
line = ir_export_lines_model.create(
|
||||
{
|
||||
"export_id": self.ir_export.id,
|
||||
"name": "child_ids/child_ids/name",
|
||||
"target": "child_ids:children/child_ids:children/name",
|
||||
}
|
||||
)
|
||||
self.assertTrue(line)
|
||||
|
||||
def test_resolver_function_constrains(self):
|
||||
resolver = self.env["ir.exports.resolver"].create(
|
||||
{"python_code": "result = value", "type": "field"}
|
||||
)
|
||||
ir_export_lines_model = self.env["ir.exports.line"]
|
||||
with self.assertRaises(ValidationError):
|
||||
# the callable should be an existing model function, but it's not checked
|
||||
ir_export_lines_model.create(
|
||||
{
|
||||
"export_id": self.ir_export.id,
|
||||
"name": "name",
|
||||
"resolver_id": resolver.id,
|
||||
"instance_method_name": "function_name",
|
||||
}
|
||||
)
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record model="ir.ui.view" id="view_ir_exports_resolver">
|
||||
<field name="model">ir.exports.resolver</field>
|
||||
<field name="priority">50</field>
|
||||
<field name="arch" type="xml">
|
||||
<form>
|
||||
<group>
|
||||
<field name="name" />
|
||||
<field name="type" />
|
||||
<field name="python_code" />
|
||||
</group>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
<record id="act_ui_exports_resolver_view" model="ir.actions.act_window">
|
||||
<field name="name">Custom Export Resolvers</field>
|
||||
<field name="res_model">ir.exports.resolver</field>
|
||||
<field name="view_mode">tree,form</field>
|
||||
</record>
|
||||
<menuitem
|
||||
id="ui_exports_resolvers"
|
||||
action="act_ui_exports_resolver_view"
|
||||
parent="base.next_id_2"
|
||||
/>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record model="ir.ui.view" id="view_ir_exports">
|
||||
<field name="model">ir.exports</field>
|
||||
<field name="priority">50</field>
|
||||
<field name="arch" type="xml">
|
||||
<form>
|
||||
<sheet>
|
||||
<group name="se" string="Configuration">
|
||||
<group colspan="4" col="4" name="se-main">
|
||||
<field name="name" />
|
||||
<field name="resource" />
|
||||
<field name="language_agnostic" />
|
||||
<field name="global_resolver_id" />
|
||||
</group>
|
||||
</group>
|
||||
<group name="index" string="Index">
|
||||
<field name="export_fields" nolabel="1">
|
||||
<tree editable="bottom">
|
||||
<field name="name" />
|
||||
<field name="target" />
|
||||
<field name="lang_id" />
|
||||
<field name="resolver_id" />
|
||||
<field name="instance_method_name" />
|
||||
</tree>
|
||||
</field>
|
||||
</group>
|
||||
</sheet>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
<record id="act_ui_exports_view" model="ir.actions.act_window">
|
||||
<field name="name">Export Fields</field>
|
||||
<field name="res_model">ir.exports</field>
|
||||
<field name="view_mode">tree,form</field>
|
||||
</record>
|
||||
<menuitem id="ui_exports" action="act_ui_exports_view" parent="base.next_id_2" />
|
||||
</odoo>
|
||||
Loading…
Add table
Add a link
Reference in a new issue