@ -0,0 +1,56 @@ |
|||
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg |
|||
:target: https://www.gnu.org/licenses/agpl-3.0-standalone.html |
|||
:alt: License: AGPL-3 |
|||
|
|||
Employee Orientation & Training |
|||
================= |
|||
This module developed to manage employee orientation & training programs. |
|||
|
|||
Configuration |
|||
============= |
|||
No additional configuration required |
|||
|
|||
Company |
|||
------- |
|||
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
|||
|
|||
License |
|||
------- |
|||
GNU Affero General Public License v3.0 (AGPL v3) |
|||
(https://www.gnu.org/licenses/agpl-3.0-standalone.html) |
|||
|
|||
Credits |
|||
------- |
|||
* Developers: |
|||
Anusha @cybrosys, |
|||
(V11) Niyas @cybrosys, |
|||
(V12) Kavya Raveendran, |
|||
(V13) Nimisha Murali, |
|||
(V14) Muhammed P, |
|||
(V15) Gion, |
|||
(V16) Sabeel B, |
|||
(V17) Jumana Haseen, |
|||
Contact : odoo@cybrosys.com |
|||
|
|||
Contacts |
|||
-------- |
|||
* Mail Contact : odoo@cybrosys.com |
|||
* Website : https://cybrosys.com |
|||
|
|||
Bug Tracker |
|||
----------- |
|||
Bugs are tracked on GitHub Issues. In case of trouble, please check there if |
|||
your issue has already been reported. |
|||
|
|||
Maintainer |
|||
========== |
|||
.. image:: https://cybrosys.com/images/logo.png |
|||
:target: https://cybrosys.com |
|||
|
|||
This module is maintained by Cybrosys Technologies. |
|||
|
|||
For support and more information, please visit `Our Website <https://cybrosys.com/>`__ |
|||
|
|||
Further information |
|||
=================== |
|||
HTML Description: `<static/description/index.html>`__ |
@ -0,0 +1,23 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Jumana Haseen @cybrosys(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/>. |
|||
# |
|||
############################################################################# |
|||
from . import models |
|||
from . import wizard |
@ -0,0 +1,54 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Jumana Haseen @cybrosys(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': "Employee Orientation & Training", |
|||
'version': '17.0.1.0.0', |
|||
'category': "Human Resources", |
|||
'summary': """Employee Orientation/Training Program Employee orientation by |
|||
which an employee acquires the necessary skills,knowledge, behaviors.""", |
|||
'description': 'Complete Employee Orientation/Training Program acquire ' |
|||
'the necessary skills,knowledge, behaviors, and contacts to' |
|||
' effectively transition into a new organization.', |
|||
'author': 'Cybrosys Techno Solutions', |
|||
'company': 'Cybrosys Techno Solutions', |
|||
'maintainer': 'Cybrosys Techno Solutions', |
|||
'website': 'https://www.cybrosys.com', |
|||
'depends': ['base', 'hr'], |
|||
'data': [ |
|||
'security/ir.model.access.csv', |
|||
'data/employee_training_data.xml', |
|||
'data/orientation_request_data.xml', |
|||
'data/employee_orientation_data.xml', |
|||
'views/checklist_line_views.xml', |
|||
'views/employee_orientation_views.xml', |
|||
'views/employee_training_views.xml', |
|||
'views/orientation_checklist_views.xml', |
|||
'views/orientation_request_views.xml', |
|||
'report/print_pack_certificates_templates.xml', |
|||
'report/print_pack_certificates_report.xml', |
|||
'wizard/orientation_force_complete_views.xml', |
|||
], |
|||
'images': ['static/description/banner.png'], |
|||
'license': 'AGPL-3', |
|||
'installable': True, |
|||
'auto_install': False, |
|||
'application': False, |
|||
} |
@ -0,0 +1,13 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<data noupdate="1"> |
|||
<!-- Sequences for employee.orientation --> |
|||
<record id="seq_orientation_checklist" model="ir.sequence"> |
|||
<field name="name">Employee Orientation</field> |
|||
<field name="code">employee.orientation</field> |
|||
<field name="prefix">OR</field> |
|||
<field name="padding">3</field> |
|||
<field name="company_id" eval="False"/> |
|||
</record> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,82 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<data noupdate="1"> |
|||
<!-- Employee training mail format--> |
|||
<record id="orientation_training_mailer" model="mail.template"> |
|||
<field name="name">Employee Training program</field> |
|||
<field name="email_from">{{(object.user_id.email or |
|||
object.company_id.email)}} |
|||
</field> |
|||
<field name="email_to">{{(object.program_convener_id.login)}} |
|||
</field> |
|||
<field name="subject">Employee Training Request</field> |
|||
<field name="model_id" |
|||
ref="employee_orientation.model_employee_training"/> |
|||
<field name="auto_delete" eval="True"/> |
|||
<field name="body_html" type="html"> |
|||
<div style="font-family: 'Lucica Grande', Ubuntu, Arial, |
|||
Verdana, sans-serif; font-size: 12px; color: rgb(34, 34, 34); |
|||
background-color: #FFF; "> |
|||
<p> |
|||
Hello |
|||
<t t-out="object.program_convener_id.name"/>, |
|||
</p> |
|||
<p> |
|||
You are requested to conduct |
|||
<t t-out="object.program_name"/> |
|||
Training program for |
|||
<t t-out="object.program_department_id.name"/> |
|||
department |
|||
<t t-if=" object.date_from and object.date_to"> |
|||
from |
|||
<t t-out="object.date_from"/> |
|||
to |
|||
<t t-out="object.date_to"/> |
|||
</t> |
|||
. |
|||
</p> |
|||
<br/> |
|||
<p> |
|||
Thank you! |
|||
</p> |
|||
<br/> |
|||
<div style="width: 375px; margin: 0px; padding: 0px; |
|||
background-color: #8E0000; border-top-left-radius: 5px 5px; |
|||
border-top-right-radius: 5px 5px; |
|||
background-repeat: repeat no-repeat;"> |
|||
<h3 style="margin: 0px; padding: 2px 14px; |
|||
font-size: 12px; color: #DDD;"> |
|||
<strong style="text-transform:uppercase;"> |
|||
<t t-out="object.company_id.name"/> |
|||
</strong> |
|||
</h3> |
|||
</div> |
|||
<div style="width: 347px; margin: 0px; padding: 5px 14px; |
|||
line-height: 16px; background-color: #F2F2F2;"> |
|||
<span style="color: #222; margin-bottom: 5px; display: block; "> |
|||
<t t-out="object.company_id.partner_id.sudo().with_context(show_address=True).name_get()[0][1]"/> |
|||
|
|||
</span> |
|||
<t t-if=" object.company_id.phone"> |
|||
<div style="margin-top: 0px; margin-right: 0px; |
|||
margin-bottom: 0px; margin-left: 0px; |
|||
padding-top: 0px; padding-right: 0px; |
|||
padding-bottom: 0px; padding-left: 0px; "> |
|||
Phone: |
|||
<t t-out="object.company_id.phone"/> |
|||
</div> |
|||
</t> |
|||
<t t-if=" object.company_id.website"> |
|||
<div> |
|||
Web : |
|||
<a href="'%s' % object.company_id.website"> |
|||
<t t-out="object.company_id.website"/> |
|||
</a> |
|||
</div> |
|||
</t> |
|||
</div> |
|||
</div> |
|||
</field> |
|||
</record> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,84 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<data noupdate="1"> |
|||
<!-- Employee orientation request mail format --> |
|||
<record id="orientation_request_view" model="mail.template"> |
|||
<field name="name">Employee Orientation Request</field> |
|||
<field name="email_from">{{(object.user_id.login or |
|||
object.company_id.email)}} |
|||
</field> |
|||
<field name="email_to">{{(object.partner_id.work_email)}}</field> |
|||
<field name="subject">Employee Orientation Request</field> |
|||
<field name="model_id" |
|||
ref="employee_orientation.model_orientation_request"/> |
|||
<field name="auto_delete" eval="True"/> |
|||
<field name="body_html" type="html"> |
|||
<div style="font-family: 'Lucica Grande', Ubuntu, Arial, |
|||
Verdana, sans-serif; font-size: 12px; color: rgb(34, 34, 34); |
|||
background-color: #FFF; "> |
|||
<p style="margin: 0px; padding: 0px; font-size: 13px;"> |
|||
Hello |
|||
<t t-out="object.partner_id.name"/>, |
|||
</p> |
|||
<p> |
|||
You are requested to conduct orientation program listed |
|||
below. |
|||
</p> |
|||
<p> |
|||
Check Line: |
|||
<t t-out="object.request_name"/> |
|||
</p> |
|||
<p> |
|||
Employee: |
|||
<t t-out="object.employee_id.name"/> |
|||
</p> |
|||
<t t-if=" object.request_expected_date"> |
|||
<p> |
|||
Expected Date: |
|||
<t t-out="object.request_expected_date"/> |
|||
</p> |
|||
</t> |
|||
<br/> |
|||
<p> |
|||
Thank you! |
|||
</p> |
|||
<br/> |
|||
<div style="width: 375px; margin: 0px; padding: 0px; |
|||
background-color: #8E0000; border-top-left-radius: 5px 5px; |
|||
border-top-right-radius: 5px 5px; |
|||
background-repeat: repeat no-repeat;"> |
|||
<h3 style="margin: 0px; padding: 2px 14px; |
|||
font-size: 12px; color: #DDD;"> |
|||
<strong style="text-transform:uppercase;"> |
|||
<t t-out="object.company_id.name"/> |
|||
</strong> |
|||
</h3> |
|||
</div> |
|||
<div style="width: 347px; margin: 0px; padding: 5px 14px; |
|||
line-height: 16px; background-color: #F2F2F2;"> |
|||
<span style="color: #222; margin-bottom: 5px; display: block; "> |
|||
<t t-out="object.company_id.partner_id.sudo().with_context(show_address=True).name_get()[0][1]"/> |
|||
</span> |
|||
<t t-if="object.company_id.phone"> |
|||
<div style="margin-top: 0px; margin-right: 0px; |
|||
margin-bottom: 0px; margin-left: 0px; |
|||
padding-top: 0px; padding-right: 0px; |
|||
padding-bottom: 0px; padding-left: 0px; "> |
|||
Phone: |
|||
<t t-out="object.company_id.phone"/> |
|||
</div> |
|||
</t> |
|||
<t t-if=" object.company_id.website"> |
|||
<div> |
|||
Web : |
|||
<a href="'%s' % object.company_id.website"> |
|||
<t t-out="object.company_id.website"/> |
|||
</a> |
|||
</div> |
|||
</t> |
|||
</div> |
|||
</div> |
|||
</field> |
|||
</record> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,6 @@ |
|||
## Module <employee_orientation> |
|||
|
|||
#### 18.12.2023 |
|||
#### Version 17.0.1.0.0 |
|||
#### ADD |
|||
- Initial Commit for Employee Orientation & Training |
@ -0,0 +1,28 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Jumana Haseen @cybrosys(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/>. |
|||
# |
|||
############################################################################# |
|||
from . import checklist_line |
|||
from . import orientation_checklist |
|||
from . import employee_orientation |
|||
from . import orientation_request |
|||
from . import employee_training |
|||
from . import employee_orientation_report |
|||
from . import hr_employee |
@ -0,0 +1,36 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Jumana Haseen @cybrosys(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/>. |
|||
# |
|||
############################################################################# |
|||
from odoo import models, fields |
|||
|
|||
|
|||
class ChecklistLine(models.Model): |
|||
"""This class creates a model 'checklist.line' and adds required fields """ |
|||
_name = 'checklist.line' |
|||
_description = 'Checklist Line' |
|||
_rec_name = 'line_name' |
|||
|
|||
line_name = fields.Char(string='Name', required=True, |
|||
help="Checklist name.") |
|||
responsible_user_id = fields.Many2one('res.users', |
|||
string='Responsible User', |
|||
required=True, |
|||
help="Give the responsible user.") |
@ -0,0 +1,123 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Jumana Haseen @cybrosys(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/>. |
|||
# |
|||
############################################################################# |
|||
from odoo import api, fields, models, _ |
|||
|
|||
|
|||
class Orientation(models.Model): |
|||
"""This class creates a model 'employee.orientation' and adds fields,and |
|||
also inherits 'mail.thread'""" |
|||
_name = 'employee.orientation' |
|||
_description = "Employee Orientation" |
|||
_inherit = 'mail.thread' |
|||
|
|||
name = fields.Char(string='Employee Orientation', readonly=True, |
|||
default=lambda self: _('New'), |
|||
help="Sequence for employee orientation.") |
|||
employee_id = fields.Many2one('hr.employee', string='Employee', |
|||
required=True, |
|||
help="Name of the employee.") |
|||
department_id = fields.Many2one('hr.department', string='Department', |
|||
related='employee_id.department_id', |
|||
required=True, |
|||
help="Name of the department.") |
|||
date = fields.Datetime(string="Date", help="Current date for employee " |
|||
"orientation.") |
|||
responsible_user_id = fields.Many2one('res.users', |
|||
string='Responsible User', |
|||
help="Give the responsible user.") |
|||
employee_company_id = fields.Many2one('res.company', string='Company', |
|||
required=True, |
|||
default=lambda |
|||
self: self.env.user.company_id, |
|||
help="Mention the company.") |
|||
parent_id = fields.Many2one('hr.employee', string='Manager', |
|||
related='employee_id.parent_id', |
|||
help="Related manager.") |
|||
job_id = fields.Many2one('hr.job', string='Job Title', |
|||
related='employee_id.job_id', |
|||
domain="[('department_id', '=', department_id)]", |
|||
help="Mention the job title.") |
|||
orientation_id = fields.Many2one('orientation.checklist', |
|||
string='Orientation Checklist', |
|||
domain="[('checklist_department_id','='," |
|||
" department_id)]", |
|||
required=True, |
|||
help="Mention the Orientation Checklist.") |
|||
note = fields.Text('Description', help="Give the description if any.") |
|||
orientation_request_ids = fields.One2many('orientation.request', |
|||
'request_orientation_id', |
|||
string='Orientation Request', |
|||
help="Orientation requests " |
|||
"of the employee.") |
|||
state = fields.Selection([ |
|||
('draft', 'Draft'), |
|||
('confirm', 'Confirmed'), |
|||
('cancel', 'Canceled'), |
|||
('complete', 'Completed'), |
|||
], string='Status', readonly=True, copy=False, index=True, |
|||
default='draft', |
|||
help="Status of the employee orientation.") |
|||
|
|||
def action_confirm_orientation(self): |
|||
"""Function execute on confirming orientation, state changes to |
|||
confirm""" |
|||
self.write({'state': 'confirm'}) |
|||
for values in self.orientation_id.checklist_line_ids: |
|||
self.env['orientation.request'].create({ |
|||
'request_name': values.line_name, |
|||
'request_orientation_id': self.id, |
|||
'partner_id': values.responsible_user_id.id, |
|||
'request_date': self.date, |
|||
'employee_id': self.employee_id.id, |
|||
}) |
|||
|
|||
def action_cancel_orientation(self): |
|||
"""Function on cancel orientation button,state changes to cancel""" |
|||
for request in self.orientation_request_ids: |
|||
request.state = 'cancel' |
|||
self.write({'state': 'cancel'}) |
|||
|
|||
def action_complete_orientation(self): |
|||
"""Function on complete orientation button,state changes to complete""" |
|||
force_complete = False |
|||
for request in self.orientation_request_ids: |
|||
if request.state == 'new': |
|||
force_complete = True |
|||
if force_complete: |
|||
return { |
|||
'name': 'Complete Orientation', |
|||
'view_type': 'form', |
|||
'view_mode': 'form', |
|||
'res_model': 'orientation.force.complete', |
|||
'type': 'ir.actions.act_window', |
|||
'context': {'default_orientation_id': self.id}, |
|||
'target': 'new', |
|||
} |
|||
self.write({'state': 'complete'}) |
|||
|
|||
@api.model |
|||
def create(self, vals): |
|||
"""Function to create sequence for orientation""" |
|||
vals['name'] = self.env['ir.sequence'].next_by_code( |
|||
'employee.orientation') |
|||
result = super(Orientation, self).create(vals) |
|||
return result |
@ -0,0 +1,53 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Jumana Haseen @cybrosys(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/>. |
|||
# |
|||
############################################################################# |
|||
from odoo import api, models |
|||
|
|||
|
|||
class PackingReportValues(models.AbstractModel): |
|||
"""Model for report of employee orientation""" |
|||
_name = 'report.employee_orientation.print_pack_template' |
|||
_description = 'Employee Orientation Print report' |
|||
|
|||
@api.model |
|||
def _get_report_values(self, docids, data=None): |
|||
"""Function execute on report values""" |
|||
lst = [] |
|||
empl_obj = self.env['hr.employee'].search( |
|||
[('department_id', '=', data['dept_id'])]) |
|||
docs = self.env['hr.employee'].browse(docids) |
|||
for line in empl_obj: |
|||
lst.append({ |
|||
'doc_ids': docs.ids, |
|||
'doc_model': 'hr.employee', |
|||
'name': line.name, |
|||
'department_id': line.department_id.name, |
|||
'program_name': data['program_name'], |
|||
'company_name': data['company_name'], |
|||
'date_to': data['date_to'], |
|||
'program_convener': data['program_convener'], |
|||
'duration': data['duration'], |
|||
'hours': data['hours'], |
|||
'minutes': data['minutes'], |
|||
}) |
|||
return { |
|||
'data': lst, |
|||
} |
@ -0,0 +1,144 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Jumana Haseen @cybrosys(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/>. |
|||
# |
|||
############################################################################# |
|||
from dateutil.relativedelta import relativedelta |
|||
from datetime import datetime |
|||
from odoo import api, fields, models, _ |
|||
|
|||
|
|||
class EmployeeTraining(models.Model): |
|||
"""This class creates a model employee training and adds fields""" |
|||
_name = 'employee.training' |
|||
_rec_name = 'program_name' |
|||
_description = "Employee Training" |
|||
_inherit = 'mail.thread' |
|||
|
|||
program_name = fields.Char(string='Training Program', required=True, |
|||
help="Program name in training.") |
|||
program_department_id = fields.Many2one('hr.department', |
|||
string='Department', required=True, |
|||
help="Department on training.") |
|||
program_convener_id = fields.Many2one('res.users', |
|||
string='Responsible User', |
|||
required=True, help="Responsible " |
|||
"person.") |
|||
training_ids = fields.One2many('hr.employee', string='Employee Details', |
|||
compute="_compute_employee_details", |
|||
help="Employee details on training.") |
|||
note_id = fields.Text('Description', help="Give the description" |
|||
" if any.") |
|||
date_from = fields.Datetime(string="Date From", help="Give the from date.") |
|||
date_to = fields.Datetime(string="Date To", help="Mention the to date.") |
|||
user_id = fields.Many2one('res.users', string='users', |
|||
default=lambda self: self.env.user, |
|||
help="Mention the user.") |
|||
company_id = fields.Many2one('res.company', string='Company', required=True, |
|||
default=lambda self: self.env.user.company_id, |
|||
help="Mention the company.") |
|||
state = fields.Selection([ |
|||
('new', 'New'), |
|||
('confirm', 'Confirmed'), |
|||
('cancel', 'Canceled'), |
|||
('complete', 'Completed'), |
|||
('print', 'Print'), |
|||
], string='Status', readonly=True, copy=False, index=True, |
|||
default='new', help="Status of training.") |
|||
|
|||
@api.depends('program_department_id') |
|||
def _compute_employee_details(self): |
|||
"""Function to search for employee details""" |
|||
datas = self.env['hr.employee'].search( |
|||
[('department_id', '=', self.program_department_id.id)]) |
|||
self.training_ids = datas |
|||
|
|||
def print_event(self): |
|||
"""Reports to print the event""" |
|||
self.ensure_one() |
|||
started_date = datetime.strftime(self.create_date, "%Y-%m-%d ") |
|||
duration = (self.write_date - self.create_date).days |
|||
pause = relativedelta(hours=0) |
|||
difference = relativedelta(self.write_date, self.create_date) - pause |
|||
hours = difference.hours |
|||
minutes = difference.minutes |
|||
data = { |
|||
'dept_id': self.program_department_id.id, |
|||
'program_name': self.program_name, |
|||
'company_name': self.company_id.name, |
|||
'date_to': started_date, |
|||
'duration': duration, |
|||
'hours': hours, |
|||
'minutes': minutes, |
|||
'program_convener': self.program_convener_id.name, |
|||
|
|||
} |
|||
return self.env.ref( |
|||
'employee_orientation.print_pack_certificates').report_action(self, |
|||
data=data) |
|||
|
|||
def action_complete_event(self): |
|||
"""Function executes if the event is completed and state changed to |
|||
complete""" |
|||
self.write({'state': 'complete'}) |
|||
|
|||
def action_confirm_event(self): |
|||
"""Function executes if the event is confirmed and state changed to |
|||
confirm""" |
|||
self.write({'state': 'confirm'}) |
|||
|
|||
def action_cancel_event(self): |
|||
"""Function executes if the event is cancelled and state changed to |
|||
cancel""" |
|||
self.write({'state': 'cancel'}) |
|||
|
|||
def action_confirm_send_mail(self): |
|||
"""Function execute to confirm send mail and update values |
|||
""" |
|||
self.ensure_one() |
|||
ir_model_data = self.env['ir.model.data'] |
|||
try: |
|||
template_id = ir_model_data._xmlid_lookup( |
|||
'employee_orientation.orientation_training_mailer')[2] |
|||
except ValueError: |
|||
template_id = False |
|||
try: |
|||
compose_form_id = ir_model_data._xmlid_lookup( |
|||
'mail.email_compose_message_wizard_form')[2] |
|||
except ValueError: |
|||
compose_form_id = False |
|||
ctx = dict(self.env.context or {}) |
|||
ctx.update({ |
|||
'default_model': 'employee.training', |
|||
'default_res_id': self.ids[0], |
|||
'default_use_template': bool(template_id), |
|||
'default_template_id': template_id, |
|||
'default_composition_mode': 'comment', |
|||
}) |
|||
return { |
|||
'name': _('Compose Email'), |
|||
'type': 'ir.actions.act_window', |
|||
'view_type': 'form', |
|||
'view_mode': 'form', |
|||
'res_model': 'mail.compose.message', |
|||
'views': [(compose_form_id, 'form')], |
|||
'view_id': compose_form_id, |
|||
'target': 'new', |
|||
'context': ctx, |
|||
} |
@ -0,0 +1,30 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Jumana Haseen @cybrosys(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/>. |
|||
# |
|||
############################################################################# |
|||
from odoo import fields, models |
|||
|
|||
|
|||
class HrEmployee(models.Model): |
|||
"This class inherits 'hr.employee'" |
|||
_inherit = 'hr.employee' |
|||
|
|||
certificates = fields.Boolean(default=True, string="Certificates", |
|||
help="Field to give certificates or not.") |
@ -0,0 +1,44 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Jumana Haseen @cybrosys(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/>. |
|||
# |
|||
############################################################################# |
|||
from odoo import models, fields |
|||
|
|||
|
|||
class OrientationChecklist(models.Model): |
|||
"""This class creates a model 'orientation.checklist' and added fields""" |
|||
_name = 'orientation.checklist' |
|||
_description = "Checklist" |
|||
_rec_name = 'checklist_name' |
|||
_inherit = 'mail.thread' |
|||
|
|||
checklist_name = fields.Char(string='Name', required=True, |
|||
help="Give the checklist name.") |
|||
checklist_department_id = fields.Many2one('hr.department', |
|||
string='Department', |
|||
required=True, |
|||
help="Give the corresponding" |
|||
"department.") |
|||
active = fields.Boolean(string='Active', default=True, |
|||
help="Set active to false to hide the Orientation " |
|||
"Checklist without removing it.") |
|||
checklist_line_ids = fields.Many2many('checklist.line', |
|||
'checklist_line_rel', |
|||
help="Specify all the checklists.") |
@ -0,0 +1,114 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Jumana Haseen @cybrosys(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/>. |
|||
# |
|||
############################################################################# |
|||
from odoo import models, fields, _ |
|||
|
|||
|
|||
class OrientationChecklistRequest(models.Model): |
|||
"""This class creates a model 'orientation.request' and adds |
|||
required fields""" |
|||
_name = 'orientation.request' |
|||
_description = "Employee Orientation Request" |
|||
_rec_name = 'request_name' |
|||
_inherit = 'mail.thread' |
|||
|
|||
request_name = fields.Char(string='Name', help="Name the sequence") |
|||
request_orientation_id = fields.Many2one('employee.orientation', |
|||
string='Employee Orientation', |
|||
help="Give the employee " |
|||
"orientation.") |
|||
employee_company_id = fields.Many2one('res.company', |
|||
string='Employees Company', |
|||
required=True, |
|||
default=lambda |
|||
self: self.env.user.company_id, |
|||
help="Give the company.") |
|||
partner_id = fields.Many2one('res.users', |
|||
string='Responsible User', |
|||
help="Specify the responsible user.") |
|||
request_date = fields.Date(string="Date", help="Mention the request date.") |
|||
employee_id = fields.Many2one('hr.employee', string='Employee', |
|||
help="Give the employee name.") |
|||
request_expected_date = fields.Date(string="Expected Date", help="Request" |
|||
"expected " |
|||
"date.") |
|||
attachment_ids = fields.Many2many('ir.attachment', |
|||
'orientation_rel_1', |
|||
string="Attachment", help="Attachments " |
|||
"related.") |
|||
note = fields.Text('Description', help="Give notes if any.") |
|||
user_id = fields.Many2one('res.users', string='users', |
|||
default=lambda self: self.env.user, |
|||
help="Give the user.") |
|||
company_id = fields.Many2one('res.company', |
|||
string='Company', required=True, |
|||
default=lambda self: self.env.user.company_id, |
|||
help="Give the related company.") |
|||
state = fields.Selection([ |
|||
('new', 'New'), |
|||
('cancel', 'Cancel'), |
|||
('complete', 'Completed'), |
|||
], string='Status', readonly=True, copy=False, index=True, |
|||
default='new', help="Status of the " |
|||
"request.") |
|||
|
|||
def action_confirm_send_mail(self): |
|||
"""Function executes on confirming mail""" |
|||
self.ensure_one() |
|||
ir_model_data = self.env['ir.model.data'] |
|||
try: |
|||
template_id = ir_model_data._xmlid_lookup( |
|||
'employee_orientation.orientation_request_mailer')[2] |
|||
print(template_id) |
|||
except ValueError: |
|||
template_id = False |
|||
try: |
|||
compose_form_id = ir_model_data._xmlid_lookup( |
|||
'mail.email_compose_message_wizard_form')[2] |
|||
except ValueError: |
|||
compose_form_id = False |
|||
ctx = dict(self.env.context or {}) |
|||
ctx.update({ |
|||
'default_model': 'orientation.request', |
|||
'default_res_id': self.ids[0], |
|||
'default_use_template': bool(template_id), |
|||
'default_template_id': template_id, |
|||
'default_composition_mode': 'comment', |
|||
}) |
|||
return { |
|||
'name': _('Compose Email'), |
|||
'type': 'ir.actions.act_window', |
|||
'view_type': 'form', |
|||
'view_mode': 'form', |
|||
'res_model': 'mail.compose.message', |
|||
'views': [(compose_form_id, 'form')], |
|||
'view_id': compose_form_id, |
|||
'target': 'new', |
|||
'context': ctx, |
|||
} |
|||
|
|||
def action_confirm_request(self): |
|||
"""Function on confirm button of request""" |
|||
self.write({'state': "complete"}) |
|||
|
|||
def action_cancel_request(self): |
|||
"""Function on cancel button""" |
|||
self.write({'state': "cancel"}) |
@ -0,0 +1,13 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<data noupdate="1"> |
|||
<!-- Report template --> |
|||
<record id="print_pack_certificates" model="ir.actions.report"> |
|||
<field name="name">Certificates</field> |
|||
<field name="model">employee.training</field> |
|||
<field name="report_type">qweb-pdf</field> |
|||
<field name="report_name">employee_orientation.print_pack_template</field> |
|||
<field name="report_file">employee_orientation.print_pack_template</field> |
|||
</record> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,89 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<!-- Template to print certificates --> |
|||
<template id="certificate_layout"> |
|||
<t t-if="not o" t-set="o" t-value="doc"/> |
|||
<t t-if="not company"> |
|||
<t t-if="company_id"> |
|||
<t t-set="company" t-value="company_id"/> |
|||
</t> |
|||
<t t-elif="o and 'company_id' in o and o.company_id.sudo()"> |
|||
<t t-set="company" t-value="o.company_id.sudo()"/> |
|||
</t> |
|||
<t t-else="else"> |
|||
<t t-set="company" t-value="res_company"/> |
|||
</t> |
|||
</t> |
|||
<div class="header"> |
|||
<div class="row"> |
|||
<div class="col-3"> |
|||
<span t-esc="company.name"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="article" t-att-data-oe-model="o" t-att-data-oe-id="o" |
|||
t-att-data-oe-lang="o"> |
|||
<t t-raw="0"/> |
|||
</div> |
|||
</template> |
|||
<template id="print_pack_template"> |
|||
<t t-call="web.html_container"> |
|||
<t t-call="employee_orientation.certificate_layout"> |
|||
<div class="page"> |
|||
<t t-foreach="data" t-as="o"> |
|||
<h2 align="center" |
|||
style="margin-top:200px; padding-top:50px;"> |
|||
Certificate of Participation |
|||
</h2> |
|||
<table align="center" |
|||
style="page-break-after:always !important;"> |
|||
<tr> |
|||
<td> |
|||
<br/> |
|||
<br/> |
|||
<p> |
|||
This certificate is awarded to |
|||
<span> |
|||
<strong> |
|||
<t t-esc="o['name']"/> |
|||
</strong> |
|||
</span> |
|||
for certifying his/her participation in |
|||
the training program " |
|||
<strong> |
|||
<t t-esc="o['program_name']"/> |
|||
</strong> |
|||
" conducted by |
|||
<strong> |
|||
<t t-esc="o['program_convener']"/> |
|||
</strong> |
|||
from |
|||
<strong> |
|||
<t t-esc="o['date_to']"/> |
|||
</strong> |
|||
,with duration of |
|||
<strong> |
|||
<t t-esc="o['duration']"/> |
|||
</strong> |
|||
days, |
|||
<strong> |
|||
<t t-esc="o['hours']"/> |
|||
</strong> |
|||
Hours, |
|||
<strong> |
|||
<t t-esc="o['minutes']"/> |
|||
</strong> |
|||
Minutes, at |
|||
<strong> |
|||
<t t-esc="o['company_name']"/> |
|||
</strong> |
|||
</p> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</t> |
|||
</div> |
|||
</t> |
|||
</t> |
|||
</template> |
|||
</odoo> |
|
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 310 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 565 B |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 85 KiB |
After Width: | Height: | Size: 85 KiB |
After Width: | Height: | Size: 85 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 1.8 MiB |
After Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 73 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 84 KiB |
After Width: | Height: | Size: 109 KiB |
After Width: | Height: | Size: 52 KiB |
After Width: | Height: | Size: 78 KiB |
After Width: | Height: | Size: 95 KiB |
After Width: | Height: | Size: 104 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 325 KiB |
After Width: | Height: | Size: 90 KiB |
After Width: | Height: | Size: 11 KiB |
@ -0,0 +1,807 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="en"> |
|||
<head> |
|||
<meta charset="UTF-8"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|||
<title>Odoo App 3 Index</title> |
|||
<!-- Bootstrap CSS --> |
|||
<link rel="stylesheet" |
|||
href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" |
|||
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" |
|||
crossorigin="anonymous"> |
|||
<link rel="stylesheet" |
|||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"> |
|||
<link rel="preconnect" href="https://fonts.googleapis.com"> |
|||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
|||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" |
|||
rel="stylesheet"> |
|||
</head> |
|||
<body> |
|||
<section> |
|||
<div class="container" |
|||
style="font-family: 'Inter', sans-serif !important;background-color: #fff !important;"> |
|||
<div class="row"> |
|||
<div class="col-sm-12 col-md-12 col-lg-12 d-flex justify-content-between flex-wrap align-items-sm-center" |
|||
style="border-bottom:1px solid rgba(0, 0, 0, 0.22)"> |
|||
<div class="my-3"> |
|||
<img src="assets/misc/Cybrosys R.png" |
|||
style="width:auto !important; height:40px !important"> |
|||
</div> |
|||
<div class="my-3 d-flex align-items-center"> |
|||
<div class="text-center" |
|||
style="background-color:#017E84 !important;font-size: 0.8rem !important; color:#fff !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important; min-width: 120px !important;"> |
|||
Community |
|||
</div> |
|||
<div class="text-center" |
|||
style="background-color:#875A7B !important; color:#fff !important;font-size: 0.8rem !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important;min-width: 120px !important;"> |
|||
Enterprise |
|||
</div> |
|||
<div class="text-center" |
|||
style="background-color: #2175db !important; color:#fff !important;font-size: 0.8rem !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important;min-width: 120px !important;"> |
|||
Odoo.sh |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="row"> |
|||
<div class="col-sm-12 col-md-12 col-lg-12 text-center d-flex align-items-center flex-column" |
|||
style="margin: 80px 0px !important;"> |
|||
<h1 style="font-size: 2.8rem;font-weight: 700; color: |
|||
#1A202C;"> |
|||
Employee Orientation & Training</h1> |
|||
<p class="my-3 mb-4" |
|||
style="max-width: 80%; font-weight: 400 !important; line-height: 32px; color: #718096;"> |
|||
This help employee to acquire the necessary skills, |
|||
knowledge, behaviors, and contacts to effectively transition into a new organization. |
|||
</p> |
|||
<div style="width: 80%; margin-top: 3rem;"> |
|||
<img src="assets/screenshots/hero.gif" |
|||
class="img-responsive" width="100%" height="auto"> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="container mt-5 mb-5"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
|||
<p class="m-0" |
|||
style="font-weight: 600; font-size: 24px; color:#714b67 !important"> |
|||
Key Highlights |
|||
</p> |
|||
</div> |
|||
<div class="row py-4"> |
|||
<div class="col-md-6 col-sm-12 p-3"> |
|||
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
|||
background: #FFF; |
|||
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
|||
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
|||
display: flex; justify-content: center; align-items: center; |
|||
margin-right: 10px; flex-shrink: 0;"> |
|||
<i class="fa-solid fa-star " |
|||
style="color: #fff;font-size:14px;"></i> |
|||
</div> |
|||
<div> |
|||
<p style="color: #1A202C;font-weight: 600; |
|||
font-size: 1.2rem; margin-bottom: 2px;"> |
|||
Employee Orientation Programs</p> |
|||
<p class="m-0" style="color:#718096">Employee orientation by |
|||
which an employee acquires the necessary |
|||
skills,knowledge, behaviors. |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-6 col-sm-12 p-3"> |
|||
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
|||
background: #FFF; |
|||
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
|||
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
|||
display: flex; justify-content: center; align-items: center; |
|||
margin-right: 10px; flex-shrink: 0;"> |
|||
<i class="fa-solid fa-star " |
|||
style="color: #fff;font-size:14px;"></i> |
|||
</div> |
|||
<div> |
|||
<p style="color: #1A202C;font-weight: 600; |
|||
font-size: 1.2rem; margin-bottom: 2px;"> |
|||
Employee training</p> |
|||
<p class="m-0" style="color:#718096">It can enhance the |
|||
overall satisfaction of employees and help |
|||
increase turnover and productivity. |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-6 col-sm-12 p-3"> |
|||
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
|||
background: #FFF; |
|||
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
|||
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
|||
display: flex; justify-content: center; align-items: center; |
|||
margin-right: 10px; flex-shrink: 0; "> |
|||
<i class="fa-solid fa-star " |
|||
style="color: #fff;font-size:14px;"></i> |
|||
</div> |
|||
<div> |
|||
<p style="color: #1A202C;font-weight: 600; |
|||
font-size: 1.2rem; margin-bottom: 2px;"> |
|||
Orientation Request</p> |
|||
<p class="m-0" style="color:#718096"> Confirming orientation |
|||
will create orientation requests automatically. |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-6 col-sm-12 p-3"> |
|||
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
|||
background: #FFF; |
|||
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
|||
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
|||
display: flex; justify-content: center; align-items: center; |
|||
margin-right: 10px; flex-shrink: 0; "> |
|||
<i class="fa-solid fa-star " |
|||
style="color: #fff;font-size:14px;"></i> |
|||
</div> |
|||
<div> |
|||
<p style="color: #1A202C;font-weight: 600; |
|||
font-size: 1.2rem; margin-bottom: 2px;"> |
|||
Print Certificates</p> |
|||
<p class="m-0" style="color:#718096"> Certificates can be |
|||
printed for the training and |
|||
orientation programs |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="container rounded"> |
|||
<ul class="nav nav-tabs d-flex" |
|||
style="width: fit-content;margin: 0 auto;gap: 1rem;"> |
|||
<li class="col text-center py-2 text-nowrap " |
|||
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"> |
|||
<a |
|||
class="active show" data-toggle="tab" href="#tab1" |
|||
style="color: #fff;font-weight: 500; background-color: #714B67; text-decoration: none;"> |
|||
<i class="fa-regular fa-image pr-2" |
|||
style="color: #fff;"></i> |
|||
Screenshots</a></li> |
|||
<li class="col text-center py-2 text-nowrap " |
|||
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"> |
|||
<a |
|||
data-toggle="tab" href="#tab2" |
|||
style="color: #fff;font-weight: 500; text-decoration: none;"><i |
|||
class="fa-solid fa-star pr-2" |
|||
style="color: #fff;"></i>Features</a></li> |
|||
<li class="col text-center py-2 text-nowrap " |
|||
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"> |
|||
<a |
|||
data-toggle="tab" href="#tab3" |
|||
style="color: #fff;font-weight: 500; text-decoration: none; background-color: #714B67;"><i |
|||
class="fa-solid fa-book-open pr-2" |
|||
style="color: #fff;"></i>Released Notes</a></li> |
|||
</ul> |
|||
<div class="tab-content" |
|||
style="background-color: rgba(121, 113, 119, 0.04);"> |
|||
<div id="tab1" class="tab-pane fade in active show"> |
|||
<div class="col-lg-12 py-2" |
|||
style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/1.png" |
|||
class="img-thumbnail" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Orientation Checklist for each employee in orientation</h4> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-12 py-2" |
|||
style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/2.png" |
|||
class="img-thumbnail" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Orientation Checklist Lines in each checklist can be seen here</h4> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-12 py-2" |
|||
style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/3.png" |
|||
class="img-thumbnail" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Employee Orientation details</h4> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-12 py-2" |
|||
style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/4.png" |
|||
class="img-thumbnail" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Automatic creation of checklist lines</h4> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-12 py-2" |
|||
style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/5.png" |
|||
class="img-responsive" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Orientation Request:Confirming orientation |
|||
will create orientation requests |
|||
automatically.</h4> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-12 py-2" |
|||
style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/6.png" |
|||
class="img-responsive" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Orientation requests with the corresponding employee orientation are added</h4> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-12 py-2" |
|||
style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/7.png" |
|||
class="img-responsive" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Email Template for sending email about the training program</h4> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-12 py-2" |
|||
style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/8.png" |
|||
class="img-responsive" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Employee Training details about training program,department and dates</h4> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-12 py-2" |
|||
style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/9.png" |
|||
class="img-responsive" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Print Certificates: Book issued history in each book.</h4> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div id="tab2" class="tab-pane fade"> |
|||
<div class="col-mg-12" style="padding: 1rem 4rem;"> |
|||
<ul style="list-style: none; padding: 1rem 0;font-weight: 500;"> |
|||
<li class="py-3" |
|||
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<span style="margin-right: 12px;"><img src="assets/misc/star (1) 2.svg" alt="" |
|||
width="16px"></span>Employee Orientation and Employee Training |
|||
</li> |
|||
<li class="py-3" |
|||
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<span style="margin-right: 12px;"><img src="assets/misc/star (1) 2.svg" alt="" |
|||
width="16px">Orientation Request created on confirming orientation</span>. |
|||
</li> |
|||
<li class="py-3" |
|||
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<span style="margin-right: 12px;"><img src="assets/misc/star (1) 2.svg" alt="" |
|||
width="16px"></span>Employee Orientation & Training. |
|||
<ul style="list-style: none;font-weight: 400; color:#718096"> |
|||
<li>Complete Employee Orientation/Training Program</li> |
|||
</ul> |
|||
</li> |
|||
</ul> |
|||
</div> |
|||
</div> |
|||
<div id="tab3" class="tab-pane fade"> |
|||
<div class="col-mg-12 active" style="padding: 1rem 4rem;"> |
|||
<div class="py-3" |
|||
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="d-flex mb-3" style="font-size: 0.8rem; font-weight: 500;"><span>Version |
|||
17.0.1.0.0</span><span class="px-2">|</span><span |
|||
style="color: #714B67;font-weight: 600;">Released on:18th December 2023</span> |
|||
</div> |
|||
<p class="m-0" |
|||
style=" color:#718096!important; font-size:1rem !important;line-height: 28px;"> |
|||
Initial Commit for Employee Orientation & Training.</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="container mt-5"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5"> |
|||
<p class="m-0" |
|||
style="font-weight: 600; font-size: 24px; color:#000 !important"> |
|||
Related Products</p> |
|||
</div> |
|||
</div> |
|||
<div id="myCarousel" class="carousel slide py-3" data-ride="carousel"> |
|||
<div class="carousel-inner"> |
|||
<div class="carousel-item active"> |
|||
<div class="row p-4"> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/16.0/ohrms_salary_advance/" |
|||
style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px; "> |
|||
<img src="assets/modules/1.png" |
|||
alt="" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold"> |
|||
Open HRMS Advance Salary</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/16.0/oh_appraisal/" |
|||
style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px; "> |
|||
<img src="assets/modules/2.png" |
|||
alt="" width="100%" |
|||
height="auto"> |
|||
|
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold"> |
|||
Open HRMS Employee Appraisal</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/16.0/hr_employee_updation/" |
|||
style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px; "> |
|||
<img src="assets/modules/3.png" |
|||
alt="" width="100%" |
|||
height="auto"> |
|||
|
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold"> |
|||
Open HRMS Employee Info</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="carousel-item"> |
|||
<div class="row p-4"> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/16.0/hrms_dashboard/" |
|||
style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px; "> |
|||
<img src="assets/modules/4.png" |
|||
alt="" width="100%" |
|||
height="auto"> |
|||
|
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold"> |
|||
Open HRMS-HR Dashboard</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/13.0/hr_employee_shift/" |
|||
style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px;"> |
|||
<img src="assets/modules/5.png" |
|||
alt="" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold"> |
|||
Open HRMS Employee Shift</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/ohrms_salary_advance/" |
|||
style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px;"> |
|||
<img src="assets/modules/6.png" |
|||
alt="" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold"> |
|||
Open HRMS Advance Salary </p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<a class="carousel-control-prev" href="#myCarousel" |
|||
data-slide="prev" style="width: 35px; color: #000;"> |
|||
<span class="carousel-control-prev-icon"> |
|||
<i class="fa fa-chevron-left" |
|||
style="font-size: 24px;"></i> |
|||
</span> |
|||
</a> |
|||
<a class="carousel-control-next" href="#myCarousel" |
|||
data-slide="next" style="width: 35px; color: #000;"> |
|||
<span class="carousel-control-next-icon"> |
|||
<i class="fa fa-chevron-right" |
|||
style="font-size: 24px;"></i> |
|||
</span> |
|||
</a> |
|||
</div> |
|||
<div class="container mt-5"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
|||
<p class="m-0" |
|||
style="font-weight: 600; font-size: 24px; color:#000 !important"> |
|||
Our Services</p> |
|||
</div> |
|||
</div> |
|||
<div class="container my-5"> |
|||
<div class="row py-3"> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#13EA36 ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/cogs.png" |
|||
alt="service-icon" width="38px" |
|||
height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo |
|||
Customization</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#DBC711; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/wrench.png" |
|||
alt="service-icon" width="38px" |
|||
height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo |
|||
Implementation</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#FF6B6B ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/lifebuoy.png" |
|||
alt="service-icon" width="38px" |
|||
height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo |
|||
Support</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#FFA801 ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/user.png" |
|||
alt="service-icon" width="38px" |
|||
height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Hire |
|||
Odoo Developer</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> |
|||
|
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#54A0FF; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/puzzle.png" |
|||
alt="service-icon" width="38px" |
|||
height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo |
|||
Integration</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#6D7680 ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/update.png" |
|||
alt="service-icon" width="38px" |
|||
height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo |
|||
Migration</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#786FA6 ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/consultation.png" |
|||
alt="service-icon" width="38px" |
|||
height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo |
|||
Consultancy</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#F8A5C2 ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/training.png" |
|||
alt="service-icon" width="38px" |
|||
height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo |
|||
Implementation</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#E6BE26; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/license.png" |
|||
alt="service-icon" width="38px" |
|||
height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo |
|||
Licensing Consultancy</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="container mt-5"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
|||
<p class="m-0" |
|||
style="font-weight: 600; font-size: 24px; color:#000 !important"> |
|||
Our Industries</p> |
|||
</div> |
|||
</div> |
|||
<div class="container"> |
|||
<div class="row my-5 py-4"> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100 " |
|||
style="border-right: 1px solid rgb(209, 209, 209); border-bottom: 1px solid rgb(209, 209, 209); padding: 30px; box-shadow: 6px 0 10px rgba(228, 227, 227, 0.373);"> |
|||
<img src="assets/icons/trading-black.png" width="42px" |
|||
height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Trading</p> |
|||
<p>Easily procure and sell your products</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-right: 1px solid rgb(209, 209, 209);border-bottom: 1px solid rgb(209, 209, 209); padding: 30px;"> |
|||
<img src="assets/icons/pos-black.png" width="42px" |
|||
height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">POS</p> |
|||
<p>Easy configuration and convivial experience</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-right: 1px solid rgb(209, 209, 209);border-bottom: 1px solid rgba(0, 0, 0, 0.2); padding: 30px; box-shadow: 0 5px 10px rgba(228, 227, 227, 0.373)"> |
|||
<img src="assets/icons/education-black.png" width="42px" |
|||
height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;"> |
|||
Education</p> |
|||
<p>A platform for educational management</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-bottom: 1px solid rgb(209, 209, 209); padding: 30px; "> |
|||
<img src="assets/icons/manufacturing-black.png" |
|||
width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;"> |
|||
Manufacturing</p> |
|||
<p>Plan, track and schedule your operations</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px;"> |
|||
<img src="assets/icons/ecom-black.png" width="42px" |
|||
height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">E-commerce & |
|||
Website</p> |
|||
<p>Mobile friendly, awe-inspiring product pages</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px;box-shadow: 0 -5px 10px rgba(228, 227, 227, 0.373);"> |
|||
<img src="assets/icons/service-black.png" width="42px" |
|||
height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Service |
|||
Management</p> |
|||
<p>Keep track of services and invoice</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px; "> |
|||
<img src="assets/icons/restaurant-black.png" |
|||
width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;"> |
|||
Restaurant</p> |
|||
<p>Run your bar or restaurant methodically</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style=" padding: 30px;box-shadow: -5px 0 10px rgba(228, 227, 227, 0.373);"> |
|||
<img src="assets/icons/hotel-black.png" width="42px" |
|||
height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Hotel |
|||
Management</p> |
|||
<p>An all-inclusive hotel management application</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="container mt-5"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5"> |
|||
<p class="m-0" |
|||
style="font-weight: 600; font-size: 24px; color:#000 !important"> |
|||
Support</p> |
|||
</div> |
|||
</div> |
|||
<div class="container my-5"> |
|||
<div class="row" style="background-color: #FFFAFE;"> |
|||
<div class="col-md-6 pb-4 d-flex align-items-center justify-content-center" |
|||
style="border-right: 1px solid #D9D9D9;"> |
|||
<div style="padding: 30px;"> |
|||
<div class="d-flex align-items-center"> |
|||
<img src="assets/misc/support (1) 1.svg" alt="" |
|||
width="60px" style="margin-right: 12px;"> |
|||
<div style="padding: 0px 8px;"> |
|||
<span |
|||
style="color: #714B67;font-size: 24px;font-weight: 600;padding-bottom: 1rem;">Need |
|||
Help?</span> |
|||
<p class="m-0" style="color:#718096;">Got |
|||
questions or need help? Get in touch.</p> |
|||
<div style="font-weight: 400;"><span><img |
|||
src="assets/misc/support-email.svg" |
|||
alt="" |
|||
width="18px" |
|||
style="filter: invert(1);margin-right: 0.8rem;"></span>odoo@cybrosys.com |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-6 pb-4 d-flex align-items-center justify-content-center"> |
|||
<div style="padding: 30px;"> |
|||
<div class="d-flex align-items-center"> |
|||
<img src="assets/misc/whatsapp 1.svg" alt="" |
|||
width="60px" style="margin-right: 12px;"> |
|||
<div> |
|||
<span style="color: #714B67;font-size: 24px;font-weight: 600;">WhatsApp</span> |
|||
<p class="m-0" style="color:#718096;">Say hi to |
|||
us on WhatsApp!</p> |
|||
<div style="font-weight: 400; font-size: 16px;"><span><img |
|||
src="assets/misc/phone.svg" |
|||
alt="" width="14px" |
|||
style="filter: invert(1); margin-right: 0.8rem;"></span>+91 |
|||
99456767686 |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</section> |
|||
<!-- Optional JavaScript --> |
|||
<!-- jQuery first, then Popper.js, then Bootstrap JS --> |
|||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> |
|||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> |
|||
</body> |
|||
</html> |
@ -0,0 +1,77 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<!-- Tree view of checklist line--> |
|||
<record id="checklist_line_view_tree" model="ir.ui.view"> |
|||
<field name="name">checklist.line.view.tree</field> |
|||
<field name="model">checklist.line</field> |
|||
<field name="priority" eval="8"/> |
|||
<field name="arch" type="xml"> |
|||
<tree string="Orientation Checklists Lines"> |
|||
<field name="line_name"/> |
|||
<field name="responsible_user_id"/> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
<!-- Form view of checklist line--> |
|||
<record id="checklist_line_view_form" model="ir.ui.view"> |
|||
<field name="name">checklist.line.view.form</field> |
|||
<field name="model">checklist.line</field> |
|||
<field name="priority" eval="8"/> |
|||
<field name="arch" type="xml"> |
|||
<form string="Orientation Checklists Lines"> |
|||
<sheet> |
|||
<group colspan="1" col="4" name="main"> |
|||
<field name="line_name"/> |
|||
<field name="responsible_user_id"/> |
|||
</group> |
|||
</sheet> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
<!-- Search view of checklist line--> |
|||
<record id="checklist_line_view_search" model="ir.ui.view"> |
|||
<field name="name">checklist.line.view.search</field> |
|||
<field name="model">checklist.line</field> |
|||
<field name="priority" eval="8"/> |
|||
<field name="arch" type="xml"> |
|||
<search string="Orientation Checklists Lines"> |
|||
<field name="line_name"/> |
|||
<field name="responsible_user_id"/> |
|||
<newline/> |
|||
</search> |
|||
</field> |
|||
</record> |
|||
<record model="ir.actions.act_window" id="checklist_line_action"> |
|||
<field name="name">Orientation Checklist Line</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">checklist.line</field> |
|||
<field name="view_mode">tree,form</field> |
|||
<field name="search_view_id" ref="checklist_line_view_search"/> |
|||
<field name="help" type="html"> |
|||
<field class="oe_view_nocontent_create"> |
|||
Create Orientation Checklists Lines. |
|||
</field> |
|||
</field> |
|||
</record> |
|||
<menuitem |
|||
id="employee_orientation_menu_root" |
|||
name="Orientations" |
|||
parent="hr.menu_hr_root" |
|||
sequence="90" |
|||
/> |
|||
<!-- Configuration Menu --> |
|||
<menuitem id="orientation_checklist_menu_root" |
|||
name="Orientation Program" |
|||
parent="hr.menu_human_resources_configuration" |
|||
sequence="10" |
|||
groups="hr.group_hr_manager" |
|||
/> |
|||
<menuitem |
|||
id="checklist_line_menu_action" |
|||
action="checklist_line_action" |
|||
name="Orientation Checklist Line" |
|||
parent="orientation_checklist_menu_root" |
|||
sequence="20" |
|||
groups="hr.group_hr_manager" |
|||
/> |
|||
</odoo> |
@ -0,0 +1,129 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<!-- Tree view of employee orientation--> |
|||
<record id="employee_orientation_view_tree" model="ir.ui.view"> |
|||
<field name="name">employee.orientation.view.tree</field> |
|||
<field name="model">employee.orientation</field> |
|||
<field name="arch" type="xml"> |
|||
<tree string="Employee Orientation"> |
|||
<field name="employee_id"/> |
|||
<field name="department_id"/> |
|||
<field name="responsible_user_id"/> |
|||
<field name="orientation_id"/> |
|||
<field name="state"/> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
<!-- Form view of employee orientation--> |
|||
<record id="employee_orientation_view_form" model="ir.ui.view"> |
|||
<field name="name">employee.orientation.view.form</field> |
|||
<field name="model">employee.orientation</field> |
|||
<field name="arch" type="xml"> |
|||
<form string="Employee Orientation"> |
|||
<header> |
|||
<button name="action_confirm_orientation" string="Confirm" |
|||
type="object" invisible="state !='draft'" |
|||
class="btn-primary"/> |
|||
<button name="action_complete_orientation" |
|||
string="Mark Done" type="object" |
|||
invisible="state !='confirm'" class="btn-primary"/> |
|||
<button name="action_cancel_orientation" string="Cancel" |
|||
type="object" |
|||
invisible="state not in ['draft','confirm']"/> |
|||
<field name="state" widget="statusbar" |
|||
statusbar_visible="draft,confirm,complete"/> |
|||
</header> |
|||
<sheet> |
|||
<div class="oe_title"> |
|||
<h1> |
|||
<field name="name" readonly="1"/> |
|||
</h1> |
|||
</div> |
|||
<group colspan="1" col="4" name="main"> |
|||
<field name="employee_id" |
|||
readonly="state in ['confirm', 'complete']"/> |
|||
<field name="department_id"/> |
|||
<field name="date" |
|||
readonly="state in ['confirm', 'complete']"/> |
|||
<field name="job_id" |
|||
readonly="state in ['confirm', 'complete']"/> |
|||
<field name="responsible_user_id" |
|||
readonly="state in ['confirm', 'complete']"/> |
|||
<field name="parent_id"/> |
|||
<field name="employee_company_id" |
|||
readonly="state in ['confirm', 'complete']"/> |
|||
<field name="orientation_id" |
|||
readonly="state in ['confirm', 'complete']"/> |
|||
</group> |
|||
<notebook colspan="4"> |
|||
<page name="checklist_lines" |
|||
string="Orientation Checklists Lines" |
|||
invisible="state not in ['complete','confirm']"> |
|||
<field name="orientation_request_ids" |
|||
readonly="state not in ['confirm','draft']"> |
|||
<tree string="lines" editable="bottom" |
|||
create="true"> |
|||
<field name="request_name"/> |
|||
<field name="partner_id"/> |
|||
<field name="request_expected_date"/> |
|||
<field name="state"/> |
|||
</tree> |
|||
<form> |
|||
<group colspan="1" col="4" name="main"> |
|||
<field name="request_name"/> |
|||
<field name="request_orientation_id"/> |
|||
<field name="employee_company_id" |
|||
readonly="1"/> |
|||
<field name="partner_id"/> |
|||
<field name="request_date" |
|||
readonly="1"/> |
|||
<field name="request_expected_date"/> |
|||
<field name="employee_id" |
|||
invisible="1"/> |
|||
</group> |
|||
</form> |
|||
</field> |
|||
</page> |
|||
<page name="note_book" |
|||
string="Notes"> |
|||
<field name="note" colspan="4" nolabel="1"/> |
|||
</page> |
|||
</notebook> |
|||
</sheet> |
|||
<div class="oe_chatter"> |
|||
<field name="message_follower_ids" widget="mail_followers" |
|||
groups="base.group_user"/> |
|||
<field name="message_ids" widget="mail_thread"/> |
|||
</div> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
<!-- Search view of employee orientation--> |
|||
<record id="employee_orientation_view_search" model="ir.ui.view"> |
|||
<field name="name">employee.orientation.view.search</field> |
|||
<field name="model">employee.orientation</field> |
|||
<field name="arch" type="xml"> |
|||
<search string="Employee Orientation"> |
|||
<field name="employee_id"/> |
|||
<field name="department_id"/> |
|||
</search> |
|||
</field> |
|||
</record> |
|||
<record model="ir.actions.act_window" id="employee_orientation_action"> |
|||
<field name="name">Employee Orientation</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">employee.orientation</field> |
|||
<field name="view_mode">tree,form</field> |
|||
<field name="search_view_id" ref="employee_orientation_view_search"/> |
|||
<field name="help" type="html"> |
|||
<field class="oe_view_nocontent_create"> |
|||
Create Employee Orientation. |
|||
</field> |
|||
</field> |
|||
</record> |
|||
<!-- Menus of employee orientation--> |
|||
<menuitem action="employee_orientation_action" |
|||
id="employee_orientation_menu_action" name="Employee Orientation" |
|||
parent="employee_orientation_menu_root" sequence="1" |
|||
groups="hr.group_hr_manager,hr.group_hr_user"/> |
|||
</odoo> |
@ -0,0 +1,122 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<!-- Tree view of employee training--> |
|||
<record id="employee_training_view_tree" model="ir.ui.view"> |
|||
<field name="name">employee.training.view.tree</field> |
|||
<field name="model">employee.training</field> |
|||
<field name="arch" type="xml"> |
|||
<tree string="Employee Training Program"> |
|||
<field name="program_name"/> |
|||
<field name="program_department_id"/> |
|||
<field name="program_convener_id" |
|||
domain="[('department_id.name', '=', 'program_department.name')]"/> |
|||
<field name="state"/> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
<!-- Form view of employee training--> |
|||
<record id="employee_training_view_form" model="ir.ui.view"> |
|||
<field name="name">employee.training.view.form</field> |
|||
<field name="model">employee.training</field> |
|||
<field name="arch" type="xml"> |
|||
<form string="Employee Training Program"> |
|||
<header> |
|||
<button name="action_confirm_send_mail" |
|||
string="Send by Email" type="object" |
|||
class="oe_highlight" invisible="state !='draft'"/> |
|||
<button name="action_confirm_event" string="Confirm Event" |
|||
type="object" invisible="state !='new'" |
|||
class="btn-primary"/> |
|||
<button name="action_complete_event" string="Event Complete" |
|||
type="object" invisible="state !='confirm'" |
|||
class="btn-primary"/> |
|||
<button name="action_cancel_event" string="Cancel Event" |
|||
type="object" invisible="state !='confirm'"/> |
|||
<button name="print_event" string="Print Certificates" |
|||
type="object" class="oe_highlight" |
|||
invisible="state !='complete'"/> |
|||
<field name="state" widget="statusbar" |
|||
statusbar_visible="new,confirm,complete"/> |
|||
</header> |
|||
<sheet> |
|||
<group colspan="1" col="4" name="main"> |
|||
<field name="program_name"/> |
|||
<field name="program_department_id"/> |
|||
<label for="date_from" string="Time Period"/> |
|||
<div> |
|||
<field name="date_from" class="oe_inline"/> |
|||
to |
|||
<field name="date_to" class="oe_inline"/> |
|||
</div> |
|||
<field name="program_convener_id"/> |
|||
</group> |
|||
<notebook colspan="4"> |
|||
<page name="checklist_lines" string="Employee Details"> |
|||
<field name="training_ids"> |
|||
<tree editable="true"> |
|||
<field name="name"/> |
|||
<field name="job_id"/> |
|||
<field name="parent_id"/> |
|||
<field name="certificates"/> |
|||
</tree> |
|||
</field> |
|||
</page> |
|||
<page name="note_book" |
|||
string="Notes"> |
|||
<field name="note_id" colspan="4" nolabel="1"/> |
|||
</page> |
|||
</notebook> |
|||
</sheet> |
|||
<div class="oe_chatter"> |
|||
<field name="message_follower_ids" widget="mail_followers" |
|||
groups="base.group_user"/> |
|||
<field name="message_ids" widget="mail_thread"/> |
|||
</div> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
<!-- Search view of employee training--> |
|||
<record id="employee_training_view_search" model="ir.ui.view"> |
|||
<field name="name">employee.training.view.search</field> |
|||
<field name="model">employee.training</field> |
|||
<field name="arch" type="xml"> |
|||
<search string="Employee Training Program"> |
|||
<field name="program_name"/> |
|||
<newline/> |
|||
</search> |
|||
</field> |
|||
</record> |
|||
<!-- Action of employee training--> |
|||
<record model="ir.actions.act_window" id="employee_training_action"> |
|||
<field name="name">Employee Training Program</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">employee.training</field> |
|||
<field name="view_mode">tree,form</field> |
|||
<field name="search_view_id" ref="employee_training_view_search"/> |
|||
<field name="domain">[]</field> |
|||
<field name="context">{}</field> |
|||
<field name="help" type="html"> |
|||
<field class="oe_view_nocontent_create"> |
|||
Create Employee Training Program. |
|||
</field> |
|||
</field> |
|||
</record> |
|||
<menuitem |
|||
id="menu_employee_training_child" |
|||
name="Training Program" |
|||
parent="hr.menu_hr_root" |
|||
action="employee_training_action" |
|||
sequence="91" |
|||
/> |
|||
<record id="view_employee_form" model="ir.ui.view"> |
|||
<field name="name">hr.employee.view.form.inherit.employee.orientation</field> |
|||
<field name="model">hr.employee</field> |
|||
<field name="inherit_id" ref="hr.view_employee_form"/> |
|||
<field name="priority">30</field> |
|||
<field name="arch" type="xml"> |
|||
<xpath expr="//field[@name='parent_id']" position="after"> |
|||
<field name="certificates" editable="true"/> |
|||
</xpath> |
|||
</field> |
|||
</record> |
|||
</odoo> |
@ -0,0 +1,82 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<!-- Tree view of orientation checklist--> |
|||
<record id="orientation_checklist_view_tree" model="ir.ui.view"> |
|||
<field name="name">orientation.checklist.view.tree</field> |
|||
<field name="model">orientation.checklist</field> |
|||
<field name="priority" eval="8"/> |
|||
<field name="arch" type="xml"> |
|||
<tree string="Orientation Checklists"> |
|||
<field name="checklist_name"/> |
|||
<field name="checklist_department_id"/> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
<!-- Form view of orientation checklist--> |
|||
<record id="orientation_checklist_view_form" model="ir.ui.view"> |
|||
<field name="name">orientation.checklist.view.form</field> |
|||
<field name="model">orientation.checklist</field> |
|||
<field name="priority" eval="8"/> |
|||
<field name="arch" type="xml"> |
|||
<form string="Orientation Checklists"> |
|||
<sheet> |
|||
<group colspan="1" col="4" name="main"> |
|||
<field name="checklist_name"/> |
|||
<field name="checklist_department_id"/> |
|||
<field name="active"/> |
|||
</group> |
|||
<notebook colspan="4"> |
|||
<page name="checklist_line" string="Checklist Lines"> |
|||
<field name="checklist_line_ids"> |
|||
<tree string="Checklist Lines" |
|||
editable="bottom"> |
|||
<field name="line_name"/> |
|||
<field name="responsible_user_id"/> |
|||
</tree> |
|||
</field> |
|||
</page> |
|||
</notebook> |
|||
</sheet> |
|||
<div class="oe_chatter"> |
|||
<field name="message_follower_ids" widget="mail_followers" |
|||
groups="base.group_user"/> |
|||
<field name="message_ids" widget="mail_thread"/> |
|||
</div> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
<!-- Search view of orientation checklist--> |
|||
<record id="orientation_checklist_view_search" model="ir.ui.view"> |
|||
<field name="name">orientation.checklist.view.search</field> |
|||
<field name="model">orientation.checklist</field> |
|||
<field name="priority" eval="8"/> |
|||
<field name="arch" type="xml"> |
|||
<search string="Orientation Checklists"> |
|||
<field name="checklist_name"/> |
|||
<field name="checklist_department_id"/> |
|||
<newline/> |
|||
</search> |
|||
</field> |
|||
</record> |
|||
<record model="ir.actions.act_window" id="orientation_checklist_action"> |
|||
<field name="name">Orientation Checklist</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">orientation.checklist</field> |
|||
<field name="view_mode">tree,form</field> |
|||
<field name="search_view_id" ref="orientation_checklist_view_search"/> |
|||
<field name="context">{'search_default_active': True}</field> |
|||
<field name="help" type="html"> |
|||
<field class="oe_view_nocontent_create"> |
|||
Create Orientation Checklists. |
|||
</field> |
|||
</field> |
|||
</record> |
|||
<!-- Menu item of orientation checklist--> |
|||
<menuitem id="orientation_checklist_menu_action" |
|||
name="Orientation Checklist" |
|||
parent="orientation_checklist_menu_root" |
|||
action="orientation_checklist_action" |
|||
sequence="10" |
|||
groups="hr.group_hr_manager" |
|||
/> |
|||
</odoo> |
@ -0,0 +1,95 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<!-- Tree view of orientation request--> |
|||
<record id="orientation_request_view_tree" model="ir.ui.view"> |
|||
<field name="name">orientation.request.view_tree</field> |
|||
<field name="model">orientation.request</field> |
|||
<field name="arch" type="xml"> |
|||
<tree string="Employee Orientation" create="0"> |
|||
<field name="request_name"/> |
|||
<field name="request_orientation_id"/> |
|||
<field name="partner_id"/> |
|||
<field name="state"/> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
<!-- Form view of orientation request--> |
|||
<record id="orientation_request_view_form" model="ir.ui.view"> |
|||
<field name="name">orientation.request.view.form</field> |
|||
<field name="model">orientation.request</field> |
|||
<field name="arch" type="xml"> |
|||
<form string="Employee Orientation" create="0"> |
|||
<header> |
|||
<button name="action_confirm_send_mail" |
|||
string="Send by Email" type="object" |
|||
class="oe_highlight" |
|||
invisible="state not in ['draft','confirm']"/> |
|||
<button name="action_confirm_request" string="Complete" |
|||
type="object" invisible="state !='new'" |
|||
class="btn-primary"/> |
|||
<button name="action_cancel_request" string="Cancel" |
|||
type="object" invisible="state !='new'"/> |
|||
<field name="state" widget="statusbar" |
|||
statusbar_visible="new,complete"/> |
|||
</header> |
|||
<sheet> |
|||
<group colspan="1" col="4" name="main"> |
|||
<field name="request_name" readonly="1"/> |
|||
<field name="request_orientation_id" readonly="1"/> |
|||
<field name="employee_id" readonly="1"/> |
|||
<field name="partner_id" readonly="1"/> |
|||
<field name="request_date" readonly="1"/> |
|||
<field name="request_expected_date" |
|||
readonly="state not in ['confirm','draft']"/> |
|||
<field name="employee_company_id" readonly="1"/> |
|||
</group> |
|||
<notebook> |
|||
<page name="orientation_line_attachments" |
|||
string="Documents"> |
|||
<field name="attachment_ids" |
|||
widget="many2many_binary" |
|||
readonly="state not in ['confirm','draft']"/> |
|||
</page> |
|||
<page name="note_book" string="Notes"> |
|||
<field name="note" nolabel="1"/> |
|||
</page> |
|||
</notebook> |
|||
</sheet> |
|||
<div class="oe_chatter"> |
|||
<field name="message_follower_ids" widget="mail_followers" |
|||
groups="base.group_user"/> |
|||
<field name="message_ids" widget="mail_thread"/> |
|||
</div> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
<!-- Search view of orientation request--> |
|||
<record id="orientation_request_view_search" model="ir.ui.view"> |
|||
<field name="name">orientation.request.view_search</field> |
|||
<field name="model">orientation.request</field> |
|||
<field name="arch" type="xml"> |
|||
<search string="Employee Orientation"> |
|||
<field name="request_name"/> |
|||
<newline/> |
|||
</search> |
|||
</field> |
|||
</record> |
|||
<!-- Action of orientation request--> |
|||
<record model="ir.actions.act_window" id="orientation_request_action"> |
|||
<field name="name">Orientation Request</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">orientation.request</field> |
|||
<field name="view_mode">tree,form</field> |
|||
<field name="search_view_id" ref="orientation_request_view_search"/> |
|||
<field name="help" type="html"> |
|||
<field class="oe_view_nocontent_create"> |
|||
Create Orientation Requests. |
|||
</field> |
|||
</field> |
|||
</record> |
|||
<!-- Menu item of orientation request--> |
|||
<menuitem id="orientation_request_menu_action" |
|||
action="orientation_request_action" |
|||
name="Orientation Request" parent="employee_orientation_menu_root" |
|||
sequence="2"/> |
|||
</odoo> |
@ -0,0 +1,22 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Jumana Haseen @cybrosys(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/>. |
|||
# |
|||
############################################################################# |
|||
from . import orientation_force_complete |
@ -0,0 +1,54 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Jumana Haseen @cybrosys(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/>. |
|||
# |
|||
############################################################################# |
|||
from odoo import api, fields, models |
|||
|
|||
|
|||
class OrientationForceComplete(models.TransientModel): |
|||
"""This class creates a model 'orientation.force.complete' |
|||
and added required fields""" |
|||
_name = 'orientation.force.complete' |
|||
_description = "Orientation Force Complete" |
|||
|
|||
name = fields.Char(string="Name") |
|||
orientation_id = fields.Many2one('employee.orientation', |
|||
string='Orientation', help="Orientation " |
|||
"name.") |
|||
orientation_lines = fields.One2many('orientation.request', |
|||
string='Orientation Lines', |
|||
compute='_compute_pending_lines', |
|||
help="Orientation lines.") |
|||
|
|||
@api.onchange('orientation_id') |
|||
def _compute_pending_lines(self): |
|||
"""Function to update orientation lines on changing of orientation""" |
|||
pending = [] |
|||
for data in self.orientation_id.orientation_request_ids: |
|||
if data.state == 'new': |
|||
pending.append(data.id) |
|||
self.update({'orientation_lines': pending}) |
|||
|
|||
def force_complete(self): |
|||
"""Function on force complete button""" |
|||
for line in self.orientation_lines: |
|||
if line.state != 'cancel': |
|||
line.state = 'complete' |
|||
self.orientation_id.write({'state': 'complete'}) |
@ -0,0 +1,25 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<!-- View form of orientation on force complete--> |
|||
<record id="orientation_force_complete_view_form" model="ir.ui.view"> |
|||
<field name="name">orientation.force.complete.view.form</field> |
|||
<field name="model">orientation.force.complete</field> |
|||
<field name="arch" type="xml"> |
|||
<form string="Complete Orientation"> |
|||
<p class="oe_gray"> |
|||
Please make sure that orientations programs are already |
|||
done. |
|||
</p> |
|||
<field name="orientation_id" invisible="1"/> |
|||
<label for="orientation_lines" string="Pending Lines"/> |
|||
<field name="orientation_lines" readonly="1"/> |
|||
<footer> |
|||
<button name="force_complete" string="Force Complete" |
|||
type="object" class="btn-primary"/> |
|||
<button string="Cancel" class="btn-default" |
|||
special="cancel"/> |
|||
</footer> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
</odoo> |