You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
3.1 KiB
73 lines
3.1 KiB
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Aysha Shalin (odoo@cybrosys.com)
|
|
#
|
|
# You can modify it under the terms of the GNU AFFERO
|
|
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
# (AGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
{
|
|
'name': 'Manpower Supply Management',
|
|
'version': '15.0.1.0.0',
|
|
'category': 'Human Resources',
|
|
'summary': 'This module helps to manage man power supply.',
|
|
'description': """This module automates the process of matching client
|
|
requirements with suitable resources and streamlines the allocation and
|
|
management of manpower, ensuring efficient service delivery.""",
|
|
'author': 'Cybrosys Techno Solutions',
|
|
'company': 'Cybrosys Techno Solutions',
|
|
'maintainer': 'Cybrosys Techno Solutions',
|
|
'website': 'https://www.cybrosys.com',
|
|
'depends': ['website', 'account', 'portal', 'contacts'],
|
|
'data': [
|
|
'security/manpower_supply_management_security.xml',
|
|
'security/labour_supply_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'data/ir_sequence_data.xml',
|
|
'data/labour_supply_website_menu.xml',
|
|
'data/ir_cron_data.xml',
|
|
'views/workers_details_views.xml',
|
|
'views/skill_details_views.xml',
|
|
'views/labour_supply_views.xml',
|
|
'views/labour_on_skill_views.xml',
|
|
'views/labour_supply_website_template.xml',
|
|
'views/labour_on_supply_form_template.xml',
|
|
'views/labour_supply_portal_templates.xml',
|
|
'views/labour_supply_dashboard_views.xml',
|
|
'wizard/labour_supply_report_views.xml',
|
|
'report/labour_supply_templates.xml',
|
|
'report/labour_supply_reports.xml',
|
|
'report/form_print_labour_supply_templates.xml'
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'/manpower_supply_management/static/src/js/dashoard.js',
|
|
'/manpower_supply_management/static/src/css/dashboard.css',
|
|
'/manpower_supply_management/static/src/scss/dashboard.scss',
|
|
'/manpower_supply_management/static/src/css/material-gauge.css',
|
|
'/manpower_supply_management/static/src/js/lib/Chart.bundle.js',
|
|
'/manpower_supply_management/static/src/xml/dashoard.xml',
|
|
],
|
|
'web.assets_frontend': [
|
|
'/manpower_supply_management/static/src/css/website.css',
|
|
]
|
|
},
|
|
'images': ['static/description/banner.png'],
|
|
'license': 'AGPL-3',
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'application': True,
|
|
}
|
|
|