diff --git a/equipment_request_it_operations/README.rst b/equipment_request_it_operations/README.rst new file mode 100644 index 000000000..b093a5104 --- /dev/null +++ b/equipment_request_it_operations/README.rst @@ -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 `__ + +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 `__ + +Further information +=================== +HTML Description: ``__ + diff --git a/equipment_request_it_operations/__init__.py b/equipment_request_it_operations/__init__.py new file mode 100644 index 000000000..8cdcd2151 --- /dev/null +++ b/equipment_request_it_operations/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# 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 . +# +################################################################################ +from . import models diff --git a/equipment_request_it_operations/__manifest__.py b/equipment_request_it_operations/__manifest__.py new file mode 100644 index 000000000..03a3ef290 --- /dev/null +++ b/equipment_request_it_operations/__manifest__.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# 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 . +# +################################################################################ +{ + '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, +} diff --git a/equipment_request_it_operations/doc/RELEASE_NOTES.md b/equipment_request_it_operations/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..89fab1000 --- /dev/null +++ b/equipment_request_it_operations/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 06.02.2024 +#### Version 17.0.1.0.0 +#### ADD + +- Initial commit for Equipment Request & IT Operations \ No newline at end of file diff --git a/equipment_request_it_operations/models/__init__.py b/equipment_request_it_operations/models/__init__.py new file mode 100644 index 000000000..338ff4f26 --- /dev/null +++ b/equipment_request_it_operations/models/__init__.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# 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 . +# +################################################################################ +from . import equipment_request +from . import damage_detail +from . import equipment_detail +from . import hr_expense +from . import stock_picking diff --git a/equipment_request_it_operations/models/damage_detail.py b/equipment_request_it_operations/models/damage_detail.py new file mode 100644 index 000000000..03bf99f8a --- /dev/null +++ b/equipment_request_it_operations/models/damage_detail.py @@ -0,0 +1,59 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# 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 . +# +################################################################################ +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 diff --git a/equipment_request_it_operations/models/equipment_detail.py b/equipment_request_it_operations/models/equipment_detail.py new file mode 100644 index 000000000..0e707fe70 --- /dev/null +++ b/equipment_request_it_operations/models/equipment_detail.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# 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 . +# +################################################################################ +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 diff --git a/equipment_request_it_operations/models/equipment_request.py b/equipment_request_it_operations/models/equipment_request.py new file mode 100644 index 000000000..b1fada664 --- /dev/null +++ b/equipment_request_it_operations/models/equipment_request.py @@ -0,0 +1,249 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# 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 . +# +################################################################################ +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 + } diff --git a/equipment_request_it_operations/models/hr_expense.py b/equipment_request_it_operations/models/hr_expense.py new file mode 100644 index 000000000..73273eddb --- /dev/null +++ b/equipment_request_it_operations/models/hr_expense.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# 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 . +# +################################################################################ +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") diff --git a/equipment_request_it_operations/models/stock_picking.py b/equipment_request_it_operations/models/stock_picking.py new file mode 100644 index 000000000..958809248 --- /dev/null +++ b/equipment_request_it_operations/models/stock_picking.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# 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 . +# +################################################################################ +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") diff --git a/equipment_request_it_operations/report/equipment_report.xml b/equipment_request_it_operations/report/equipment_report.xml new file mode 100644 index 000000000..96222231a --- /dev/null +++ b/equipment_request_it_operations/report/equipment_report.xml @@ -0,0 +1,14 @@ + + + + + Equipment Report + equipment.request + qweb-pdf + equipment_request_it_operations.report_equipment_request_details + equipment_request_it_operations.report_equipment_request_details + + report + + + diff --git a/equipment_request_it_operations/report/equipment_report_template.xml b/equipment_request_it_operations/report/equipment_report_template.xml new file mode 100644 index 000000000..9645836ac --- /dev/null +++ b/equipment_request_it_operations/report/equipment_report_template.xml @@ -0,0 +1,240 @@ + + + + + \ No newline at end of file diff --git a/equipment_request_it_operations/security/ir.model.access.csv b/equipment_request_it_operations/security/ir.model.access.csv new file mode 100644 index 000000000..bb67852bd --- /dev/null +++ b/equipment_request_it_operations/security/ir.model.access.csv @@ -0,0 +1,4 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_equipment_request,equipment.request,model_equipment_request,base.group_user,1,1,1,1 +access_equipment_detail,equipment.detail,model_equipment_detail,base.group_user,1,1,1,1 +access_damage_detail,damage.detail,model_damage_detail,base.group_user,1,1,1,1 diff --git a/equipment_request_it_operations/security/user_groups.xml b/equipment_request_it_operations/security/user_groups.xml new file mode 100644 index 000000000..fa63f0a93 --- /dev/null +++ b/equipment_request_it_operations/security/user_groups.xml @@ -0,0 +1,30 @@ + + + + + Equipments + Access Levels + + + + Department Manager + + + + + HR Officer + + + + + Stock Manager + + + + + Manager + + + + \ No newline at end of file diff --git a/equipment_request_it_operations/static/description/assets/icons/check.png b/equipment_request_it_operations/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/check.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/chevron.png b/equipment_request_it_operations/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/chevron.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/cogs.png b/equipment_request_it_operations/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/cogs.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/consultation.png b/equipment_request_it_operations/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/consultation.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/ecom-black.png b/equipment_request_it_operations/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/ecom-black.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/education-black.png b/equipment_request_it_operations/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/education-black.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/hotel-black.png b/equipment_request_it_operations/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/hotel-black.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/license.png b/equipment_request_it_operations/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/license.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/lifebuoy.png b/equipment_request_it_operations/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/lifebuoy.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/manufacturing-black.png b/equipment_request_it_operations/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/manufacturing-black.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/pos-black.png b/equipment_request_it_operations/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/pos-black.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/puzzle.png b/equipment_request_it_operations/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/puzzle.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/restaurant-black.png b/equipment_request_it_operations/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/restaurant-black.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/service-black.png b/equipment_request_it_operations/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/service-black.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/trading-black.png b/equipment_request_it_operations/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/trading-black.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/training.png b/equipment_request_it_operations/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/training.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/update.png b/equipment_request_it_operations/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/update.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/user.png b/equipment_request_it_operations/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/user.png differ diff --git a/equipment_request_it_operations/static/description/assets/icons/wrench.png b/equipment_request_it_operations/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/icons/wrench.png differ diff --git a/equipment_request_it_operations/static/description/assets/misc/categories.png b/equipment_request_it_operations/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/misc/categories.png differ diff --git a/equipment_request_it_operations/static/description/assets/misc/check-box.png b/equipment_request_it_operations/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/misc/check-box.png differ diff --git a/equipment_request_it_operations/static/description/assets/misc/compass.png b/equipment_request_it_operations/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/misc/compass.png differ diff --git a/equipment_request_it_operations/static/description/assets/misc/corporate.png b/equipment_request_it_operations/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/misc/corporate.png differ diff --git a/equipment_request_it_operations/static/description/assets/misc/customer-support.png b/equipment_request_it_operations/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/misc/customer-support.png differ diff --git a/equipment_request_it_operations/static/description/assets/misc/cybrosys-logo.png b/equipment_request_it_operations/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/misc/cybrosys-logo.png differ diff --git a/equipment_request_it_operations/static/description/assets/misc/features.png b/equipment_request_it_operations/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/misc/features.png differ diff --git a/equipment_request_it_operations/static/description/assets/misc/logo.png b/equipment_request_it_operations/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/misc/logo.png differ diff --git a/equipment_request_it_operations/static/description/assets/misc/pictures.png b/equipment_request_it_operations/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/misc/pictures.png differ diff --git a/equipment_request_it_operations/static/description/assets/misc/pie-chart.png b/equipment_request_it_operations/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/misc/pie-chart.png differ diff --git a/equipment_request_it_operations/static/description/assets/misc/right-arrow.png b/equipment_request_it_operations/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/misc/right-arrow.png differ diff --git a/equipment_request_it_operations/static/description/assets/misc/star.png b/equipment_request_it_operations/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/misc/star.png differ diff --git a/equipment_request_it_operations/static/description/assets/misc/support.png b/equipment_request_it_operations/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/misc/support.png differ diff --git a/equipment_request_it_operations/static/description/assets/misc/whatsapp.png b/equipment_request_it_operations/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/misc/whatsapp.png differ diff --git a/equipment_request_it_operations/static/description/assets/modules/1.jpg b/equipment_request_it_operations/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..e19e7ab11 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/modules/1.jpg differ diff --git a/equipment_request_it_operations/static/description/assets/modules/2.jpg b/equipment_request_it_operations/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..3f6a08970 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/modules/2.jpg differ diff --git a/equipment_request_it_operations/static/description/assets/modules/3.jpg b/equipment_request_it_operations/static/description/assets/modules/3.jpg new file mode 100644 index 000000000..33491bcf0 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/modules/3.jpg differ diff --git a/equipment_request_it_operations/static/description/assets/modules/4.png b/equipment_request_it_operations/static/description/assets/modules/4.png new file mode 100644 index 000000000..612be4b77 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/modules/4.png differ diff --git a/equipment_request_it_operations/static/description/assets/modules/5.jpg b/equipment_request_it_operations/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..693671ccf Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/modules/5.jpg differ diff --git a/equipment_request_it_operations/static/description/assets/modules/6.png b/equipment_request_it_operations/static/description/assets/modules/6.png new file mode 100644 index 000000000..a0ac2d840 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/modules/6.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_1.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_1.png new file mode 100644 index 000000000..a0e1ab637 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_1.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_10.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_10.png new file mode 100644 index 000000000..c028f4aff Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_10.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_11.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_11.png new file mode 100644 index 000000000..948203a08 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_11.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_12.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_12.png new file mode 100644 index 000000000..651cf3f60 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_12.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_13.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_13.png new file mode 100644 index 000000000..9220c1841 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_13.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_14.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_14.png new file mode 100644 index 000000000..88f48c7c6 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_14.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_15.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_15.png new file mode 100644 index 000000000..ad99473d7 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_15.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_16.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_16.png new file mode 100644 index 000000000..167c41cc5 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_16.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_17.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_17.png new file mode 100644 index 000000000..dbca380c9 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_17.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_18.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_18.png new file mode 100644 index 000000000..fd1647eff Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_18.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_2.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_2.png new file mode 100644 index 000000000..b3480e1db Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_2.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_3.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_3.png new file mode 100644 index 000000000..79f284a24 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_3.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_4.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_4.png new file mode 100644 index 000000000..6f8e167b1 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_4.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_5.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_5.png new file mode 100644 index 000000000..c13856e0e Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_5.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_6.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_6.png new file mode 100644 index 000000000..c0ef7a45e Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_6.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_7.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_7.png new file mode 100644 index 000000000..cc0c2cbe5 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_7.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_8.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_8.png new file mode 100644 index 000000000..8fbe2ed9d Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_8.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_9.png b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_9.png new file mode 100644 index 000000000..2d97a8e57 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/equipment_request_9.png differ diff --git a/equipment_request_it_operations/static/description/assets/screenshots/hero.gif b/equipment_request_it_operations/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..8d09c4f94 Binary files /dev/null and b/equipment_request_it_operations/static/description/assets/screenshots/hero.gif differ diff --git a/equipment_request_it_operations/static/description/banner.jpg b/equipment_request_it_operations/static/description/banner.jpg new file mode 100644 index 000000000..1cb8346cf Binary files /dev/null and b/equipment_request_it_operations/static/description/banner.jpg differ diff --git a/equipment_request_it_operations/static/description/icon.png b/equipment_request_it_operations/static/description/icon.png new file mode 100644 index 000000000..412e94abf Binary files /dev/null and b/equipment_request_it_operations/static/description/icon.png differ diff --git a/equipment_request_it_operations/static/description/index.html b/equipment_request_it_operations/static/description/index.html new file mode 100644 index 000000000..801dba576 --- /dev/null +++ b/equipment_request_it_operations/static/description/index.html @@ -0,0 +1,992 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Equipment Request & IT Operation

