Skip to content
Snippets Groups Projects
Commit 42bad1a6 authored by Victor Feyens's avatar Victor Feyens
Browse files

[IMP] *: remove useless keys from manifests


Remove most values uselessly specified because giving the same value as 
the default one (see _DEFAULT_MANIFEST in odoo/modules/module.py)

* auto_install is Falsy by default
* author is Odoo SA by default
* summary & description are empty strings by default
* application is False by default
* test, demo, depends and data are empty lists by default

This will reduce noise/inconsistencies between manifests specifications, 
simplify analysis of manifests content, ...

closes odoo/odoo#90209

Related: odoo/enterprise#26807
Signed-off-by: default avatarVictor Feyens (vfe) <vfe@odoo.com>
parent 7e5a71ab
No related branches found
No related tags found
No related merge requests found
Showing
with 1 addition and 26 deletions
......@@ -84,7 +84,6 @@ You could use this simplified accounting in case you work with an (external) acc
],
'installable': True,
'application': True,
'auto_install': False,
'post_init_hook': '_account_post_init',
'assets': {
'web._assets_primary_variables': [
......
......@@ -23,7 +23,6 @@ The check settings are located in the accounting journals configuration page.
'wizard/print_prenumbered_checks_views.xml'
],
'installable': True,
'auto_install': False,
'post_init_hook': 'create_check_sequence_on_bank_journals',
'license': 'LGPL-3',
}
......@@ -19,6 +19,5 @@ The wizard used is similar as the one for the credit note.
'security/ir.model.access.csv',
],
'installable': True,
'auto_install': False,
'license': 'LGPL-3',
}
......@@ -22,7 +22,6 @@ governements, etc.)
'data/cron.xml'
],
'installable': True,
'application': False,
'auto_install': True,
'license': 'LGPL-3',
}
......@@ -12,7 +12,6 @@
'data/facturx_templates.xml',
],
'installable': True,
'application': False,
'auto_install': True,
'license': 'LGPL-3',
}
......@@ -19,7 +19,6 @@ Odoo database.
'security/ir.model.access.csv',
],
'installable': True,
'application': False,
'license': 'LGPL-3',
'post_init_hook': '_create_demo_config_param',
}
......@@ -12,6 +12,5 @@
'data/account_edi_data.xml',
],
'installable': True,
'application': False,
'license': 'LGPL-3',
}
......@@ -11,6 +11,5 @@
'data/bis3_templates.xml',
],
'installable': True,
'application': False,
'license': 'LGPL-3',
}
......@@ -4,7 +4,6 @@
'name': 'Accounting/Fleet bridge',
'category': 'Accounting/Accounting',
'summary': 'Manage accounting with fleets',
'description': "",
'version': '1.0',
'depends': ['fleet', 'account'],
'data': [
......@@ -14,6 +13,5 @@
],
'installable': True,
'auto_install': True,
'application': False,
'license': 'LGPL-3',
}
......@@ -12,6 +12,5 @@
* Any new All Users Lock Date must be posterior (or equal) to the previous one.
""",
'depends': ['account'],
'data': [],
'license': 'LGPL-3',
}
......@@ -17,6 +17,5 @@ enable payment.
'views/account_portal_templates.xml',
],
'installable': True,
'auto_install': False,
'license': 'LGPL-3',
}
......@@ -12,9 +12,6 @@
# any module necessary for this one to work correctly
'depends': ['account', 'base_iban'],
'data': [
],
'auto_install': True,
'license': 'LGPL-3',
}
\ No newline at end of file
}
......@@ -24,6 +24,5 @@ that have no counterpart in the general financial accounts.
'data/analytic_account_demo.xml',
],
'installable': True,
'auto_install': False,
'license': 'LGPL-3',
}
......@@ -15,8 +15,6 @@ membership products (schemes).
""",
'depends': ['base_setup', 'membership', 'event'],
'data': ['views/association_views.xml'],
'demo': [],
'installable': True,
'auto_install': False,
'license': 'LGPL-3',
}
......@@ -10,7 +10,6 @@
'security/ir.model.access.csv',
],
'installable': True,
'auto_install': False,
'post_init_hook': '_assign_default_nomeclature_id',
'assets': {
'web.assets_backend': [
......
......@@ -11,7 +11,6 @@
'views/barcodes_view.xml',
],
'installable': True,
'auto_install': False,
'assets': {
'web.assets_backend': [
'barcodes_gs1_nomenclature/static/src/js/barcode_parser.js',
......
......@@ -12,7 +12,6 @@ for customization purpose.
'category': 'Hidden/Tools',
'depends': ['web'],
'installable': True,
'auto_install': False,
'data': [
'security/ir.model.access.csv',
'views/base_import_module_view.xml'
......
......@@ -17,9 +17,7 @@ Shows you a list of applications features to install from.
'views/res_config_settings_views.xml',
'views/res_partner_views.xml',
],
'demo': [],
'installable': True,
'auto_install': False,
'assets': {
'web.assets_backend': [
......
......@@ -36,7 +36,6 @@ If you need to manage your meetings, you should install the CRM module.
],
'installable': True,
'application': True,
'auto_install': False,
'assets': {
'web.assets_backend': [
'calendar/static/src/models/*.js',
......
......@@ -12,7 +12,6 @@
'data/sms_data.xml',
'views/calendar_views.xml',
],
'application': False,
'auto_install': True,
'license': 'LGPL-3',
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment