diff --git a/employee_vehicle_request/README.rst b/employee_vehicle_request/README.rst new file mode 100644 index 000000000..32f3a3d12 --- /dev/null +++ b/employee_vehicle_request/README.rst @@ -0,0 +1,41 @@ +Employee Vehicle Request +======================== +This module is used for manage vehicle requests from employee. +This module also checking the vehicle availability at the requested time slot + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: Nilmar Shereef @ Cybrosys, odoo@cybrosys.com + Niyas Raphy @cybrosys, odoo@cybrosys.com + Yadhukrishna K @cybrosys, odoo@cybrosys.com + Muhammed Nafih @cybrosys, 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/employee_vehicle_request/__init__.py b/employee_vehicle_request/__init__.py new file mode 100644 index 000000000..48441876a --- /dev/null +++ b/employee_vehicle_request/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2019-TODAY Cybrosys Technologies(). +# Author: Nilmar Shereef @ Cybrosys, (odoo@cybrosys.com) +# Niyas Raphy @ Cybrosys, (odoo@cybrosys.com) +# Yadhukrishna @ Cybrosys, (odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/employee_vehicle_request/__manifest__.py b/employee_vehicle_request/__manifest__.py new file mode 100644 index 000000000..2d14a7a47 --- /dev/null +++ b/employee_vehicle_request/__manifest__.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# Author: Nilmar Shereef @ Cybrosys, (odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Employee Vehicle Request', + 'version': '15.0.1.0.0', + 'summary': """Manage Vehicle Requests From Employee""", + 'description': """This module is used for manage vehicle requests from employee. + This module also checking the vehicle availability at the requested time slot.""", + 'category': "Generic Modules/Human Resources", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base', 'hr', 'fleet'], + 'data': [ + 'data/data.xml', + 'security/security.xml', + 'security/ir.model.access.csv', + 'views/employee_fleet_view.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/employee_vehicle_request/data/data.xml b/employee_vehicle_request/data/data.xml new file mode 100644 index 000000000..1a6b2294d --- /dev/null +++ b/employee_vehicle_request/data/data.xml @@ -0,0 +1,17 @@ + + + + + + User can only see his/her vehicle + + + + + + + [] + + + + \ No newline at end of file diff --git a/employee_vehicle_request/doc/RELEASE_NOTES.md b/employee_vehicle_request/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..2a9bc5d17 --- /dev/null +++ b/employee_vehicle_request/doc/RELEASE_NOTES.md @@ -0,0 +1,5 @@ +## Module + +#### 16.11.2021 +#### Version 15.0.1.0.0 +#### ADD diff --git a/employee_vehicle_request/models/__init__.py b/employee_vehicle_request/models/__init__.py new file mode 100644 index 000000000..3f50c1a7d --- /dev/null +++ b/employee_vehicle_request/models/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2019-TODAY Cybrosys Technologies(). +# Author: Nilmar Shereef @ Cybrosys, (odoo@cybrosys.com) +# Niyas Raphy @ Cybrosys, (odoo@cybrosys.com) +# Yadhukrishna @ Cybrosys, (odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +# -*- coding: utf-8 -*- + +from . import employee_fleet diff --git a/employee_vehicle_request/models/employee_fleet.py b/employee_vehicle_request/models/employee_fleet.py new file mode 100644 index 000000000..523ce3fbb --- /dev/null +++ b/employee_vehicle_request/models/employee_fleet.py @@ -0,0 +1,177 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2019-TODAY Cybrosys Technologies(). +# Author: Nilmar Shereef @ Cybrosys, (odoo@cybrosys.com) +# Niyas Raphy @ Cybrosys, (odoo@cybrosys.com) +# Yadhukrishna @ Cybrosys, (odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +# -*- coding: utf-8 -*- + +from datetime import datetime +from odoo import models, fields, api, _ +from odoo.exceptions import UserError + + +class FleetReservedTime(models.Model): + _name = "fleet.reserved" + _description = "Reserved Time" + + employee = fields.Many2one('hr.employee', string='Employee') + date_from = fields.Datetime(string='Reserved Date From') + date_to = fields.Datetime(string='Reserved Date To') + reserved_obj = fields.Many2one('fleet.vehicle') + + +class FleetVehicleInherit(models.Model): + _inherit = 'fleet.vehicle' + + check_availability = fields.Boolean(default=True, copy=False) + reserved_time = fields.One2many('fleet.reserved', 'reserved_obj', string='Reserved Time', readonly=1, ondelete='cascade') + + +class EmployeeFleet(models.Model): + _name = 'employee.fleet' + _description = 'Employee Vehicle Request' + _inherit = 'mail.thread' + + @api.model + def create(self, vals): + vals['name'] = self.env['ir.sequence'].next_by_code('employee.fleet') + return super(EmployeeFleet, self).create(vals) + + def send(self): + if self.date_from and self.date_to: + fleet_obj = self.env['fleet.vehicle'].search([]) + check_availability = 0 + for i in fleet_obj: + for each in i.reserved_time: + if each.date_from and each.date_to: + if each.date_from <= self.date_from <= each.date_to: + check_availability = 1 + elif self.date_from < each.date_from: + if each.date_from <= self.date_to <= each.date_to: + check_availability = 1 + elif self.date_to > each.date_to: + check_availability = 1 + else: + check_availability = 0 + else: + check_availability = 0 + if check_availability == 0: + reserved_id = self.fleet.reserved_time.create({'employee': self.employee.id, + 'date_from': self.date_from, + 'date_to': self.date_to, + 'reserved_obj': self.fleet.id, + }) + self.write({'reserved_fleet_id': reserved_id.id}) + self.state = 'waiting' + else: + raise UserError(_('Sorry This vehicle is already requested by another employee')) + + def approve(self): + # self.fleet.fleet_status = True + self.state = 'confirm' + mail_content = _('Hi %s,
Your vehicle request for the reference %s is approved.') % \ + (self.employee.name, self.name) + main_content = { + 'subject': _('%s: Approved') % self.name, + 'author_id': self.env.user.partner_id.id, + 'body_html': mail_content, + 'email_to': self.employee.work_email, + } + mail_id = self.env['mail.mail'].create(main_content) + mail_id.mail_message_id.body = mail_content + mail_id.send() + if self.employee.user_id: + # mail_id.mail_message_id.write({'notified_partner_ids': [(4, self.employee.user_id.partner_id.id)]}) + mail_id.mail_message_id.write({'partner_ids': [(4, self.employee.user_id.partner_id.id)]}) + + def reject(self): + self.reserved_fleet_id.unlink() + self.state = 'reject' + mail_content = _('Hi %s,
Sorry, Your vehicle request for the reference %s is Rejected.') % \ + (self.employee.name, self.name) + + main_content = { + 'subject': _('%s: Approved') % self.name, + 'author_id': self.env.user.partner_id.id, + 'body_html': mail_content, + 'email_to': self.employee.work_email, + } + mail_id = self.env['mail.mail'].create(main_content) + mail_id.mail_message_id.body = mail_content + mail_id.send() + if self.employee.user_id: + # mail_id.mail_message_id.write({'notified_partner_ids': [(4, self.employee.user_id.partner_id.id)]}) + mail_id.mail_message_id.write({'partner_ids': [(4, self.employee.user_id.partner_id.id)]}) + + def cancel(self): + if self.reserved_fleet_id: + self.reserved_fleet_id.unlink() + self.state = 'cancel' + + def returned(self): + self.reserved_fleet_id.unlink() + self.returned_date = fields.datetime.now() + self.state = 'return' + + @api.constrains('date_from', 'date_to') + def onchange_date_to(self): + for each in self: + if each.date_from > each.date_to: + raise UserError(_('Date To must be greater than Date From')) + + @api.onchange('date_from', 'date_to') + def check_availability(self): + if self.date_from and self.date_to: + self.fleet = '' + fleet_obj = self.env['fleet.vehicle'].search([]) + for i in fleet_obj: + for each in i.reserved_time: + if each.date_from and each.date_to: + if each.date_from <= self.date_from <= each.date_to: + i.write({'check_availability': False}) + elif self.date_from < each.date_from: + if each.date_from <= self.date_to <= each.date_to: + i.write({'check_availability': False}) + elif self.date_to > each.date_to: + i.write({'check_availability': False}) + else: + i.write({'check_availability': True}) + else: + i.write({'check_availability': True}) + + reserved_fleet_id = fields.Many2one('fleet.reserved', invisible=1, copy=False) + name = fields.Char(string='Request Number', copy=False) + employee = fields.Many2one('hr.employee', string='Employee', required=1, readonly=True, + states={'draft': [('readonly', False)]}) + req_date = fields.Date(string='Requested Date', default=fields.Date.context_today, required=1, readonly=True, + states={'draft': [('readonly', False)]}, help="Requested Date") + fleet = fields.Many2one('fleet.vehicle', string='Vehicle', required=1, readonly=True, + states={'draft': [('readonly', False)]}) + date_from = fields.Datetime(string='From', required=1, readonly=True, + states={'draft': [('readonly', False)]}) + date_to = fields.Datetime(string='To', required=1, readonly=True, + states={'draft': [('readonly', False)]}) + returned_date = fields.Datetime(string='Returned Date', readonly=1) + purpose = fields.Text(string='Purpose', required=1, readonly=True, + states={'draft': [('readonly', False)]}, help="Purpose") + state = fields.Selection([('draft', 'Draft'), ('waiting', 'Waiting for Approval'), ('cancel', 'Cancel'), + ('confirm', 'Approved'), ('reject', 'Rejected'), ('return', 'Returned')], + string="State", default="draft") + diff --git a/employee_vehicle_request/security/ir.model.access.csv b/employee_vehicle_request/security/ir.model.access.csv new file mode 100644 index 000000000..6401ebdc3 --- /dev/null +++ b/employee_vehicle_request/security/ir.model.access.csv @@ -0,0 +1,7 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_fleet_reserved_employee,access.fleet.reserved.employee,model_fleet_reserved,base.group_user,1,1,1,0 +access_fleet_reserved_hr,access.fleet.reserved.hr,model_fleet_reserved,hr.group_hr_manager,1,1,1,1 +access_fleet_reserved_hr_user,access.fleet.reserved.hr.user,model_fleet_reserved,hr.group_hr_user,1,1,1,0 +access_employee_fleet_employee,access.employee.fleet.employee,model_employee_fleet,base.group_user,1,1,1,0 +access_employee_fleet_hr,access.employee.fleet.hr,model_employee_fleet,hr.group_hr_manager,1,1,1,1 +access_employee_fleet_hr_user,access.employee.fleet.hr.user,model_employee_fleet,hr.group_hr_user,1,1,1,0 diff --git a/employee_vehicle_request/security/security.xml b/employee_vehicle_request/security/security.xml new file mode 100644 index 000000000..cc4ef8001 --- /dev/null +++ b/employee_vehicle_request/security/security.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/employee_vehicle_request/static/description/assets/icons/check.png b/employee_vehicle_request/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/check.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/chevron.png b/employee_vehicle_request/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/chevron.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/cogs.png b/employee_vehicle_request/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/cogs.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/consultation.png b/employee_vehicle_request/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/consultation.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/ecom-black.png b/employee_vehicle_request/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/ecom-black.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/education-black.png b/employee_vehicle_request/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/education-black.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/hotel-black.png b/employee_vehicle_request/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/hotel-black.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/license.png b/employee_vehicle_request/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/license.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/lifebuoy.png b/employee_vehicle_request/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/lifebuoy.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/logo.png b/employee_vehicle_request/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/logo.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/manufacturing-black.png b/employee_vehicle_request/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/manufacturing-black.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/pos-black.png b/employee_vehicle_request/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/pos-black.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/puzzle.png b/employee_vehicle_request/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/puzzle.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/restaurant-black.png b/employee_vehicle_request/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/restaurant-black.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/service-black.png b/employee_vehicle_request/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/service-black.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/trading-black.png b/employee_vehicle_request/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/trading-black.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/training.png b/employee_vehicle_request/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/training.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/update.png b/employee_vehicle_request/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/update.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/user.png b/employee_vehicle_request/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/user.png differ diff --git a/employee_vehicle_request/static/description/assets/icons/wrench.png b/employee_vehicle_request/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/employee_vehicle_request/static/description/assets/icons/wrench.png differ diff --git a/employee_vehicle_request/static/description/assets/modules/1.png b/employee_vehicle_request/static/description/assets/modules/1.png new file mode 100644 index 000000000..6bd27b8b5 Binary files /dev/null and b/employee_vehicle_request/static/description/assets/modules/1.png differ diff --git a/employee_vehicle_request/static/description/assets/modules/2.png b/employee_vehicle_request/static/description/assets/modules/2.png new file mode 100644 index 000000000..9aeec92c9 Binary files /dev/null and b/employee_vehicle_request/static/description/assets/modules/2.png differ diff --git a/employee_vehicle_request/static/description/assets/modules/3.png b/employee_vehicle_request/static/description/assets/modules/3.png new file mode 100644 index 000000000..4e4ea0e51 Binary files /dev/null and b/employee_vehicle_request/static/description/assets/modules/3.png differ diff --git a/employee_vehicle_request/static/description/assets/modules/4.png b/employee_vehicle_request/static/description/assets/modules/4.png new file mode 100644 index 000000000..9aeec92c9 Binary files /dev/null and b/employee_vehicle_request/static/description/assets/modules/4.png differ diff --git a/employee_vehicle_request/static/description/assets/modules/5.png b/employee_vehicle_request/static/description/assets/modules/5.png new file mode 100644 index 000000000..90bf4d489 Binary files /dev/null and b/employee_vehicle_request/static/description/assets/modules/5.png differ diff --git a/employee_vehicle_request/static/description/assets/modules/6.png b/employee_vehicle_request/static/description/assets/modules/6.png new file mode 100644 index 000000000..04dff1ef5 Binary files /dev/null and b/employee_vehicle_request/static/description/assets/modules/6.png differ diff --git a/employee_vehicle_request/static/description/assets/screenshots/hero.png b/employee_vehicle_request/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..d87891bfa Binary files /dev/null and b/employee_vehicle_request/static/description/assets/screenshots/hero.png differ diff --git a/employee_vehicle_request/static/description/assets/screenshots/screenshot-1.png b/employee_vehicle_request/static/description/assets/screenshots/screenshot-1.png new file mode 100644 index 000000000..1c1ee047f Binary files /dev/null and b/employee_vehicle_request/static/description/assets/screenshots/screenshot-1.png differ diff --git a/employee_vehicle_request/static/description/assets/screenshots/screenshot-2.png b/employee_vehicle_request/static/description/assets/screenshots/screenshot-2.png new file mode 100644 index 000000000..a78b3141c Binary files /dev/null and b/employee_vehicle_request/static/description/assets/screenshots/screenshot-2.png differ diff --git a/employee_vehicle_request/static/description/assets/screenshots/screenshot-3.png b/employee_vehicle_request/static/description/assets/screenshots/screenshot-3.png new file mode 100644 index 000000000..e99ae4813 Binary files /dev/null and b/employee_vehicle_request/static/description/assets/screenshots/screenshot-3.png differ diff --git a/employee_vehicle_request/static/description/assets/screenshots/screenshot-4.png b/employee_vehicle_request/static/description/assets/screenshots/screenshot-4.png new file mode 100644 index 000000000..8f9de5443 Binary files /dev/null and b/employee_vehicle_request/static/description/assets/screenshots/screenshot-4.png differ diff --git a/employee_vehicle_request/static/description/banner.png b/employee_vehicle_request/static/description/banner.png new file mode 100644 index 000000000..5a9eead0a Binary files /dev/null and b/employee_vehicle_request/static/description/banner.png differ diff --git a/employee_vehicle_request/static/description/cybro_logo.png b/employee_vehicle_request/static/description/cybro_logo.png new file mode 100644 index 000000000..bb309114c Binary files /dev/null and b/employee_vehicle_request/static/description/cybro_logo.png differ diff --git a/employee_vehicle_request/static/description/icon.png b/employee_vehicle_request/static/description/icon.png new file mode 100644 index 000000000..cbcba03e8 Binary files /dev/null and b/employee_vehicle_request/static/description/icon.png differ diff --git a/employee_vehicle_request/static/description/index.html b/employee_vehicle_request/static/description/index.html new file mode 100644 index 000000000..050eef763 --- /dev/null +++ b/employee_vehicle_request/static/description/index.html @@ -0,0 +1,628 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ Employee Vehicle Request

