-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__manifest__.py
24 lines (24 loc) · 929 Bytes
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2023 Odoo S.A.
# License LGPL-3.0 (https://www.gnu.org/licenses/lgpl-3.0)
{
"name": "Web Numeric Field Formatting",
"summary": "Allow to render float and integer fields without thousands separator",
"category": "web",
"version": "16.0.1.0.0",
"author": "Opener B.V., Odoo Community Association (OCA)",
"website": "https://github.com/OCA/web",
"depends": ["web"],
"assets": {
"web.assets_backend": [
"web_field_numeric_formatting/static/src/components/float_field.esm.js",
"web_field_numeric_formatting/static/src/components/integer_field.esm.js",
"web_field_numeric_formatting/static/src/components/list_renderer.esm.js",
],
"web.qunit_suite_tests": [
"web_field_numeric_formatting/static/tests/field_tests.esm.js",
],
},
"license": "LGPL-3",
"auto_install": False,
"installable": True,
}