+

+ Employees can send requests to the Department Manager for equipment as + equipment requests and equipment damage expense reimbursement requests +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Allow your employees to request for any equipment resources from your Equipment + Department Manager

+
+
+
+
+
+
+ +
+
+

+ Department manager can generate Expense report Based on Damage report.

+
+
+
+
+
+
+ +
+
+

+ HR Officer can approve the request and also approve the expense report.

+
+
+
+
+
+
+ +
+
+

+ Stock Manager can create internal transfers for equipment requests.

+
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+

+ Equipment Request User Groups

+
+
+
+
+
+
+ +
+
+

+ Tree View Equipment Request for User Request.

+
+
+
+
+
+
+ +
+
+

+ Form View Equipment Request for User Request.

+
+
+
+
+
+
+ +
+
+

+ If the Damage Field is Checked.User can add Damage Details.

+
+
+
+
+
+
+ +
+
+

+ Equipment Request - Waiting For Approval Of Department Manager

+

+ After Confirming Equipment Request users should wait for Approval of Department + Manager . + +

+
+
+
+
+
+
+ +
+
+

+ Tree View of Department Manager.

+

The Department Manager Has a Menu Which he can Review All Dept Approval Equipment + Request.

+
+
+
+
+
+
+ +
+
+

+ Form View of Department Manager.

+

+ If the user has checked the "damage" field, the department manager will have two + buttons: one for approval and the other for generating expenses. +

+
+
+
+
+
+
+ +
+
+

+ After approval and generation of expenses, the next step is for HR to review and + approve the request. +

+
+
+
+
+
+
+ +
+
+

+ Tree View of HR Officer.

+

The HR Officer Has a Menu Which he can Review All HR Approval Equipment Request.

+
+
+
+
+
+
+ +
+
+

+ Form View of HR Officer.

+

The HR Officer will have only one button, which is the approval button.

+
+
+
+
+
+
+ +
+
+

+ After Approval of HR.

+

Once HR approves the request, they can approve the associated expenses, and the next + step is for the stock manager to create internal transfer.

+
+
+
+
+
+
+ +
+
+

+ Smart Button View of Expense.

+
+
+
+
+
+
+ +
+
+

+ Tree View of Stock Manager.

+

+ The Stock Manager Has a Menu Which he can Review All Stock Approval Equipment + Request. +

+
+
+
+
+
+
+ +
+
+

+ Form View of Stock Manager.

+

+ The stock manager can create an internal transfer from the button for the + stock/warehouse user, which will then generate an internal picking request. +

+
+
+
+
+
+
+ +
+
+

+ + Once the internal transfer is created, they can view it from the button.