+

+ This Module Helps You To Manage Vehicle Requests From Employee +

+ +
+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ Employee can request available vehicle for a time period. He should mention the time period and + purpose. Then he can send this request to hr manager. Here also module checking the availability of + vehicles.

+ +
+
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ + Employee can request for any vehicle

+
+
+ +
+
+ +
+
+

+ + Checking availability of vehicles

+ +
+
+ +
+
+ +
+
+

+ + Validation for send request

+ +
+
+ +
+
+ +
+
+

+ + Validation for requested dates

+ +
+
+ +
+
+ +
+
+

+ + Advanced search view

+ +
+
+ +
+ +
+
+

+ Screenshots +

+
+
+

+ Employee Can Reqest Available Vehicle

+

+ Here any employee can request available vehicle for a time period. He should mention the time period + and purpose. Then he can send this request to HR manager. Here the module also checks the + availability + of vehicle. +

+ +
+
+

+ HR Manager Can Approve/Reject A Vehicle Request

+

+ Here HR Manager can approve the vehicle request. Or she can refuse the request. Also Employee can + cancel this request from this stage before approval or rejection.

+ +
+ +
+

+ Validation Messages

+

+ Validation messages are shown.

+ +
+ +
+

+ Requested Period Validation

+

+ Requested period is also validated.

