mirror of https://github.com/OCA/web.git
[FIX] apply and respect pre-commit hooks
parent
c21273823a
commit
c5a9a29309
|
@ -13,7 +13,7 @@
|
||||||
"Tecnativa, "
|
"Tecnativa, "
|
||||||
"Amaris, "
|
"Amaris, "
|
||||||
"Odoo Community Association (OCA)",
|
"Odoo Community Association (OCA)",
|
||||||
"website": "http://github.com/OCA/web",
|
"website": "https://github.com/OCA/web",
|
||||||
"category": "web",
|
"category": "web",
|
||||||
"version": "13.0.1.0.0",
|
"version": "13.0.1.0.0",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
|
|
|
@ -3,12 +3,15 @@
|
||||||
"category": "Web",
|
"category": "Web",
|
||||||
"version": "13.0.1.0.0",
|
"version": "13.0.1.0.0",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"author": "OpenERP SA, "
|
"website": "https://github.com/OCA/web",
|
||||||
"AvanzOSC, "
|
"author": (
|
||||||
"Serv. Tecnol. Avanzados - Pedro M. Baeza, "
|
"OpenERP SA, "
|
||||||
"Therp BV, "
|
"AvanzOSC, "
|
||||||
"Xtendoo, "
|
"Serv. Tecnol. Avanzados - Pedro M. Baeza, "
|
||||||
"Odoo Community Association (OCA)",
|
"Therp BV, "
|
||||||
|
"Xtendoo, "
|
||||||
|
"Odoo Community Association (OCA)"
|
||||||
|
),
|
||||||
"depends": ["web"],
|
"depends": ["web"],
|
||||||
"qweb": ["static/src/xml/expand_buttons.xml"],
|
"qweb": ["static/src/xml/expand_buttons.xml"],
|
||||||
"data": ["views/templates.xml"],
|
"data": ["views/templates.xml"],
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"version": "13.0.1.0.0",
|
"version": "13.0.1.0.0",
|
||||||
"license": "LGPL-3",
|
"license": "LGPL-3",
|
||||||
"author": "Modoolar, " "CorporateHub, " "Odoo Community Association (OCA)",
|
"author": "Modoolar, " "CorporateHub, " "Odoo Community Association (OCA)",
|
||||||
"website": "https://github.com/OCA/web/",
|
"website": "https://github.com/OCA/web",
|
||||||
"depends": ["web"],
|
"depends": ["web"],
|
||||||
"data": ["views/web_ir_actions_act_multi.xml"],
|
"data": ["views/web_ir_actions_act_multi.xml"],
|
||||||
"installable": True,
|
"installable": True,
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
"version": "13.0.1.0.0",
|
"version": "13.0.1.0.0",
|
||||||
"license": "LGPL-3",
|
"license": "LGPL-3",
|
||||||
"author": "Modoolar, CorporateHub, Odoo Community Association (OCA)",
|
"author": "Modoolar, CorporateHub, Odoo Community Association (OCA)",
|
||||||
"website": "https://github.com/OCA/web/",
|
"website": "https://github.com/OCA/web",
|
||||||
"depends": ["web"],
|
"depends": ["web"],
|
||||||
"data": ["views/web_ir_actions_act_view_reload.xml"],
|
"data": ["views/web_ir_actions_act_view_reload.xml"],
|
||||||
"installable": True,
|
"installable": True,
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
"name": "Client side message boxes",
|
"name": "Client side message boxes",
|
||||||
"version": "13.0.1.0.0",
|
"version": "13.0.1.0.0",
|
||||||
"author": "Therp BV, " "ACSONE SA/NV, " "Odoo Community Association (OCA)",
|
"author": "Therp BV, " "ACSONE SA/NV, " "Odoo Community Association (OCA)",
|
||||||
|
"website": "https://github.com/OCA/web",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"category": "Hidden/Dependency",
|
"category": "Hidden/Dependency",
|
||||||
"summary": "Show a message box to users",
|
"summary": "Show a message box to users",
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
"version": "13.0.1.0.0",
|
"version": "13.0.1.0.0",
|
||||||
"category": "Web",
|
"category": "Web",
|
||||||
"author": "Onestein, Odoo Community Association (OCA)",
|
"author": "Onestein, Odoo Community Association (OCA)",
|
||||||
"website": "https://github.com/oca/web",
|
"website": "https://github.com/OCA/web",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"depends": ["web"],
|
"depends": ["web"],
|
||||||
"data": ["templates/assets.xml"],
|
"data": ["templates/assets.xml"],
|
||||||
|
|
|
@ -4,11 +4,11 @@ import base64
|
||||||
import io
|
import io
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
from PIL import Image
|
||||||
|
|
||||||
from odoo import _, api, exceptions, fields, models
|
from odoo import _, api, exceptions, fields, models
|
||||||
from odoo.tools.mimetypes import guess_mimetype
|
from odoo.tools.mimetypes import guess_mimetype
|
||||||
|
|
||||||
from PIL import Image
|
|
||||||
|
|
||||||
|
|
||||||
class ResConfigSettings(models.TransientModel):
|
class ResConfigSettings(models.TransientModel):
|
||||||
_inherit = "res.config.settings"
|
_inherit = "res.config.settings"
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
"version": "13.0.1.0.0",
|
"version": "13.0.1.0.0",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"author": "CorporateHub, Odoo Community Association (OCA)",
|
"author": "CorporateHub, Odoo Community Association (OCA)",
|
||||||
"website": "https://github.com/OCA/web/",
|
"website": "https://github.com/OCA/web",
|
||||||
"depends": ["web"],
|
"depends": ["web"],
|
||||||
"data": ["templates/assets.xml"],
|
"data": ["templates/assets.xml"],
|
||||||
"installable": True,
|
"installable": True,
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
"version": "13.0.1.0.0",
|
"version": "13.0.1.0.0",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"author": "CorporateHub, Odoo Community Association (OCA)",
|
"author": "CorporateHub, Odoo Community Association (OCA)",
|
||||||
"website": "https://github.com/OCA/web/",
|
"website": "https://github.com/OCA/web",
|
||||||
"depends": ["web_widget_dropdown_dynamic"],
|
"depends": ["web_widget_dropdown_dynamic"],
|
||||||
"data": ["views/web_widget_dropdown_dynamic_example.xml"],
|
"data": ["views/web_widget_dropdown_dynamic_example.xml"],
|
||||||
"installable": True,
|
"installable": True,
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
"version": "13.0.1.1.1",
|
"version": "13.0.1.1.1",
|
||||||
"license": "LGPL-3",
|
"license": "LGPL-3",
|
||||||
"author": "Camptocamp, Odoo Community Association (OCA)",
|
"author": "Camptocamp, Odoo Community Association (OCA)",
|
||||||
"website": "https://github.com/OCA/web/",
|
"website": "https://github.com/OCA/web",
|
||||||
"depends": ["web"],
|
"depends": ["web"],
|
||||||
"data": ["templates/assets.xml"],
|
"data": ["templates/assets.xml"],
|
||||||
"installable": True,
|
"installable": True,
|
||||||
|
|
Loading…
Reference in New Issue