+
+
+
+
+
+
+ +
+
+

+ Stock Manager Can validate the transfer.

+
+
+
+
+
+
+ +
+
+

+ Here We have the option for generating Equipment Report.

+
+
+
+
+
+
+ +
+
+

+ It will print a pdf of Equipment Report

+
+
+
+
+
+
+
    +
  • + Allow your employees to request for any equipment + resources from your Equipment Department Manager +
  • +
  • + Allow your employees to request for repair damage of any + type and reimbursement of expenses for that damage repair. + Orders. +
  • +
  • + Department manager can create expense requests for their + employees. +
  • + HR Officer can approve as HR approval and Approve + equipment expense requests from the smart Tab of Expenses. +
  • + Stock Manager can create internal transfer for + equipment requests to transfer requested equipment/product to employee location. +
  • + Integrated with stock inventory to allocate + equipment/products to your employee. +
  • + Allow you to print PDF report of equipment requests as + shown in the below sample. + +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:06th February 2024 +
+

+ Initial Commit for Equipment Request & IT Operation.

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

+
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire + Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo + Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Licensing Consultancy

+
+
+
+
+
+
+

+ Our Industries

+ +
+
+
+
+
+
+ +

Trading

+

Easily procure and sell your products

+
+
+
+
+ +

POS

+

Easy configuration and convivial experience

+
+
+
+
+ +

+ Education

+

A platform for educational management

+
+
+
+
+ +

+ Manufacturing

+

Plan, track and schedule your operations

+
+
+
+
+ +

E-commerce & + Website

+

Mobile friendly, awe-inspiring product pages

+
+
+
+
+ +

Service + Management

+

Keep track of services and invoice

+
+
+
+
+ +

+ Restaurant

+

Run your bar or restaurant methodically

+
+
+
+
+ +

Hotel + Management

+

An all-inclusive hotel management application

+
+
+
+
+
+
+

+ Support

+
+
+
+
+
+
+
+ +
+ Need + Help? +

Got + questions or need help? Get in touch.

+
odoo@cybrosys.com +
+
+
+
+
+
+
+
+ +
+ WhatsApp +

Say hi to + us on WhatsApp!

+
+91 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/equipment_request_it_operations/views/equipment_request_views.xml b/equipment_request_it_operations/views/equipment_request_views.xml new file mode 100644 index 000000000..304aef77f --- /dev/null +++ b/equipment_request_it_operations/views/equipment_request_views.xml @@ -0,0 +1,220 @@ + + + + + equipment.request.view.search + equipment.request + + + + + + + + + + + + + + + + + + + + + equipment.request.view.form + equipment.request + +
+
+
+ +
+
+

+ Type of Request +

+
+ + +
+
+

+ Employee Details +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+ + + + equipment.request.view.tree + equipment.request + + + + + + + + + + + + + + + + Equipment Request + ir.actions.act_window + equipment.request + tree,form + {"search_default_my_equipment_request":1} + + + + Equipment Request + ir.actions.act_window + equipment.request + tree,form + {"search_default_waiting_for_approval_of_department":1} + + + + Equipment Request + ir.actions.act_window + equipment.request + tree,form + {"search_default_waiting_for_approval_of_hr":1} + + + + Equipment Request + ir.actions.act_window + equipment.request + tree,form + {"search_default_waiting_for_approval_of_stock":1} + + +
\ No newline at end of file diff --git a/equipment_request_it_operations/views/menu_action.xml b/equipment_request_it_operations/views/menu_action.xml new file mode 100644 index 000000000..cec1089ba --- /dev/null +++ b/equipment_request_it_operations/views/menu_action.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + \ No newline at end of file