diff --git a/crm_check_approve_limiter/README.rst b/crm_check_approve_limiter/README.rst new file mode 100644 index 000000000..db26ae7de --- /dev/null +++ b/crm_check_approve_limiter/README.rst @@ -0,0 +1,55 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +CheckList & Approval Process in CRM +=================================== +* Check lists are assigned per each opportunity stage. +* The app lets assign security groups for each check list point. +* To move a CRM lead forward in your funnel, its check list should be fully confirmed. +* Check list actions are saved in history. + +Installation +============ + - www.odoo.com/documentation/17.0/setup/install.html + - Install our custom addon + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + + +License +------- +General Public License, Version 3 (AGPL v3). +( https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developer: (V17) Gayathri V ,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 https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/crm_check_approve_limiter/__init__.py b/crm_check_approve_limiter/__init__.py new file mode 100644 index 000000000..ae4e51a58 --- /dev/null +++ b/crm_check_approve_limiter/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V (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/crm_check_approve_limiter/__manifest__.py b/crm_check_approve_limiter/__manifest__.py new file mode 100644 index 000000000..42fec5f83 --- /dev/null +++ b/crm_check_approve_limiter/__manifest__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V (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': 'CheckList & Approval Process in CRM', + 'version': '17.0.1.0.0', + 'category': 'CRM', + 'summary': 'Manage CRM based on CheckList and Team/Stage and' + 'Approval Process to Make Sure Everything Completed In ' + 'Each Stage', + 'description': """Module to manage CRM and CheckLists.This module will + helps to manage CRM efficiently by managing checklists and approval system + for CRM data. """, + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['crm'], + 'data': [ + 'security/crm_check_approve_limiter_groups.xml', + 'security/ir.model.access.csv', + 'views/crm_stage_views.xml', + 'views/crm_lead_views.xml', + ], + 'images': [ + 'static/description/banner.png' + ], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/crm_check_approve_limiter/doc/RELEASE_NOTES.md b/crm_check_approve_limiter/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..facb79456 --- /dev/null +++ b/crm_check_approve_limiter/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 20.01.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for CheckList & Approval Process in CRM diff --git a/crm_check_approve_limiter/models/__init__.py b/crm_check_approve_limiter/models/__init__.py new file mode 100644 index 000000000..9c2d68b77 --- /dev/null +++ b/crm_check_approve_limiter/models/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Gayathri V (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 crm_stage +from . import crm_lead +from . import crm_lead_check_history +from . import stage_check_list diff --git a/crm_check_approve_limiter/models/crm_lead.py b/crm_check_approve_limiter/models/crm_lead.py new file mode 100644 index 000000000..d3e4a4440 --- /dev/null +++ b/crm_check_approve_limiter/models/crm_lead.py @@ -0,0 +1,182 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V (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 . +# +############################################################################# +"""Module Containing CRM lead and CheckList History Models""" +from datetime import datetime +from odoo import api, fields, models, _ +from odoo.exceptions import ValidationError + + +class CrmLead(models.Model): + """class for checklist history models""" + _inherit = "crm.lead" + + check_list_ids = fields.Many2many('stage.check.list', + domain="['&'," + " ('stage_id', '=', stage_id)," + "'|',('sales_team_id','='," + "team_id)," + "('sales_team_id', '=', False)]", + string="Checklist", tracking=True, + help="Many2many field representing a" + " checklist associated with stage.") + check_stage_ids = fields.One2many( + related="stage_id.stage_check_list_lines_ids", + help="One2many field related to the " + "stage's check list lines.") + + @api.depends('check_list_ids') + def checklist_progress(self): + """Method for Computing CheckList progress value based on selected + checklist items """ + for rec in self: + total_len = rec.env['stage.check.list']. \ + search_count(['&', ('stage_id', '=', rec.stage_id.id), '|', + ('sales_team_id', '=', rec.team_id.id), + ('sales_team_id', '=', False)]) + if total_len != 0: + check_list_len = len(rec.check_list_ids.filtered( + lambda r: r.sales_team_id == rec.team_id or not + r.sales_team_id)) + rec.checklist_progress = (check_list_len * 100) / total_len + else: + rec.checklist_progress = 0 + + checklist_progress = fields.Float(compute=checklist_progress, + string='Progress', + default=0.0) + check_list_history_ids = fields.One2many('crm.lead.check.history', + 'lead_id', + string="History", readonly=True) + + def write(self, vals_set): + """Super the write method for data validation.Here we check + Progression and regression of stages and based on checklist + completion stage progression can be blocked from here """ + if 'stage_id' in vals_set.keys(): + new_stage_id = self.env['crm.stage'].browse([vals_set['stage_id']]) + if new_stage_id \ + and self.stage_id.sequence < new_stage_id.sequence \ + and not self.stage_id.is_pre_checking \ + and self.stage_id.stage_check_list_lines_ids \ + and int(self.checklist_progress) != 100 \ + and not self.env.user. \ + has_group('crm_check_approve_limiter.' + 'crm_check_approve_manager'): + raise ValidationError(_( + "You cannot move this case forward until " + "all the check list items are done for " + "this " + " stage.")) + self.check_list_ids = False + for item in self.stage_id.stage_check_list_lines_ids: + if item.is_stage_recover: + history = self.check_list_history_ids.search([( + 'check_item_id', '=', item.id)], order='id desc', + limit=1) or False + if history and history.list_action == 'complete' \ + and item not in self.check_list_ids: + self.check_list_ids += item + if 'check_list_ids' in vals_set.keys(): + group_check = self.env.user. \ + has_group('crm_check_approve_limiter.' + 'crm_check_approve_manager') + user_groups = self.env.user.groups_id + new_ids = self.env['stage.check.list']. \ + search([('id', 'in', vals_set['check_list_ids'][-1])]) + check_item_id = (self.check_list_ids - new_ids) + check_item2 = (new_ids - self.check_list_ids) + for ch_lst in check_item2: + if (ch_lst.approve_groups_ids and not ch_lst.approve_groups_ids + .filtered(lambda f: f in user_groups) and + not group_check): + grp_string_t = '\n'.join( + map(str, ch_lst.approve_groups_ids. + mapped('full_name'))) + raise ValidationError(f'Only the below specified group' + f' members can complete this task' + f' : {grp_string_t}') + for ch_lst in check_item_id: + if (ch_lst.approve_groups_ids and not ch_lst.approve_groups_ids + .filtered( + lambda f: f in user_groups) and not group_check): + grp_string_t = '\n'.join( + map(str, ch_lst.approve_groups_ids. + mapped('full_name'))) + raise ValidationError(f'Only the below specified group' + f' members can undo this task' + f' : {grp_string_t}') + if 'stage_id' not in vals_set.keys() and check_item_id: + for c_item in check_item_id: + vals = { + 'lead_id': self.id, + 'check_item_id': c_item.id, + 'list_action': 'not_complete', + 'change_date': datetime.now(), + 'user_id': self.env.user.id, + 'stage_id': self.stage_id.id + } + self.env['crm.lead.check.history'].sudo().create(vals) + elif 'stage_id' not in vals_set.keys() and check_item2: + for c_item in check_item2: + vals = { + 'lead_id': self.id, + 'check_item_id': c_item.id, + 'list_action': 'complete', + 'change_date': datetime.now(), + 'user_id': self.env.user.id, + 'stage_id': self.stage_id.id + } + self.env['crm.lead.check.history'].sudo().create(vals) + res = super().write(vals_set) + return res + + @api.onchange('stage_id') + def _onchange_state_id(self): + """It performs validation checks and updates the 'check_list_ids' + field. """ + old_stage_id = self._origin.stage_id + if old_stage_id.sequence < self.stage_id.sequence \ + and not old_stage_id.is_pre_checking \ + and old_stage_id.stage_check_list_lines_ids \ + and int(self.checklist_progress) != 100 and not self.env.user. \ + has_group('crm_check_approve_limiter.' + 'crm_check_approve_manager'): + raise ValidationError(_("You cannot move this case forward until " + "all the check list items are done for" + " this stage.")) + if old_stage_id.sequence > self.stage_id.sequence \ + and self.stage_id.is_disable_regress and not self.env.user. \ + has_group('crm_check_approve_limiter.' + 'crm_check_approve_manager'): + raise ValidationError(_("Regression to the selected stage is " + "blocked. " + "Please contact Administrators for " + "required permission")) + self.check_list_ids = False + for item in self.stage_id.stage_check_list_lines_ids: + if item.is_stage_recover: + history = self.check_list_history_ids.search([( + 'check_item_id', '=', item.id)], order='id desc', + limit=1) or False + if history and history.list_action == 'complete' and item \ + not in self.check_list_ids: + self.check_list_ids += item diff --git a/crm_check_approve_limiter/models/crm_lead_check_history.py b/crm_check_approve_limiter/models/crm_lead_check_history.py new file mode 100644 index 000000000..138272f93 --- /dev/null +++ b/crm_check_approve_limiter/models/crm_lead_check_history.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V (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 . +# +############################################################################# +"""Module Containing CRM lead and CheckList History Models""" +from odoo import fields, models + + +class CrmLeadCheckHistory(models.Model): + """class for to check the history of stage""" + _name = "crm.lead.check.history" + _description = "Model to track the history of stage changes for CRM leads" + + check_item_id = fields.Many2one('stage.check.list', + string="Check Item", + help="Many2one field representing the " + "associated check item.") + list_action = fields.Selection([('complete', 'Complete'), + ('not_complete', 'Not Complete')], + required=True, string="Action", + help="Selection field representing " + "the action for the check item.") + user_id = fields.Many2one('res.users', string="User", + help="Many2one field representing the associated" + " user.") + change_date = fields.Datetime(string="Date", + help="Datetime field representing the" + " date of the check item action.") + stage_id = fields.Many2one('crm.stage', string="Stage", + help="Many2one field representing " + "the associated stage.") + lead_id = fields.Many2one('crm.lead', string="Lead", + help="Many2one field representing the" + " associated lead.") diff --git a/crm_check_approve_limiter/models/crm_stage.py b/crm_check_approve_limiter/models/crm_stage.py new file mode 100644 index 000000000..be97bb23a --- /dev/null +++ b/crm_check_approve_limiter/models/crm_stage.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V(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 . +# +############################################################################# +"""Module containing Stage-based checklist Models""" +from odoo import fields, models + + +class CrmStage(models.Model): + """ Inherited model for stage-based checklists. """ + _inherit = "crm.stage" + + stage_check_list_lines_ids = fields.One2many('stage.check.list', + 'stage_id', + string="CheckList", + help="One2many field " + "representing " + "the checklist lines " + "associated with the" + " stage.") + is_pre_checking = fields.Boolean(default=False, + string="No Need for checklist", + help="If checked, moving to the next " + "stage doesn't require the checklist" + "to be done.") + is_disable_regress = fields.Boolean(default=False, + string="Prohibit Regress to this stage", + help="If checked, it would not be " + "possible to move a lead back to" + " this stage.") diff --git a/crm_check_approve_limiter/models/stage_check_list.py b/crm_check_approve_limiter/models/stage_check_list.py new file mode 100644 index 000000000..3783bcd35 --- /dev/null +++ b/crm_check_approve_limiter/models/stage_check_list.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V (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 . +# +############################################################################# +"""Module Containing Checklist data""" +from odoo import fields, models + + +class StageCheckList(models.Model): + """Model for stage-based checklist lines.""" + _name = "stage.check.list" + _description = "Stage Based CheckList" + _rec_name = 'check_task' + + check_task = fields.Char(string="Task", required=True, + help="Char field representing the task associated" + " with the checklist item.") + sales_team_id = fields.Many2one('crm.team', string="Selected Teams", + help="Many2one field representing the " + "selected team associated with the" + " checklist item.") + approve_groups_ids = fields.Many2many('res.groups', string="User Groups", + help="Only these user groups may " + "approve " + "the item") + is_stage_recover = fields.Boolean(default=False, string="Saved", + help="If checked, item will be recoverable" + " for leads on this stage. Otherwise, " + "the item must be approved each time " + "when the lead is on this stage.") + stage_id = fields.Many2one('crm.stage', string="Stage", + help="Many2one field representing the " + "associated stage.") diff --git a/crm_check_approve_limiter/security/crm_check_approve_limiter_groups.xml b/crm_check_approve_limiter/security/crm_check_approve_limiter_groups.xml new file mode 100644 index 000000000..31afdc354 --- /dev/null +++ b/crm_check_approve_limiter/security/crm_check_approve_limiter_groups.xml @@ -0,0 +1,10 @@ + + + + + + CRM Checklist Manager + + + + diff --git a/crm_check_approve_limiter/security/ir.model.access.csv b/crm_check_approve_limiter/security/ir.model.access.csv new file mode 100644 index 000000000..65df70f44 --- /dev/null +++ b/crm_check_approve_limiter/security/ir.model.access.csv @@ -0,0 +1,5 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_crm_stage_checklist,access.crm.stage,model_stage_check_list,base.group_user,1,0,0,0 +access_crm_stage_check_list_manager,access.crm.stage.group.sale.manager,model_stage_check_list,sales_team.group_sale_manager,1,1,1,1 +access_crm_lead_check_history,access.crm.lead.check.history,model_crm_lead_check_history,base.group_user,1,0,0,0 +access_crm_lead_check_history_manager,access.crm.lead.check.history.group.sale.manager,model_crm_lead_check_history,sales_team.group_sale_manager,1,1,1,1 diff --git a/crm_check_approve_limiter/static/description/assets/icons/capture (1).png b/crm_check_approve_limiter/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/capture (1).png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/check.png b/crm_check_approve_limiter/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/check.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/chevron.png b/crm_check_approve_limiter/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/chevron.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/cogs.png b/crm_check_approve_limiter/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/cogs.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/consultation.png b/crm_check_approve_limiter/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/consultation.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/ecom-black.png b/crm_check_approve_limiter/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/ecom-black.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/education-black.png b/crm_check_approve_limiter/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/education-black.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/hotel-black.png b/crm_check_approve_limiter/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/hotel-black.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/img.png b/crm_check_approve_limiter/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/img.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/license.png b/crm_check_approve_limiter/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/license.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/lifebuoy.png b/crm_check_approve_limiter/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/lifebuoy.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/manufacturing-black.png b/crm_check_approve_limiter/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/manufacturing-black.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/photo-capture.png b/crm_check_approve_limiter/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/photo-capture.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/pos-black.png b/crm_check_approve_limiter/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/pos-black.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/puzzle.png b/crm_check_approve_limiter/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/puzzle.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/restaurant-black.png b/crm_check_approve_limiter/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/restaurant-black.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/service-black.png b/crm_check_approve_limiter/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/service-black.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/trading-black.png b/crm_check_approve_limiter/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/trading-black.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/training.png b/crm_check_approve_limiter/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/training.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/update.png b/crm_check_approve_limiter/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/update.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/user.png b/crm_check_approve_limiter/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/user.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/wrench.png b/crm_check_approve_limiter/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/wrench.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/Cybrosys R.png b/crm_check_approve_limiter/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/misc/Cybrosys R.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/categories.png b/crm_check_approve_limiter/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/misc/categories.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/check-box.png b/crm_check_approve_limiter/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/misc/check-box.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/compass.png b/crm_check_approve_limiter/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/misc/compass.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/corporate.png b/crm_check_approve_limiter/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/misc/corporate.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/customer-support.png b/crm_check_approve_limiter/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/misc/customer-support.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/cybrosys-logo.png b/crm_check_approve_limiter/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/misc/cybrosys-logo.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/email.svg b/crm_check_approve_limiter/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/misc/features.png b/crm_check_approve_limiter/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/misc/features.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/logo.png b/crm_check_approve_limiter/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/misc/logo.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/phone.svg b/crm_check_approve_limiter/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/crm_check_approve_limiter/static/description/assets/misc/pictures.png b/crm_check_approve_limiter/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/misc/pictures.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/pie-chart.png b/crm_check_approve_limiter/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/misc/pie-chart.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/right-arrow.png b/crm_check_approve_limiter/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/misc/right-arrow.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/star (1) 2.svg b/crm_check_approve_limiter/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/misc/star.png b/crm_check_approve_limiter/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/misc/star.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/support (1) 1.svg b/crm_check_approve_limiter/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/misc/support-email.svg b/crm_check_approve_limiter/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/misc/support.png b/crm_check_approve_limiter/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/misc/support.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/tick-mark.svg b/crm_check_approve_limiter/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/misc/whatsapp 1.svg b/crm_check_approve_limiter/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/misc/whatsapp.png b/crm_check_approve_limiter/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/misc/whatsapp.png differ diff --git a/crm_check_approve_limiter/static/description/assets/misc/whatsapp.svg b/crm_check_approve_limiter/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/modules/1.gif b/crm_check_approve_limiter/static/description/assets/modules/1.gif new file mode 100644 index 000000000..8ac32db03 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/modules/1.gif differ diff --git a/crm_check_approve_limiter/static/description/assets/modules/1.png b/crm_check_approve_limiter/static/description/assets/modules/1.png new file mode 100644 index 000000000..3bedf7981 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/modules/1.png differ diff --git a/crm_check_approve_limiter/static/description/assets/modules/2.jpg b/crm_check_approve_limiter/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..a1dc39c89 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/modules/2.jpg differ diff --git a/crm_check_approve_limiter/static/description/assets/modules/2.png b/crm_check_approve_limiter/static/description/assets/modules/2.png new file mode 100644 index 000000000..2c8fbb83f Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/modules/2.png differ diff --git a/crm_check_approve_limiter/static/description/assets/modules/3.png b/crm_check_approve_limiter/static/description/assets/modules/3.png new file mode 100644 index 000000000..25ed3e0b6 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/modules/3.png differ diff --git a/crm_check_approve_limiter/static/description/assets/modules/4.png b/crm_check_approve_limiter/static/description/assets/modules/4.png new file mode 100644 index 000000000..bc5648b1a Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/modules/4.png differ diff --git a/crm_check_approve_limiter/static/description/assets/modules/5.png b/crm_check_approve_limiter/static/description/assets/modules/5.png new file mode 100644 index 000000000..7cc3625c7 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/modules/5.png differ diff --git a/crm_check_approve_limiter/static/description/assets/modules/6.png b/crm_check_approve_limiter/static/description/assets/modules/6.png new file mode 100644 index 000000000..745d6db78 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/modules/6.png differ diff --git a/crm_check_approve_limiter/static/description/assets/modules/banner.jpg b/crm_check_approve_limiter/static/description/assets/modules/banner.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/modules/banner.jpg differ diff --git a/crm_check_approve_limiter/static/description/assets/screenshots/1.png b/crm_check_approve_limiter/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..b1a98c07b Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/1.png differ diff --git a/crm_check_approve_limiter/static/description/assets/screenshots/2.png b/crm_check_approve_limiter/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..89bd8a699 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/2.png differ diff --git a/crm_check_approve_limiter/static/description/assets/screenshots/3.png b/crm_check_approve_limiter/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..b7400d54e Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/3.png differ diff --git a/crm_check_approve_limiter/static/description/assets/screenshots/4.png b/crm_check_approve_limiter/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..1be396948 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/4.png differ diff --git a/crm_check_approve_limiter/static/description/assets/screenshots/5.png b/crm_check_approve_limiter/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..e9fdb74e0 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/5.png differ diff --git a/crm_check_approve_limiter/static/description/assets/screenshots/6.png b/crm_check_approve_limiter/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..29ce01e9d Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/6.png differ diff --git a/crm_check_approve_limiter/static/description/assets/screenshots/7.png b/crm_check_approve_limiter/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..095240007 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/7.png differ diff --git a/crm_check_approve_limiter/static/description/assets/screenshots/8.png b/crm_check_approve_limiter/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..3b13e978d Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/8.png differ diff --git a/crm_check_approve_limiter/static/description/assets/screenshots/hero.gif b/crm_check_approve_limiter/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..633f7e795 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/hero.gif differ diff --git a/crm_check_approve_limiter/static/description/banner.png b/crm_check_approve_limiter/static/description/banner.png new file mode 100644 index 000000000..b95b5d7e1 Binary files /dev/null and b/crm_check_approve_limiter/static/description/banner.png differ diff --git a/crm_check_approve_limiter/static/description/icon.png b/crm_check_approve_limiter/static/description/icon.png new file mode 100644 index 000000000..998fb3f42 Binary files /dev/null and b/crm_check_approve_limiter/static/description/icon.png differ diff --git a/crm_check_approve_limiter/static/description/index.html b/crm_check_approve_limiter/static/description/index.html new file mode 100644 index 000000000..968fdb563 --- /dev/null +++ b/crm_check_approve_limiter/static/description/index.html @@ -0,0 +1,837 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ CheckList & Approval Process in CRM

+

+ This Module will Provide Check List for each Pipeline Stage + to Control Requirements, Fulfillment and to make sure that + each action is fully Approved by Responsible Users. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Check Lists Are Assigned Per Each Opportunity + Stage.

+
+
+
+
+
+
+ +
+
+

+ To Move A CRM Lead Forward In Your Funnel, Its + Checklist Should Be Fully Confirmed.

+
+
+
+
+
+
+ +
+
+

+ The App Lets Assign Security Groups For Each + Check List Point.

+
+
+
+
+
+
+ +
+
+

+ Check List Actions Are Saved In History.

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

+ Configure Stage Data

+

+ Open stage configuration by activating + developer mode.

+
+
+
+
+
+
+ +
+
+

+ Check List Per Stages

+

+ By configuring each stages we can set + checklist per Stages for the + opportunities.

+ +
+
+
+
+
+
+ +
+
+

+ Sales Team

+

+ Assign check list items to specific sales + team.

+ +
+
+
+
+
+
+ +
+
+

+ User Groups

+

+ We can make sure that the checklist is + completed by responsible users by user group + specified item assigning.

+ +
+
+
+
+
+
+ +
+
+

+ Unauthorised Blocking

+

+ Unauthorised users will be blocked from + marking the checklist items.

+
+
+
+
+
+
+ +
+
+

+ Check list Completion

+

+ Assigned check list items for each + opportunity in their specified stage can be + opened in managed in the Checklist page + section.

+
+
+
+
+
+
+ +
+
+

+ Progression Status

+

+ Check list completed progress can be viewed + in the checklist section of each + opportunity.

+
+
+
+
+
+
+ +
+
+

+ Kanban View

+

+ Check list completed progress can also be + viewed in the Kanban view for easy + management.

+
+
+
+
+
+
+
    +
  • + Check Lists are + Assigned per each Opportunity Stage. +
  • +
  • + The App Lets + Assign Security Groups for Each Check List + Point. +
  • +
  • + To Move a CRM + Lead Forward in your Funnel, Its Checklist + should be fully Confirmed. +
  • +
  • + Check List + Actions are Saved in History. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:27th Dec 2023 +
+

+ + Initial Commit for CheckList & Approval Process + in CRM.

+
+
+
+
+
+
+
+

+ 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/crm_check_approve_limiter/views/crm_lead_views.xml b/crm_check_approve_limiter/views/crm_lead_views.xml new file mode 100644 index 000000000..416fd2df9 --- /dev/null +++ b/crm_check_approve_limiter/views/crm_lead_views.xml @@ -0,0 +1,54 @@ + + + + + crm.lead.form.inherit.crm.check.approve.limiter + + crm.lead + + + + + + + + + + + + + + + + + + + + + + + + + + + crm.lead.kanban.lead.inherit.crm.check.approve.limiter + + crm.lead + + + + + + + + + + + + + diff --git a/crm_check_approve_limiter/views/crm_stage_views.xml b/crm_check_approve_limiter/views/crm_stage_views.xml new file mode 100644 index 000000000..af7a80c73 --- /dev/null +++ b/crm_check_approve_limiter/views/crm_stage_views.xml @@ -0,0 +1,56 @@ + + + + + crm.stage.form.inherit.crm.check.approve.limiter + + crm.stage + + + + + + + + + + + + + + +
+ + + + + + + +
+ + + + + + + +
+
+
+
+
+
+