+ +
+ +
+ + + +
+
+

Suggested Products

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

Our Services

+
+
+ +
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+ + +
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ 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

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

Need Help?

+
+
+
+ + +
+ +
+ +
+ +
+ WhatsApp +
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/employee_vehicle_request/views/employee_fleet_view.xml b/employee_vehicle_request/views/employee_fleet_view.xml new file mode 100644 index 000000000..09fe8a169 --- /dev/null +++ b/employee_vehicle_request/views/employee_fleet_view.xml @@ -0,0 +1,122 @@ + + + + Vehicle Request Code + employee.fleet + + VR + + + + fleet.vehicle.form.inherit.view + fleet.vehicle + + + + + + + + + + + employee.fleet.form + employee.fleet + +
+
+
+ +

+ +

+ + + + + + + + + + + + + +
+
+ + +
+
+
+
+ + + employee.fleet.tree + employee.fleet + + + + + + + + + + + + + + employee.fleet.search + employee.fleet + + + + + + + + + + + + + + + + + + + + Vehicle Request + employee.fleet + tree,form + + +

+ Click to create a New Vehicle Request. +

+
+
+ + + +
\ No newline at end of file diff --git a/partner_emails_history/README.rst b/partner_emails_history/README.rst new file mode 100755 index 000000000..377ab47cb --- /dev/null +++ b/partner_emails_history/README.rst @@ -0,0 +1,51 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--1-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Partner Email and SMS History +============================= + +This module developed to record partner sms and email history . + +Installation +============ + +Just select it from available modules to install it, there is no need to extra installations. + +Configuration +============= + +Nothing to configure. + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: V13 Vinaya S B @ cybrosys + V14 Minhaj T @cybrosys +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/partner_emails_history/__init__.py b/partner_emails_history/__init__.py new file mode 100644 index 000000000..d890954ba --- /dev/null +++ b/partner_emails_history/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies(). +# Author: Vinaya S B() +# you can modify it under the terms of the GNU LESSER +# 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 LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# GENERAL PUBLIC LICENSE (AGPL v3) along with this program. +# If not, see . +# +############################################################################## + +from . import models diff --git a/partner_emails_history/__manifest__.py b/partner_emails_history/__manifest__.py new file mode 100644 index 000000000..249680f3b --- /dev/null +++ b/partner_emails_history/__manifest__.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# Author: Vinaya S B() +# you can modify it under the terms of the GNU LESSER +# 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 LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# GENERAL PUBLIC LICENSE (AGPL v3) along with this program. +# If not, see . +# +############################################################################## +{ + 'name': "Partner Email and SMS History", + 'version': '15.0.1.0.0', + 'summary': """ Send/Received Emails and SMS History From Partner Form""", + 'description': """Send/Received Emails and SMS History From Partner Form""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'category': 'Tools', + 'depends': ['contacts', 'sms'], + 'data': ['views/partner_emails_history_view.xml'], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} \ No newline at end of file diff --git a/partner_emails_history/doc/RELEASE_NOTES.md b/partner_emails_history/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..e79d0f665 --- /dev/null +++ b/partner_emails_history/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 16.10.2021 +#### Version 15.0.1.0.0 +#### ADD +- Initial Commit for partner_emails_history diff --git a/partner_emails_history/models/__init__.py b/partner_emails_history/models/__init__.py new file mode 100644 index 000000000..8b29c8f77 --- /dev/null +++ b/partner_emails_history/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies(). +# Author: Vinaya S B() +# you can modify it under the terms of the GNU LESSER +# 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 LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# GENERAL PUBLIC LICENSE (AGPL v3) along with this program. +# If not, see . +# +############################################################################## + +from . import partner_emails_history + + diff --git a/partner_emails_history/models/partner_emails_history.py b/partner_emails_history/models/partner_emails_history.py new file mode 100644 index 000000000..614d3e04f --- /dev/null +++ b/partner_emails_history/models/partner_emails_history.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies(). +# Author: Vinaya S B() +# you can modify it under the terms of the GNU LESSER +# 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 LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# GENERAL PUBLIC LICENSE (AGPL v3) along with this program. +# If not, see . +# +############################################################################## + +from odoo import api, fields, models + + +class PartnerEmailSMSHistory(models.Model): + _inherit = 'res.partner' + + def action_view_partner_sms(self): + self.ensure_one() + action = self.env.ref('sms.sms_sms_action').read()[0] + action['domain'] = [ + ('partner_id', '=', self.id)] + return action + + def sent_email_history(self): + action = self.env.ref('mail.action_view_mail_mail') + result = action.read()[0] + result['domain'] = [('email_from', '=', self.email)] + return result + + def received_email_history(self): + action = self.env.ref('mail.action_view_mail_mail') + result = action.read()[0] + result['domain'] = ['|', ('email_to', '=', self.email), ('recipient_ids', '=', self.email)] + return result + + +class ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + sms_history = fields.Boolean('SMS History', config_parameter='partner_emails_history.default_sms_history', default=False) \ No newline at end of file diff --git a/partner_emails_history/static/description/assets/icons/check.png b/partner_emails_history/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/check.png differ diff --git a/partner_emails_history/static/description/assets/icons/chevron.png b/partner_emails_history/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/chevron.png differ diff --git a/partner_emails_history/static/description/assets/icons/cogs.png b/partner_emails_history/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/cogs.png differ diff --git a/partner_emails_history/static/description/assets/icons/consultation.png b/partner_emails_history/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/consultation.png differ diff --git a/partner_emails_history/static/description/assets/icons/ecom-black.png b/partner_emails_history/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/ecom-black.png differ diff --git a/partner_emails_history/static/description/assets/icons/education-black.png b/partner_emails_history/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/education-black.png differ diff --git a/partner_emails_history/static/description/assets/icons/hotel-black.png b/partner_emails_history/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/hotel-black.png differ diff --git a/partner_emails_history/static/description/assets/icons/license.png b/partner_emails_history/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/license.png differ diff --git a/partner_emails_history/static/description/assets/icons/lifebuoy.png b/partner_emails_history/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/lifebuoy.png differ diff --git a/partner_emails_history/static/description/assets/icons/logo.png b/partner_emails_history/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/logo.png differ diff --git a/partner_emails_history/static/description/assets/icons/manufacturing-black.png b/partner_emails_history/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/manufacturing-black.png differ diff --git a/partner_emails_history/static/description/assets/icons/pos-black.png b/partner_emails_history/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/pos-black.png differ diff --git a/partner_emails_history/static/description/assets/icons/puzzle.png b/partner_emails_history/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/puzzle.png differ diff --git a/partner_emails_history/static/description/assets/icons/restaurant-black.png b/partner_emails_history/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/restaurant-black.png differ diff --git a/partner_emails_history/static/description/assets/icons/service-black.png b/partner_emails_history/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/service-black.png differ diff --git a/partner_emails_history/static/description/assets/icons/trading-black.png b/partner_emails_history/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/trading-black.png differ diff --git a/partner_emails_history/static/description/assets/icons/training.png b/partner_emails_history/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/training.png differ diff --git a/partner_emails_history/static/description/assets/icons/update.png b/partner_emails_history/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/update.png differ diff --git a/partner_emails_history/static/description/assets/icons/user.png b/partner_emails_history/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/user.png differ diff --git a/partner_emails_history/static/description/assets/icons/wrench.png b/partner_emails_history/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/partner_emails_history/static/description/assets/icons/wrench.png differ diff --git a/partner_emails_history/static/description/assets/modules/1.png b/partner_emails_history/static/description/assets/modules/1.png new file mode 100644 index 000000000..0841c9749 Binary files /dev/null and b/partner_emails_history/static/description/assets/modules/1.png differ diff --git a/partner_emails_history/static/description/assets/modules/2.png b/partner_emails_history/static/description/assets/modules/2.png new file mode 100644 index 000000000..16582ca06 Binary files /dev/null and b/partner_emails_history/static/description/assets/modules/2.png differ diff --git a/partner_emails_history/static/description/assets/modules/3.png b/partner_emails_history/static/description/assets/modules/3.png new file mode 100644 index 000000000..34cee3e01 Binary files /dev/null and b/partner_emails_history/static/description/assets/modules/3.png differ diff --git a/partner_emails_history/static/description/assets/modules/4.png b/partner_emails_history/static/description/assets/modules/4.png new file mode 100644 index 000000000..0f0d5d3c2 Binary files /dev/null and b/partner_emails_history/static/description/assets/modules/4.png differ diff --git a/partner_emails_history/static/description/assets/modules/5.png b/partner_emails_history/static/description/assets/modules/5.png new file mode 100644 index 000000000..164c1e5cd Binary files /dev/null and b/partner_emails_history/static/description/assets/modules/5.png differ diff --git a/partner_emails_history/static/description/assets/modules/6.png b/partner_emails_history/static/description/assets/modules/6.png new file mode 100644 index 000000000..7f8cf1ee1 Binary files /dev/null and b/partner_emails_history/static/description/assets/modules/6.png differ diff --git a/partner_emails_history/static/description/assets/screenshots/hero.png b/partner_emails_history/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..01ff9c22e Binary files /dev/null and b/partner_emails_history/static/description/assets/screenshots/hero.png differ diff --git a/partner_emails_history/static/description/assets/screenshots/screenshot-1.png b/partner_emails_history/static/description/assets/screenshots/screenshot-1.png new file mode 100644 index 000000000..c9e2f2b78 Binary files /dev/null and b/partner_emails_history/static/description/assets/screenshots/screenshot-1.png differ diff --git a/partner_emails_history/static/description/assets/screenshots/screenshot-2.png b/partner_emails_history/static/description/assets/screenshots/screenshot-2.png new file mode 100644 index 000000000..ce5bd8e95 Binary files /dev/null and b/partner_emails_history/static/description/assets/screenshots/screenshot-2.png differ diff --git a/partner_emails_history/static/description/assets/screenshots/screenshot-3.png b/partner_emails_history/static/description/assets/screenshots/screenshot-3.png new file mode 100644 index 000000000..b09711a14 Binary files /dev/null and b/partner_emails_history/static/description/assets/screenshots/screenshot-3.png differ diff --git a/partner_emails_history/static/description/assets/screenshots/screenshot-4.png b/partner_emails_history/static/description/assets/screenshots/screenshot-4.png new file mode 100644 index 000000000..cca224b26 Binary files /dev/null and b/partner_emails_history/static/description/assets/screenshots/screenshot-4.png differ diff --git a/partner_emails_history/static/description/banner.png b/partner_emails_history/static/description/banner.png new file mode 100644 index 000000000..f0c977511 Binary files /dev/null and b/partner_emails_history/static/description/banner.png differ diff --git a/partner_emails_history/static/description/cybro_logo.png b/partner_emails_history/static/description/cybro_logo.png new file mode 100644 index 000000000..bb309114c Binary files /dev/null and b/partner_emails_history/static/description/cybro_logo.png differ diff --git a/partner_emails_history/static/description/icon.png b/partner_emails_history/static/description/icon.png new file mode 100644 index 000000000..b2ca68a22 Binary files /dev/null and b/partner_emails_history/static/description/icon.png differ diff --git a/partner_emails_history/static/description/index.html b/partner_emails_history/static/description/index.html new file mode 100644 index 000000000..0254380ea --- /dev/null +++ b/partner_emails_history/static/description/index.html @@ -0,0 +1,590 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ Partner Email and SMS History

