[IMP] jsonifier: black, isort, prettier

pull/2418/head
Sébastien BEAU 2022-10-08 12:50:35 +02:00
parent 9a43afe037
commit a9449b2be9
8 changed files with 14 additions and 10 deletions

View File

@ -6,7 +6,7 @@
{
"name": "JSONifier",
"summary": "JSON-ify data for all models",
"version": "14.0.1.0.1",
"version": "16.0.0.0.0",
"category": "Uncategorized",
"website": "https://github.com/OCA/server-tools",
"author": "Akretion, ACSONE, Camptocamp, Odoo Community Association (OCA)",

View File

@ -235,4 +235,4 @@ msgstr ""
#: code:addons/jsonifier/models/models.py:0
#, fuzzy, python-format
msgid "Wrong parser configuration for field: `%s`"
msgstr "错误的解析器配置"
msgstr "错误的解析器配置 %s"

View File

@ -77,7 +77,6 @@ class IrExports(models.Model):
language_agnostic = fields.Boolean(
default=False,
string="Language Agnostic",
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",
)

View File

@ -9,11 +9,10 @@ class IrExportsLine(models.Model):
_inherit = "ir.exports.line"
target = fields.Char(
"Target",
help="The complete path to the field where you can specify a "
"target on the step as field:target",
)
active = fields.Boolean(string="Active", default=True)
active = fields.Boolean(default=True)
lang_id = fields.Many2one(
comodel_name="res.lang",
string="Language",
@ -53,7 +52,7 @@ class IrExportsLine(models.Model):
raise ValidationError(
_(
"The target must reference the same field as in "
"name '%s' not in '%s'"
"name '%(name)s' not in '%(name_with_target)s'"
)
% (name, name_with_target)
% dict(name=name, name_with_target=name_with_target)
)

View File

@ -25,7 +25,6 @@ class FieldResolver(models.Model):
name = fields.Char()
type = fields.Selection([("field", "Field"), ("global", "Global")])
python_code = fields.Text(
string="Python Code",
default="\n".join(["# " + h for h in help_message] + ["result = value"]),
help="\n".join(help_message),
)

View File

@ -90,8 +90,8 @@ class TestParser(SavepointCase):
],
}
)
cls.category = category.with_context({})
cls.category_lang = category.with_context({"lang": cls.lang.code})
cls.category = category.with_context(lang=None)
cls.category_lang = category.with_context(lang=cls.lang.code)
def test_getting_parser(self):
expected_parser = [

View File

@ -0,0 +1 @@
../../../../jsonifier

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)