47 lines
1.2 KiB
Python
Executable File
47 lines
1.2 KiB
Python
Executable File
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "SOS Installation & Commissioning",
|
|
|
|
'summary': "Sosaley's Installation Commision",
|
|
|
|
|
|
|
|
'author': "Deena",
|
|
'website': "https://sosaley.com",
|
|
|
|
|
|
# Categories can be used to filter modules in modules listing
|
|
# Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
|
|
# for the full list
|
|
'category': 'Uncategorized',
|
|
'version': '17.0.1.0.0',
|
|
'installable': True,
|
|
'application': True,
|
|
# any module necessary for this one to work correctly
|
|
'depends': ['base','web','mail','sos_inventory','sos_sales'],
|
|
|
|
# always loaded
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'security/record_rules.xml',
|
|
'views/menu.xml',
|
|
'views/sos_travel_plan_view.xml',
|
|
'views/sos_travel_reimbursement_bills_view.xml',
|
|
'views/sos_installation_report_view.xml',
|
|
'views/sos_materials_expenditure_view.xml',
|
|
'report/sos_travel_bills_report.xml',
|
|
'report/sos_travel_plan_report.xml',
|
|
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'sos_inventory/static/src/css/style.css',
|
|
],
|
|
|
|
},
|
|
# only loaded in demonstration mode
|
|
'demo': [
|
|
],
|
|
}
|
|
|