+

+ Maintains Email and SMS History(Sent mail and Received mail) In Partner Form +

+ +
+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ Provides SMS and Email history in partner form.

+ +
+
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Sent emails of partner.

+
+
+
+
+ +
+
+

+ Received emails of partner.

+
+
+
+
+ +
+
+

+ SMS history of partner.

+
+
+ +
+ +
+
+

+ Screenshots +

+
+
+

+ Sent Emails, Received Emails & SMS History Button

+

+ Here Sent Emails Button To View All Sent Emails , Received Emails Button To View All Received Emails, + SMS button to view SMS history.

+ +
+
+

+ Product Brand Filter in eCommerce

+

+ Product Brand Filter us shown in the eCommerce website.

+ +
+ +
+

+ View All Sent Emails of A Partner

+

+ Here ,we can view all sent emails of partner.

+ +
+ + +
+

+ View All Received Emails of A Partner

+

+ Here, We can view all received emails of partner.

+ +
+ +
+ + +
+
+

Suggested Products

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

Our Services

+
+
+ +
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+ + +
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ 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

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

Need Help?

+
+
+
+ + +
+ +
+ +
+ +
+ WhatsApp +
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/partner_emails_history/views/partner_emails_history_view.xml b/partner_emails_history/views/partner_emails_history_view.xml new file mode 100644 index 000000000..ac88b1ef8 --- /dev/null +++ b/partner_emails_history/views/partner_emails_history_view.xml @@ -0,0 +1,51 @@ + + + + res.partner.form.inherit + res.partner + + + +