@ -0,0 +1,40 @@ |
|||||
|
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg |
||||
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html |
||||
|
:alt: License: AGPL-3 |
||||
|
|
||||
|
Equipment Request & IT Operations |
||||
|
==================================== |
||||
|
* Equipment Request & IT Operations For Odoo 17 community |
||||
|
|
||||
|
Company |
||||
|
------- |
||||
|
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
||||
|
|
||||
|
Credits |
||||
|
------- |
||||
|
Developer: (V17) Mufeeda Shirin, |
||||
|
(V16) Anfas |
||||
|
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,22 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
################################################################################ |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Cybrosys Techno Solutions (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 |
@ -0,0 +1,52 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
################################################################################ |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Cybrosys Techno Solutions (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': "Equipment Request & IT Operation", |
||||
|
'version': "17.0.1.0.0", |
||||
|
'category': 'Human Resources', |
||||
|
'description': "This module allows your employees to send requests to " |
||||
|
"the Department Manager of Equipment for" |
||||
|
"equipment type as equipment requests and equipment " |
||||
|
"damage expense reimbursement requests Followed" |
||||
|
"by Department manager approval and HR Officer approval " |
||||
|
"workflow for equipment request and" |
||||
|
"equipment damage request", |
||||
|
'summary': 'Create Equipment Requests', |
||||
|
'author': 'Cybrosys Techno Solutions', |
||||
|
'company': 'Cybrosys Techno Solutions', |
||||
|
'maintainer': 'Cybrosys Techno Solutions', |
||||
|
'images': ['static/description/banner.jpg'], |
||||
|
'website': 'https://www.cybrosys.com', |
||||
|
'depends': ['base', 'hr_expense', 'hr', 'stock', 'account'], |
||||
|
'data': [ |
||||
|
'security/ir.model.access.csv', |
||||
|
'security/user_groups.xml', |
||||
|
'views/equipment_request_views.xml', |
||||
|
'report/equipment_report.xml', |
||||
|
'report/equipment_report_template.xml', |
||||
|
'views/menu_action.xml', |
||||
|
], |
||||
|
'license': 'AGPL-3', |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
'application': False, |
||||
|
} |
@ -0,0 +1,7 @@ |
|||||
|
## Module <equipment_request_it_operations> |
||||
|
|
||||
|
#### 06.02.2024 |
||||
|
#### Version 17.0.1.0.0 |
||||
|
#### ADD |
||||
|
|
||||
|
- Initial commit for Equipment Request & IT Operations |
@ -0,0 +1,26 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
################################################################################ |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Cybrosys Techno Solutions (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 equipment_request |
||||
|
from . import damage_detail |
||||
|
from . import equipment_detail |
||||
|
from . import hr_expense |
||||
|
from . import stock_picking |
@ -0,0 +1,59 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
################################################################################ |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Cybrosys Techno Solutions (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 DamageDetail(models.Model): |
||||
|
"""Model to manage damage details associated with expense items.""" |
||||
|
_name = "damage.detail" |
||||
|
_description = "Details of expenses related to equipment damage." |
||||
|
_rec_name = 'product_id' |
||||
|
|
||||
|
product_id = fields.Many2one('product.product', string='Product', |
||||
|
help='A reference to the specific product ' |
||||
|
'associated with this expense item.') |
||||
|
unit_price = fields.Float(string='Unit Price', |
||||
|
help='The cost per unit of the associated ' |
||||
|
'product.') |
||||
|
quantity = fields.Float(string='Quantity', default=1, |
||||
|
help='The number of units of the associated product' |
||||
|
'that were purchased.') |
||||
|
expense_note = fields.Char(string='Description', |
||||
|
help='A brief description or' |
||||
|
'note about the expense item.') |
||||
|
equipment_damage_id = fields.Many2one('equipment.request', string='Damage', |
||||
|
help='A reference to the equipment ' |
||||
|
'request that led to this ' |
||||
|
'expense' |
||||
|
'item (if applicable).') |
||||
|
|
||||
|
@api.onchange('product_id') |
||||
|
def _onchange_product_id(self): |
||||
|
"""Changing the Product Field will give Product's Unit Price and also |
||||
|
resets to Quantity to 1""" |
||||
|
self.unit_price = self.product_id.lst_price |
||||
|
self.quantity = 1 |
||||
|
|
||||
|
@api.onchange('quantity') |
||||
|
def _onchange_quantity(self): |
||||
|
"""Changing Quantity causes the Unit Price of Product to Change""" |
||||
|
self.unit_price = self.product_id.lst_price * self.quantity |
@ -0,0 +1,55 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
################################################################################ |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Cybrosys Techno Solutions (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 EquipmentDetail(models.Model): |
||||
|
"""Model to manage equipment details associated with request items.""" |
||||
|
_name = "equipment.detail" |
||||
|
_description = "Details of equipment associated with request items." |
||||
|
_rec_name = 'product_id' |
||||
|
|
||||
|
product_id = fields.Many2one('product.product', string='Product', |
||||
|
help='A reference to the specific product ' |
||||
|
'associated with this item.') |
||||
|
description = fields.Char(string='Description', |
||||
|
help='A brief description of the item.') |
||||
|
quantity = fields.Float(string='Quantity', default=1, |
||||
|
help='The number of units of the associated product' |
||||
|
'that were requested or used.') |
||||
|
product_uom_id = fields.Many2one('uom.uom', |
||||
|
string='Product Unit of Measure', |
||||
|
help='The unit of measure for the ' |
||||
|
'associated' |
||||
|
'product.') |
||||
|
equipment_detail_id = fields.Many2one('equipment.request', |
||||
|
string='Request Equipments', |
||||
|
help='A reference to the equipment ' |
||||
|
'request that led to this item ' |
||||
|
'(if' |
||||
|
'applicable).') |
||||
|
|
||||
|
@api.onchange('product_id') |
||||
|
def _onchange_product_id(self): |
||||
|
"""Changing the Product Field will reset the Quantity to 1""" |
||||
|
self.quantity = 1 |
||||
|
self.product_uom_id = self.product_id.uom_id |
@ -0,0 +1,249 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
################################################################################ |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Cybrosys Techno Solutions (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 |
||||
|
from odoo.exceptions import UserError |
||||
|
|
||||
|
|
||||
|
class EquipmentRequest(models.Model): |
||||
|
""" Model representing equipment request records. |
||||
|
This model stores information about equipment requests made by employees, |
||||
|
including details such as the type of request (software or hardware), the |
||||
|
employee making the request, the department, job position, user who created |
||||
|
the request, and other related information. |
||||
|
The model also includes fields to track the approval status of the request, |
||||
|
any damages associated with the equipment, expenses related to the request, |
||||
|
and internal orders associated with the request.""" |
||||
|
|
||||
|
_name = "equipment.request" |
||||
|
_description = "Model representing equipment requests made by employees" |
||||
|
_inherit = ['mail.thread', 'mail.activity.mixin'] |
||||
|
|
||||
|
name = fields.Char(compute='_compute_name', |
||||
|
help="Auto-generated field based on record's ID") |
||||
|
request_for = fields.Selection([ |
||||
|
('software', 'Software'), |
||||
|
('hardware', 'Hardware')], string='Request For', |
||||
|
copy=False, default='software', required=True, |
||||
|
help="Type of Equipment Request") |
||||
|
employee_name_id = fields.Many2one('hr.employee', string='Employee', |
||||
|
required=True, |
||||
|
help="Employee requesting the equipment") |
||||
|
department_name_id = fields.Many2one('hr.department', string='Department', |
||||
|
help="Department of the employee") |
||||
|
job_position_id = fields.Many2one('hr.job', string='Job Position', |
||||
|
help="Job position of the employee") |
||||
|
user_login_id = fields.Many2one('res.users', string='User', |
||||
|
default=lambda self: self.env.user, |
||||
|
help="User who created the equipment " |
||||
|
"request") |
||||
|
damage_check = fields.Boolean(string='Damage', |
||||
|
help="Whether the equipment" |
||||
|
" is damaged or not", tracking=True) |
||||
|
company_name_id = fields.Many2one('res.company', string='Company', |
||||
|
default=lambda self: self.env.company, |
||||
|
help="Company of the employee") |
||||
|
source_location_id = fields.Many2one('stock.location', |
||||
|
string='Source Location', |
||||
|
help="Location from where the " |
||||
|
"equipment" |
||||
|
"will be sourced") |
||||
|
destination_location_id = fields.Many2one('stock.location', |
||||
|
string='Destination Location', |
||||
|
help="Location where the " |
||||
|
"equipment" |
||||
|
"will be sent") |
||||
|
created_user_id = fields.Many2one('res.users', string='Created By', |
||||
|
default=lambda self: self.env.user, |
||||
|
help="User who created the equipment " |
||||
|
"request") |
||||
|
create_date = fields.Date(string='Created Date', |
||||
|
help="Date when the equipment " |
||||
|
"request was created", tracking=True) |
||||
|
validate_user_id = fields.Many2one('res.users', string='Department Manager', |
||||
|
help="Manager who approves the equipment" |
||||
|
"request") |
||||
|
validate_date = fields.Date(string='Department Approved Date', |
||||
|
help="Date when the department manager approved" |
||||
|
"the equipment request") |
||||
|
hr_user_id = fields.Many2one('res.users', string='HR Manager', |
||||
|
help="HR Manager who approves the equipment " |
||||
|
"request") |
||||
|
hr_date = fields.Date(string='HR Approved Date', |
||||
|
help="Date when the HR Manager approved the equipment" |
||||
|
"request") |
||||
|
stock_user_id = fields.Many2one('res.users', string='Stock Manager', |
||||
|
help="Stock Manager who approves the " |
||||
|
"equipment" |
||||
|
"request") |
||||
|
stock_date = fields.Date(string='Stock Approved Date', |
||||
|
help="Date when the Stock Manager approved the " |
||||
|
"equipment request") |
||||
|
status = fields.Selection([ |
||||
|
('draft', 'Draft'), |
||||
|
('waiting', 'Waiting for Approval of Department'), |
||||
|
('approval', 'Waiting For Approval of HR'), |
||||
|
('approved', 'Approved'), |
||||
|
('assigned', 'Equipment Assigned'), |
||||
|
('reject', 'Rejected')], |
||||
|
string='State', copy=False, default='draft', |
||||
|
help="Status of the equipment request", tracking=True) |
||||
|
is_expensed = fields.Boolean(default=False, |
||||
|
help="Whether the equipment request has been " |
||||
|
"expensed or not") |
||||
|
equipment_request_ids = fields.One2many('equipment.detail', |
||||
|
'equipment_detail_id', |
||||
|
string='Request Equipments', |
||||
|
help="Equipment details for the " |
||||
|
"equipment request") |
||||
|
equipment_damage_ids = fields.One2many('damage.detail', |
||||
|
'equipment_damage_id', |
||||
|
string='Damage Details', |
||||
|
help="Details of damages (if any) " |
||||
|
"for" |
||||
|
"the equipment") |
||||
|
equipment_expense_ids = fields.One2many('hr.expense', |
||||
|
'equipment_expense_id', |
||||
|
string='Expenses', |
||||
|
help="Expenses (if any) associated " |
||||
|
"with the equipment request") |
||||
|
equipment_internal_ids = fields.One2many('stock.picking', |
||||
|
'equipment_transfer_id', |
||||
|
string='Internal Orders', |
||||
|
help="The internal orders " |
||||
|
"related to" |
||||
|
"this equipment request.") |
||||
|
|
||||
|
@api.onchange('employee_name_id') |
||||
|
def _onchange_employee_name_id(self): |
||||
|
"""Changing the Employee will also write the Department he belongs to |
||||
|
and also Job Position""" |
||||
|
if self.employee_name_id: |
||||
|
self.department_name_id = self.employee_name_id.department_id |
||||
|
self.job_position_id = self.employee_name_id.job_id |
||||
|
|
||||
|
@api.depends('request_for', 'employee_name_id') |
||||
|
def _compute_name(self): |
||||
|
""" _rec_name = Employee Name + Request Type + Creation Date""" |
||||
|
for record in self: |
||||
|
record.name = str(record.employee_name_id.name) + ' - ' + str( |
||||
|
record.request_for) + ' - ' + str( |
||||
|
fields.date.today()) |
||||
|
|
||||
|
def action_confirm(self): |
||||
|
"""Confirm Button""" |
||||
|
self.write({'status': 'waiting'}) |
||||
|
|
||||
|
def action_reject(self): |
||||
|
"""Reject Button""" |
||||
|
self.write({'status': 'reject'}) |
||||
|
|
||||
|
def action_waiting_approval_dept(self): |
||||
|
"""Department Approval Button also write the user who Approved this |
||||
|
button and Date he approved""" |
||||
|
self.write({'status': 'approval', 'validate_user_id': self.env.user.id, |
||||
|
'validate_date': fields.Date.today()}) |
||||
|
|
||||
|
def action_waiting_approval_hr(self): |
||||
|
"""HR Approval Button also write the user who Approved this button |
||||
|
and Date he approved""" |
||||
|
self.write({'status': 'approved', 'hr_user_id': self.env.user.id, |
||||
|
'hr_date': fields.Date.today()}) |
||||
|
|
||||
|
def action_internal_transfer(self): |
||||
|
"""Create Internal Transfer and Go the Final Status if no source |
||||
|
location and destination location User Error Shows""" |
||||
|
if not self.source_location_id: |
||||
|
raise UserError('Source Location is not defined') |
||||
|
if not self.destination_location_id: |
||||
|
raise UserError('Destination Location is not defined') |
||||
|
picking_type_id = self.env['stock.picking.type'].search( |
||||
|
[('code', '=', 'internal')]) |
||||
|
if not picking_type_id: |
||||
|
picking_type_id = self.env['stock.picking.type'].create({ |
||||
|
'name': 'Internal Transfers', |
||||
|
'code': 'internal', |
||||
|
'sequence_code': 'INT', |
||||
|
}) |
||||
|
move_vals = { |
||||
|
'picking_type_id': picking_type_id.id, |
||||
|
'location_id': self.source_location_id.id, |
||||
|
'location_dest_id': self.destination_location_id.id, |
||||
|
'equipment_transfer_id': self.id, |
||||
|
} |
||||
|
picking = self.env['stock.picking'].create(move_vals) |
||||
|
for value in self.equipment_request_ids: |
||||
|
self.env['stock.move'].create({ |
||||
|
'picking_id': picking.id, |
||||
|
'name': value.product_id.name, |
||||
|
'product_id': value.product_id.id, |
||||
|
'product_uom_qty': value.quantity, |
||||
|
'product_uom': value.product_id.uom_id.id, |
||||
|
'location_id': self.source_location_id.id, |
||||
|
'location_dest_id': self.destination_location_id.id, |
||||
|
}) |
||||
|
picking.action_confirm() |
||||
|
picking.action_assign() |
||||
|
self.write({'status': 'assigned', 'stock_user_id': self.env.user.id, |
||||
|
'stock_date': fields.Date.today()}) |
||||
|
|
||||
|
def action_expense(self): |
||||
|
"""Button of Create Expense And will Create Expense in Expense Module""" |
||||
|
if self.equipment_damage_ids: |
||||
|
for value in self.equipment_damage_ids: |
||||
|
self.env['hr.expense'].create({ |
||||
|
'total_amount': value.unit_price, |
||||
|
'name': self.name, |
||||
|
'employee_id': self.employee_name_id.id, |
||||
|
'product_id': value.product_id.id, |
||||
|
'equipment_expense_id': self.id, |
||||
|
}) |
||||
|
self.is_expensed = True |
||||
|
|
||||
|
def action_smart_expense(self): |
||||
|
"""View the Expense in the Smart Tab and also can Approve it from the |
||||
|
Smart Tab""" |
||||
|
return { |
||||
|
'type': 'ir.actions.act_window', |
||||
|
'name': 'Expense', |
||||
|
'res_model': 'hr.expense', |
||||
|
'target': 'current', |
||||
|
'domain': [('name', '=', self.name), |
||||
|
('employee_id', '=', self.employee_name_id.id), |
||||
|
('equipment_expense_id', '=', self.id)], |
||||
|
'view_mode': 'tree,form', |
||||
|
} |
||||
|
|
||||
|
def action_view_internal_transfer(self): |
||||
|
"""View Current Record of the Internal Transfer Button""" |
||||
|
picking_id = self.env['stock.picking'].search([ |
||||
|
('picking_type_id.code', '=', 'internal'), |
||||
|
('location_id', '=', self.source_location_id.id), |
||||
|
('location_dest_id', '=', self.destination_location_id.id), |
||||
|
], limit=1, order='create_date desc') |
||||
|
return { |
||||
|
'type': 'ir.actions.act_window', |
||||
|
'name': 'Internal Transfer', |
||||
|
'view_mode': 'form', |
||||
|
'target': 'current', |
||||
|
'res_model': 'stock.picking', |
||||
|
'res_id': picking_id.id |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
################################################################################ |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Cybrosys Techno Solutions (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 HrExpense(models.Model): |
||||
|
""" |
||||
|
Model representing expenses associated with equipment requests. |
||||
|
This model inherits from the `hr.expense` model and adds a Many2one field |
||||
|
`equipment_expense_id` to link expenses with equipment requests. This field |
||||
|
is used to associate expenses with the corresponding equipment request. |
||||
|
""" |
||||
|
_inherit = "hr.expense" |
||||
|
|
||||
|
equipment_expense_id = fields.Many2one('equipment.request', |
||||
|
string='Equipment', |
||||
|
help="Link to creating expense based on damages in equipment request") |
@ -0,0 +1,37 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
################################################################################ |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: Cybrosys Techno Solutions (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 StockPicking(models.Model): |
||||
|
""" |
||||
|
Model representing internal transfers related to equipment requests. |
||||
|
This model inherits from the `stock.picking` model and adds a Many2one field |
||||
|
`equipment_transfer_id` to link internal transfers with equipment requests. |
||||
|
This field is used to associate internal transfers with the corresponding |
||||
|
equipment request. |
||||
|
""" |
||||
|
_inherit = 'stock.picking' |
||||
|
|
||||
|
equipment_transfer_id = fields.Many2one('equipment.request', |
||||
|
string='Equipment', |
||||
|
help="link internal transfers with equipment requests") |
@ -0,0 +1,14 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<odoo> |
||||
|
<!-- Report Function inside Equipment Request Form--> |
||||
|
<record id="equipment_request_report" model="ir.actions.report"> |
||||
|
<field name="name">Equipment Report</field> |
||||
|
<field name="model">equipment.request</field> |
||||
|
<field name="report_type">qweb-pdf</field> |
||||
|
<field name="report_name">equipment_request_it_operations.report_equipment_request_details</field> |
||||
|
<field name="report_file">equipment_request_it_operations.report_equipment_request_details</field> |
||||
|
<field name="binding_model_id" ref="model_equipment_request"/> |
||||
|
<field name="binding_type">report</field> |
||||
|
</record> |
||||
|
</odoo> |
||||
|
|
@ -0,0 +1,240 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<odoo> |
||||
|
<!-- Report Template--> |
||||
|
<template id="report_equipment_request_details"> |
||||
|
<t t-call="web.html_container"> |
||||
|
<t t-foreach="docs" t-as="data"> |
||||
|
<t t-call="web.external_layout"> |
||||
|
<div class="page"> |
||||
|
<div class="oe_structure"/> |
||||
|
<div class="text-center"> |
||||
|
<h1> |
||||
|
<u>Equipment Report</u> |
||||
|
</h1> |
||||
|
</div> |
||||
|
<br> |
||||
|
</br> |
||||
|
<h3>Equipment Assigns</h3> |
||||
|
<table class="table table-sm" |
||||
|
style="border: 1px solid black;"> |
||||
|
<tr> |
||||
|
<td> |
||||
|
<strong>Created By:</strong> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="data.created_user_id.name"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<strong>Created Date:</strong> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="data.create_date"/> |
||||
|
</td> |
||||
|
</tr> |
||||
|
<tr> |
||||
|
<td> |
||||
|
<strong>Dept Manager:</strong> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="data.validate_user_id.name"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<strong>Dept Manager Approved Date: |
||||
|
</strong> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="data.validate_date"/> |
||||
|
</td> |
||||
|
</tr> |
||||
|
<tr> |
||||
|
<td> |
||||
|
<strong>HR Manager:</strong> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="data.hr_user_id.name"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<strong>HR Manager Approved Date:</strong> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="data.hr_date"/> |
||||
|
</td> |
||||
|
</tr> |
||||
|
<tr> |
||||
|
<td> |
||||
|
<strong>Stock Manager:</strong> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="data.stock_user_id.name"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<strong>Stock Manager Approved Date: |
||||
|
</strong> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="data.stock_date"/> |
||||
|
</td> |
||||
|
</tr> |
||||
|
</table> |
||||
|
<br> |
||||
|
</br> |
||||
|
<h3>Request Equipment Details</h3> |
||||
|
<style> |
||||
|
table, thead, th, td, tr, tbody { |
||||
|
border: 1px solid black; |
||||
|
border-collapse: collapse; |
||||
|
padding: 5px; |
||||
|
} |
||||
|
</style> |
||||
|
<table class="table table-sm" |
||||
|
style="border: 2px solid black;"> |
||||
|
<thead> |
||||
|
<tr> |
||||
|
<strong> |
||||
|
<th>Sl.No</th> |
||||
|
<th>Product</th> |
||||
|
<th>Description</th> |
||||
|
<th>Quantity</th> |
||||
|
<th>Unit of Measure</th> |
||||
|
</strong> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<t t-set="i" t-value="1"/> |
||||
|
<t t-foreach="data.equipment_request_ids" |
||||
|
t-as="request"> |
||||
|
<tr> |
||||
|
<th scope="row"> |
||||
|
<t t-esc="i"/> |
||||
|
</th> |
||||
|
<td> |
||||
|
<t t-esc="request.product_id.name"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="request.description"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="request.quantity"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="request.product_uom_id.name"/> |
||||
|
</td> |
||||
|
</tr> |
||||
|
<t t-set="i" t-value="i+1"/> |
||||
|
</t> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
<br> |
||||
|
</br> |
||||
|
<t t-if="data.equipment_damage_ids"> |
||||
|
<h3>Damage Details</h3> |
||||
|
<style> |
||||
|
table, thead, th, td, tr, tbody { |
||||
|
border: 1px solid black; |
||||
|
border-collapse: collapse; |
||||
|
padding: 5px; |
||||
|
} |
||||
|
</style> |
||||
|
<table class="table table-sm" |
||||
|
style="border: 2px solid black;"> |
||||
|
<thead> |
||||
|
<tr> |
||||
|
<strong> |
||||
|
<th>Sl.No</th> |
||||
|
<th>Product</th> |
||||
|
<th>Quantity</th> |
||||
|
<th>Unit Price</th> |
||||
|
<th>Description</th> |
||||
|
</strong> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<t t-set="i" t-value="1"/> |
||||
|
<t t-foreach="data.equipment_damage_ids" |
||||
|
t-as="damage"> |
||||
|
<tr> |
||||
|
<th scope="row"> |
||||
|
<t t-esc="i"/> |
||||
|
</th> |
||||
|
<td> |
||||
|
<t t-esc="damage.product_id.name"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="damage.quantity"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="damage.unit_price"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="damage.expense_note"/> |
||||
|
</td> |
||||
|
</tr> |
||||
|
<t t-set="i" t-value="i+1"/> |
||||
|
</t> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</t> |
||||
|
<br> |
||||
|
</br> |
||||
|
<t t-if="data.equipment_damage_ids"> |
||||
|
<h3>Expense List</h3> |
||||
|
<style> |
||||
|
table, thead, th, td, tr, tbody { |
||||
|
border: 1px solid black; |
||||
|
border-collapse: collapse; |
||||
|
padding: 5px; |
||||
|
} |
||||
|
</style> |
||||
|
<table class="table table-sm" |
||||
|
style="border: 2px solid black;"> |
||||
|
<thead> |
||||
|
<tr> |
||||
|
<strong> |
||||
|
<th>Sl.No</th> |
||||
|
<th>Expense Date</th> |
||||
|
<th>Description</th> |
||||
|
<th>Employee</th> |
||||
|
<th>Category</th> |
||||
|
<th>Total</th> |
||||
|
<th>Status</th> |
||||
|
</strong> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<t t-set="i" t-value="1"/> |
||||
|
<t t-foreach="data.equipment_expense_ids" |
||||
|
t-as="expense"> |
||||
|
<tr> |
||||
|
<th scope="row"> |
||||
|
<t t-esc="i"/> |
||||
|
</th> |
||||
|
<td> |
||||
|
<t t-esc="expense.date.strftime('%d/%m/%Y')"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="expense.name"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="expense.employee_id.name"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="expense.product_id.name"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="expense.total_amount"/> |
||||
|
</td> |
||||
|
<td> |
||||
|
<t t-esc="expense.state"/> |
||||
|
</td> |
||||
|
</tr> |
||||
|
<t t-set="i" t-value="i+1"/> |
||||
|
</t> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</t> |
||||
|
</div> |
||||
|
</t> |
||||
|
</t> |
||||
|
</t> |
||||
|
</template> |
||||
|
</odoo> |
|
@ -0,0 +1,30 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<odoo> |
||||
|
<!-- Access Levels--> |
||||
|
<record model="ir.module.category" id="module_equipment_request_it_operations"> |
||||
|
<field name="name">Equipments</field> |
||||
|
<field name="description">Access Levels</field> |
||||
|
</record> |
||||
|
<!--equipment_department_manager_res_group--> |
||||
|
<record id="group_equipment_department_manager" model="res.groups"> |
||||
|
<field name="name">Department Manager</field> |
||||
|
<field name="category_id" ref="module_equipment_request_it_operations"/> |
||||
|
</record> |
||||
|
<!-- equipment_hr_officer_res_group--> |
||||
|
<record id="group_equipment_hr_officer" model="res.groups"> |
||||
|
<field name="name">HR Officer</field> |
||||
|
<field name="category_id" ref="module_equipment_request_it_operations"/> |
||||
|
</record> |
||||
|
<!-- equipment_stock_manager_res_group--> |
||||
|
<record id="group_equipment_stock_manager" model="res.groups"> |
||||
|
<field name="name">Stock Manager</field> |
||||
|
<field name="category_id" ref="module_equipment_request_it_operations"/> |
||||
|
</record> |
||||
|
<!-- admin_res_group--> |
||||
|
<record id="group_equipment_admin" model="res.groups"> |
||||
|
<field name="name">Manager</field> |
||||
|
<field name="category_id" ref="module_equipment_request_it_operations"/> |
||||
|
<field name="implied_ids" |
||||
|
eval="[(4, ref('group_equipment_department_manager')),(4, ref('group_equipment_stock_manager')), (4, ref('group_equipment_hr_officer'))]"/> |
||||
|
</record> |
||||
|
</odoo> |
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.2 KiB |
After Width: | Height: | Size: 673 B |
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: 1.5 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 589 B |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 967 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 79 KiB |
After Width: | Height: | Size: 95 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 86 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 115 KiB |
After Width: | Height: | Size: 150 KiB |
After Width: | Height: | Size: 159 KiB |
After Width: | Height: | Size: 52 KiB |
After Width: | Height: | Size: 91 KiB |
After Width: | Height: | Size: 161 KiB |
After Width: | Height: | Size: 174 KiB |
After Width: | Height: | Size: 87 KiB |
After Width: | Height: | Size: 183 KiB |
After Width: | Height: | Size: 71 KiB |
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 115 KiB |
After Width: | Height: | Size: 114 KiB |
After Width: | Height: | Size: 134 KiB |
After Width: | Height: | Size: 52 KiB |
After Width: | Height: | Size: 138 KiB |
After Width: | Height: | Size: 145 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 582 KiB |
After Width: | Height: | Size: 93 KiB |
After Width: | Height: | Size: 20 KiB |
@ -0,0 +1,992 @@ |
|||||
|
<!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/logo.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:#7C7BAD !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;"> |
||||
|
Equipment Request & IT Operation</h1> |
||||
|
<p class="my-3 mb-4" |
||||
|
style="max-width: 80%; font-weight: 400 !important; line-height: 32px; color: #718096;"> |
||||
|
Employees can send requests to the Department Manager for equipment as |
||||
|
equipment requests and equipment damage expense reimbursement requests |
||||
|
</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;"> |
||||
|
Allow your employees to request for any equipment resources from your Equipment |
||||
|
Department Manager</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;"> |
||||
|
Department manager can generate Expense report Based on Damage report.</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;"> |
||||
|
HR Officer can approve the request and also approve the expense report. </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;"> |
||||
|
Stock Manager can create internal transfers for equipment requests.</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/equipment_request_1.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"> |
||||
|
Equipment Request User Groups </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/equipment_request_2.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"> |
||||
|
Tree View Equipment Request for User Request. </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/equipment_request_3.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"> |
||||
|
Form View Equipment Request for User Request.</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/equipment_request_4.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"> |
||||
|
If the Damage Field is Checked.User can add Damage 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/equipment_request_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"> |
||||
|
Equipment Request - Waiting For Approval Of Department Manager </h4> |
||||
|
<p> |
||||
|
After Confirming Equipment Request users should wait for Approval of Department |
||||
|
Manager . |
||||
|
|
||||
|
</p> |
||||
|
</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/equipment_request_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"> |
||||
|
Tree View of Department Manager.</h4> |
||||
|
<p>The Department Manager Has a Menu Which he can Review All Dept Approval Equipment |
||||
|
Request.</p> |
||||
|
</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/equipment_request_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"> |
||||
|
Form View of Department Manager.</h4> |
||||
|
<p> |
||||
|
If the user has checked the "damage" field, the department manager will have two |
||||
|
buttons: one for approval and the other for generating expenses. |
||||
|
</p> |
||||
|
</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/equipment_request_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"> |
||||
|
After approval and generation of expenses, the next step is for HR to review and |
||||
|
approve the request. |
||||
|
</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/equipment_request_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"> |
||||
|
Tree View of HR Officer.</h4> |
||||
|
<p>The HR Officer Has a Menu Which he can Review All HR Approval Equipment Request. </p> |
||||
|
</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/equipment_request_10.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"> |
||||
|
Form View of HR Officer.</h4> |
||||
|
<p>The HR Officer will have only one button, which is the approval button. </p> |
||||
|
</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/equipment_request_11.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"> |
||||
|
After Approval of HR.</h4> |
||||
|
<p>Once HR approves the request, they can approve the associated expenses, and the next |
||||
|
step is for the stock manager to create internal transfer. </p> |
||||
|
</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/equipment_request_12.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"> |
||||
|
Smart Button View of Expense.</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/equipment_request_13.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"> |
||||
|
Tree View of Stock Manager.</h4> |
||||
|
<p> |
||||
|
The Stock Manager Has a Menu Which he can Review All Stock Approval Equipment |
||||
|
Request. |
||||
|
</p> |
||||
|
</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/equipment_request_14.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"> |
||||
|
Form View of Stock Manager.</h4> |
||||
|
<p> |
||||
|
The stock manager can create an internal transfer from the button for the |
||||
|
stock/warehouse user, which will then generate an internal picking request. |
||||
|
</p> |
||||
|
</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/equipment_request_15.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"> |
||||
|
|
||||
|
Once the internal transfer is created, they can view it from the button.</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/equipment_request_16.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"> |
||||
|
Stock Manager Can validate the transfer.</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/equipment_request_17.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"> |
||||
|
Here We have the option for generating Equipment Report.</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/equipment_request_18.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"> |
||||
|
It will print a pdf of Equipment Report</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.png" |
||||
|
alt="" |
||||
|
width="16px"></span>Allow your employees to request for any equipment |
||||
|
resources from your Equipment Department Manager |
||||
|
</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.png" |
||||
|
alt="" |
||||
|
width="16px"></span>Allow your employees to request for repair damage of any |
||||
|
type and reimbursement of expenses for that damage repair. |
||||
|
Orders. |
||||
|
</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.png" |
||||
|
alt="" |
||||
|
width="16px"></span>Department manager can create expense requests for their |
||||
|
employees. |
||||
|
<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.png" |
||||
|
alt="" |
||||
|
width="16px"></span> HR Officer can approve as HR approval and Approve |
||||
|
equipment expense requests from the smart Tab of Expenses. |
||||
|
<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.png" |
||||
|
alt="" |
||||
|
width="16px"></span> Stock Manager can create internal transfer for |
||||
|
equipment requests to transfer requested equipment/product to employee location. |
||||
|
<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.png" |
||||
|
alt="" |
||||
|
width="16px"></span> Integrated with stock inventory to allocate |
||||
|
equipment/products to your employee. |
||||
|
<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.png" |
||||
|
alt="" |
||||
|
width="16px"></span> Allow you to print PDF report of equipment requests as |
||||
|
shown in the below sample. |
||||
|
|
||||
|
</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:06th February 2024</span> |
||||
|
</div> |
||||
|
<p class="m-0" |
||||
|
style=" color:#718096!important; font-size:1rem !important;line-height: 28px;"> |
||||
|
Initial Commit for Equipment Request & IT Operation.</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/17.0/sale_recurring/" |
||||
|
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.jpg" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Sale Recurring </p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/product_to_invoice/" |
||||
|
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.jpg" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Add Multiple Products to Invoice/Bills </p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/pos_order_line_mass_edit/" |
||||
|
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.jpg" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
POS Order Line Mass Edit </p> |
||||
|
</div> |
||||
|
</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/17.0/sale_report_advanced/" |
||||
|
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"> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Advanced Sales Report </p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/access_restriction_by_ip/" |
||||
|
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.jpg" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Access Restriction by IP </p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/export_stockinfo_xls/" |
||||
|
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"> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Export Product Stock in Excel </p> |
||||
|
</div> |
||||
|
</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,220 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<odoo> |
||||
|
<!-- Search Filter in Tree View of equipment.request--> |
||||
|
<record id="equipment_request_view_search" model="ir.ui.view"> |
||||
|
<field name="name">equipment.request.view.search</field> |
||||
|
<field name="model">equipment.request</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<search> |
||||
|
<filter name="my_equipment_request" string="My Equipment Requests" |
||||
|
domain="[('user_login_id', '=', uid)]"/> |
||||
|
<separator/> |
||||
|
<filter name="Draft" domain="[('status', '=', ('draft'))]"/> |
||||
|
<filter name="waiting_for_approval_of_department" string="Waiting For Approval of Department" |
||||
|
domain="[('status', '=', ('waiting'))]"/> |
||||
|
<filter name="waiting_for_approval_of_hr" string="Waiting for Approval of HR" |
||||
|
domain="[('status', '=', ('approval'))]"/> |
||||
|
<filter name="waiting_for_approval_of_stock" string="Waiting for Approval of Stock" |
||||
|
domain="[('status', '=', ('approved'))]"/> |
||||
|
<group expand="1" string="Group By"> |
||||
|
<filter name="Employees" context="{'group_by':'employee_name_id', 'residual_visible':True}"/> |
||||
|
<filter name="Department" context="{'group_by':'department_name_id', 'residual_visible':True}"/> |
||||
|
<filter name="Job Position" context="{'group_by':'job_position_id', 'residual_visible':True}"/> |
||||
|
<filter name="Status" context="{'group_by':'status','residual_visible':True}"/> |
||||
|
</group> |
||||
|
</search> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<!-- FORM VIEW of model equipment.request--> |
||||
|
<record id="equipment_request_view_form" model="ir.ui.view"> |
||||
|
<field name="name">equipment.request.view.form</field> |
||||
|
<field name="model">equipment.request</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<form> |
||||
|
<header> |
||||
|
<button name="action_confirm" type="object" string="Confirm" class="oe_highlight" |
||||
|
invisible="status != 'draft'" |
||||
|
/> |
||||
|
<button name="action_waiting_approval_dept" type="object" string="Department Approve" |
||||
|
class="oe_highlight" |
||||
|
groups="equipment_request_it_operations.group_equipment_department_manager" |
||||
|
invisible="status != 'waiting'"/> |
||||
|
<button name="action_waiting_approval_hr" type="object" string="HR Approve" class="oe_highlight" |
||||
|
groups="equipment_request_it_operations.group_equipment_hr_officer" |
||||
|
invisible="status != 'approval'" |
||||
|
/> |
||||
|
<button name="action_expense" type="object" string="Generate Expense" class="oe_highlight" |
||||
|
groups="equipment_request_it_operations.group_equipment_department_manager" |
||||
|
invisible="status != 'waiting' or is_expensed != False or damage_check == False" |
||||
|
/> |
||||
|
<button name="action_internal_transfer" type="object" string="Create Internal Transfer" |
||||
|
class="oe_highlight" groups="equipment_request_it_operations.group_equipment_stock_manager" |
||||
|
invisible="status != 'approved'" |
||||
|
/> |
||||
|
<button name="action_view_internal_transfer" type="object" string="View Internal Transfer" |
||||
|
class="oe_highlight" groups="equipment_request_it_operations.group_equipment_stock_manager" |
||||
|
invisible="status != 'assigned'" |
||||
|
/> |
||||
|
<button name="action_reject" type="object" string="Reject" class="oe_highlight" |
||||
|
invisible="status == 'reject'" |
||||
|
/> |
||||
|
|
||||
|
<field name="status" widget="statusbar"/> |
||||
|
</header> |
||||
|
<sheet> |
||||
|
<div class="oe_button_box" name="button_box"> |
||||
|
<button name="action_smart_expense" string="Expense" type="object" icon="fa-pencil-square-o" |
||||
|
class="oe_stat_button" |
||||
|
invisible="status not in ['approved','assigned']"/> |
||||
|
</div> |
||||
|
<h1> |
||||
|
Type of Request |
||||
|
</h1> |
||||
|
<br/> |
||||
|
<group> |
||||
|
<field name="request_for"/> |
||||
|
<br/> |
||||
|
</group> |
||||
|
<h1> |
||||
|
Employee Details |
||||
|
</h1> |
||||
|
<group> |
||||
|
<group> |
||||
|
<field name="employee_name_id"/> |
||||
|
<field name="department_name_id"/> |
||||
|
<field name="job_position_id"/> |
||||
|
<field name="user_login_id"/> |
||||
|
<field name="damage_check"/> |
||||
|
<field name="company_name_id"/> |
||||
|
<field name="source_location_id" |
||||
|
groups="equipment_request_it_operations.group_equipment_stock_manager" |
||||
|
/> |
||||
|
<field name="destination_location_id" |
||||
|
groups="equipment_request_it_operations.group_equipment_stock_manager"/> |
||||
|
<field name="is_expensed" invisible="1"/> |
||||
|
</group> |
||||
|
<notebook> |
||||
|
<page string="Request Equipments"> |
||||
|
<field name='equipment_request_ids'> |
||||
|
<tree editable="bottom"> |
||||
|
<field name="product_id"/> |
||||
|
<field name="description"/> |
||||
|
<field name="quantity"/> |
||||
|
<field name="product_uom_id"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</page> |
||||
|
<page string="Damage Details" invisible="damage_check == False"> |
||||
|
<field name='equipment_damage_ids'> |
||||
|
<tree editable="bottom"> |
||||
|
<field name="product_id"/> |
||||
|
<field name="expense_note"/> |
||||
|
<field name="quantity"/> |
||||
|
<field name="unit_price"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</page> |
||||
|
<page string="Expenses" invisible="damage_check == False"> |
||||
|
<field name='equipment_expense_ids'> |
||||
|
<tree create="false"> |
||||
|
<field name="date"/> |
||||
|
<field name="name"/> |
||||
|
<field name="employee_id"/> |
||||
|
<field name="product_id"/> |
||||
|
<field name="company_id"/> |
||||
|
<field name="total_amount"/> |
||||
|
<field name="state"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</page> |
||||
|
<page string="Internal Orders"> |
||||
|
<field name='equipment_internal_ids'> |
||||
|
<tree create="False"> |
||||
|
<field name="name"/> |
||||
|
<field name="location_id"/> |
||||
|
<field name="location_dest_id"/> |
||||
|
<field name="partner_id"/> |
||||
|
<field name="company_id"/> |
||||
|
<field name="state"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</page> |
||||
|
<page string="Extra Info"> |
||||
|
<group> |
||||
|
<group> |
||||
|
<field name="created_user_id"/> |
||||
|
<field name="validate_user_id"/> |
||||
|
<field name="hr_user_id"/> |
||||
|
<field name="stock_user_id"/> |
||||
|
</group> |
||||
|
<group> |
||||
|
<field name="create_date"/> |
||||
|
<field name="validate_date"/> |
||||
|
<field name="hr_date"/> |
||||
|
<field name="stock_date"/> |
||||
|
</group> |
||||
|
</group> |
||||
|
</page> |
||||
|
</notebook> |
||||
|
</group> |
||||
|
</sheet> |
||||
|
<div class="oe_chatter"> |
||||
|
<field name="message_follower_ids" widget="mail_followers"/> |
||||
|
<field name="message_ids" widget="mail_thread"/> |
||||
|
</div> |
||||
|
</form> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<!-- Tree View of model equipment.request--> |
||||
|
<record id="equipment_request_view_tree" model="ir.ui.view"> |
||||
|
<field name="name">equipment.request.view.tree</field> |
||||
|
<field name="model">equipment.request</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<tree> |
||||
|
<field name="request_for"/> |
||||
|
<field name="employee_name_id"/> |
||||
|
<field name="department_name_id"/> |
||||
|
<field name="job_position_id"/> |
||||
|
<field name="user_login_id"/> |
||||
|
<field name="company_name_id"/> |
||||
|
<field name="status"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<!-- Actions for user--> |
||||
|
<record id="equipment_request_action" model="ir.actions.act_window"> |
||||
|
<field name="name">Equipment Request</field> |
||||
|
<field name="type">ir.actions.act_window</field> |
||||
|
<field name="res_model">equipment.request</field> |
||||
|
<field name="view_mode">tree,form</field> |
||||
|
<field name="context">{"search_default_my_equipment_request":1}</field> |
||||
|
</record> |
||||
|
<!-- Actions for department manager --> |
||||
|
<record id="equipment_request_approval_dept_action" model="ir.actions.act_window"> |
||||
|
<field name="name">Equipment Request</field> |
||||
|
<field name="type">ir.actions.act_window</field> |
||||
|
<field name="res_model">equipment.request</field> |
||||
|
<field name="view_mode">tree,form</field> |
||||
|
<field name="context">{"search_default_waiting_for_approval_of_department":1}</field> |
||||
|
</record> |
||||
|
<!-- Actions for hr manager --> |
||||
|
<record id="equipment_request_approval_hr_action" model="ir.actions.act_window"> |
||||
|
<field name="name">Equipment Request</field> |
||||
|
<field name="type">ir.actions.act_window</field> |
||||
|
<field name="res_model">equipment.request</field> |
||||
|
<field name="view_mode">tree,form</field> |
||||
|
<field name="context">{"search_default_waiting_for_approval_of_hr":1}</field> |
||||
|
</record> |
||||
|
<!-- Actions for stock manager --> |
||||
|
<record id="equipment_request_approved_stock_manager_action" model="ir.actions.act_window"> |
||||
|
<field name="name">Equipment Request</field> |
||||
|
<field name="type">ir.actions.act_window</field> |
||||
|
<field name="res_model">equipment.request</field> |
||||
|
<field name="view_mode">tree,form</field> |
||||
|
<field name="context">{"search_default_waiting_for_approval_of_stock":1}</field> |
||||
|
</record> |
||||
|
|
||||
|
</odoo> |
@ -0,0 +1,40 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<odoo> |
||||
|
<!-- ALL MENUS--> |
||||
|
<!--main menu for Equipments--> |
||||
|
<menuitem id="menu_equipment" name="Equipments" |
||||
|
web_icon="equipment_request_it_operations,static/description/icon.png" |
||||
|
action="equipment_request_action"/> |
||||
|
<!--First menu for Equipments--> |
||||
|
<menuitem id="menu_equipment_equipment" |
||||
|
parent="menu_equipment" |
||||
|
name="Equipments" |
||||
|
sequence="1"/> |
||||
|
<!--Sub menu for Equipments Request--> |
||||
|
<menuitem id="menu_equipment_submenu_equipment_request" |
||||
|
parent="menu_equipment_equipment" |
||||
|
name="Equipment Request" |
||||
|
action="equipment_request_action" |
||||
|
sequence="1"/> |
||||
|
<!--Sub menu for Approval of Equipments for Department Manager --> |
||||
|
<menuitem id="menu_equipment_submenu_equipment_request_approval" |
||||
|
parent="menu_equipment_equipment" |
||||
|
name="Equipment Request Department Approval" |
||||
|
action="equipment_request_approval_dept_action" |
||||
|
groups="equipment_request_it_operations.group_equipment_department_manager" |
||||
|
sequence="2"/> |
||||
|
<!--Sub menu for Approval of Equipments for HR Officer --> |
||||
|
<menuitem id="menu_equipment_submenu_equipment_request_hr_approval" |
||||
|
parent="menu_equipment_equipment" |
||||
|
name="Equipment Request HR Approval" |
||||
|
action="equipment_request_approval_hr_action" |
||||
|
groups="equipment_request_it_operations.group_equipment_hr_officer" |
||||
|
sequence="3"/> |
||||
|
<!--Sub menu for Approval of Equipments for Stock Manager --> |
||||
|
<menuitem id="menu_equipment_submenu_equipment_request_stock_approval" |
||||
|
parent="menu_equipment_equipment" |
||||
|
name="Equipment Request Stock Approval" |
||||
|
action="equipment_request_approved_stock_manager_action" |
||||
|
groups="equipment_request_it_operations.group_equipment_stock_manager" |
||||
|
sequence="4"/> |
||||
|
</odoo> |