[IMP] jsonifier: black, isort, prettier
parent
9a43afe037
commit
a9449b2be9
|
@ -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)",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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",
|
||||
)
|
||||
|
|
|
@ -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)
|
||||
)
|
||||
|
|
|
@ -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),
|
||||
)
|
||||
|
|
|
@ -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 = [
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
../../../../jsonifier
|
|
@ -0,0 +1,6 @@
|
|||
import setuptools
|
||||
|
||||
setuptools.setup(
|
||||
setup_requires=['setuptools-odoo'],
|
||||
odoo_addon=True,
|
||||
)
|
Loading…
Reference in New Issue