19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:31:00 +01:00
parent a1137a1456
commit e1d89e11e3
2789 changed files with 1093187 additions and 605897 deletions

View file

@ -4,7 +4,7 @@
{
'name': 'Expenses',
'version': '2.0',
'version': '2.1',
'category': 'Human Resources/Expenses',
'sequence': 70,
'summary': 'Submit, validate and reinvoice employee expenses',
@ -26,7 +26,7 @@ The whole flow is implemented as:
This module also uses analytic accounting and is compatible with the invoice on timesheet module so that you are able to automatically re-invoice your customers' expenses if your work by project.
""",
'website': 'https://www.odoo.com/app/expenses',
'depends': ['hr_contract', 'account', 'web_tour'],
'depends': ['account', 'web_tour', 'hr'],
'data': [
'security/hr_expense_security.xml',
'security/ir.model.access.csv',
@ -37,9 +37,13 @@ This module also uses analytic accounting and is compatible with the invoice on
'data/mail_templates.xml',
'data/hr_expense_sequence.xml',
'data/hr_expense_data.xml',
'data/hr_expense_tour.xml',
'data/hr_expense_cron.xml',
'wizard/hr_expense_refuse_reason_views.xml',
'wizard/hr_expense_approve_duplicate_views.xml',
'wizard/hr_expense_split_wizard_views.xml',
'wizard/hr_expense_post_wizard_views.xml',
'views/product_product_views.xml',
'views/hr_expense_views.xml',
'views/mail_activity_views.xml',
'security/ir_rule.xml',
@ -48,7 +52,7 @@ This module also uses analytic accounting and is compatible with the invoice on
'views/account_payment_views.xml',
'views/hr_department_views.xml',
'views/res_config_settings_views.xml',
'views/account_journal_dashboard.xml',
'views/hr_employee_views.xml',
],
'demo': ['data/hr_expense_demo.xml'],
'installable': True,
@ -61,15 +65,17 @@ This module also uses analytic accounting and is compatible with the invoice on
'hr_expense/static/src/views/*.js',
'hr_expense/static/src/views/*.xml',
'hr_expense/static/src/scss/hr_expense.scss',
'hr_expense/static/src/xml/**/*',
'hr_expense/static/src/js/tours/*.js',
'hr_expense/static/src/js/web/*.js',
],
'web.assets_tests': [
'hr_expense/static/tests/tours/expense_upload_tours.js',
'hr_expense/static/tests/tours/expense_form_tours.js',
],
'web.qunit_mobile_suite_tests': [
'hr_expense/static/tests/expense_mobile_tests.js',
'web.report_assets_common': [
'hr_expense/static/src/scss/hr_expense.scss',
],
},
'author': 'Odoo S.A.',
'license': 'LGPL-3',
}