mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
- Fix postprocess inherit (removed from v15), and use _postprocess_tag_field for create/edit options: In v14 it worked with inheriting the "postprocess" method because in each recursive call it passed a section of the view, in the way that it went through all the child nodes of the root node, and passed through the fields, and now in v15 the method "_postprocess_view "it just does the while, and we never go through the nodes. - Fix pylint errors: xml-deprecated-tree-attributte, attribute-string-redundant, translation-positional-used
24 lines
681 B
Python
24 lines
681 B
Python
# Copyright 2021 Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
"name": "Web M2X Options Manager",
|
|
"summary": 'Adds an interface to manage the "Create" and'
|
|
' "Create and Edit" options for specific models and'
|
|
" fields.",
|
|
"version": "15.0.1.0.0",
|
|
"author": "Camptocamp, Odoo Community Association (OCA)",
|
|
"license": "AGPL-3",
|
|
"category": "Web",
|
|
"data": [
|
|
"security/ir.model.access.csv",
|
|
"views/ir_model.xml",
|
|
],
|
|
"demo": [
|
|
"demo/res_partner_demo_view.xml",
|
|
],
|
|
"depends": ["base", "web_m2x_options"],
|
|
"website": "https://github.com/OCA/web",
|
|
"installable": True,
|
|
}
|