flectra/addons/maintenance/__manifest__.py
flectra-admin 769eafb483 [INIT] Inception of Flectra from Odoo
Flectra is Forked from Odoo v11 commit : (6135e82d73)
2018-01-16 11:45:59 +05:30

24 lines
665 B
Python

# -*- coding: utf-8 -*-
{
'name': 'Equipments',
'version': '1.0',
'sequence': 125,
'category': 'Human Resources',
'description': """
Track equipment and manage maintenance requests.""",
'depends': ['mail'],
'summary': 'Equipments, Assets, Internal Hardware, Allocation Tracking',
'data': [
'security/maintenance.xml',
'security/ir.model.access.csv',
'data/maintenance_data.xml',
'views/maintenance_views.xml',
'views/maintenance_templates.xml',
'data/maintenance_cron.xml',
],
'demo': ['data/maintenance_demo.xml'],
'installable': True,
'application': True,
}