diff --git a/crm_check_approve_limiter/README.rst b/crm_check_approve_limiter/README.rst new file mode 100644 index 000000000..c1583c7a8 --- /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/16.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: (V16) Jumana Jabin MP ,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..92882bea9 --- /dev/null +++ b/crm_check_approve_limiter/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP (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..2da061f8b --- /dev/null +++ b/crm_check_approve_limiter/__manifest__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP (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': '16.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..7ad1e00ee --- /dev/null +++ b/crm_check_approve_limiter/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 11.09.2023 +#### Version 16.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..322293fd9 --- /dev/null +++ b/crm_check_approve_limiter/models/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Jumana Jabin MP (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..9ab8ff658 --- /dev/null +++ b/crm_check_approve_limiter/models/crm_lead.py @@ -0,0 +1,182 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP (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][-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..0691a5d30 --- /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) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP (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..b92f369ac --- /dev/null +++ b/crm_check_approve_limiter/models/crm_stage.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP(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..dd6fdccaf --- /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) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP (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/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/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/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/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/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/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.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.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/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/modules/1.png b/crm_check_approve_limiter/static/description/assets/modules/1.png new file mode 100644 index 000000000..8529b823e 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.png b/crm_check_approve_limiter/static/description/assets/modules/2.png new file mode 100644 index 000000000..6699ad071 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..e4c70ded0 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/screenshots/1.png b/crm_check_approve_limiter/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..b7cafdc32 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/10.png b/crm_check_approve_limiter/static/description/assets/screenshots/10.png new file mode 100644 index 000000000..be32c8277 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/10.png differ diff --git a/crm_check_approve_limiter/static/description/assets/screenshots/11.png b/crm_check_approve_limiter/static/description/assets/screenshots/11.png new file mode 100644 index 000000000..04d822e38 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/11.png differ diff --git a/crm_check_approve_limiter/static/description/assets/screenshots/12.png b/crm_check_approve_limiter/static/description/assets/screenshots/12.png new file mode 100644 index 000000000..fe41a1f03 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/12.png differ diff --git a/crm_check_approve_limiter/static/description/assets/screenshots/13.png b/crm_check_approve_limiter/static/description/assets/screenshots/13.png new file mode 100644 index 000000000..8cb1f512c Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/13.png differ diff --git a/crm_check_approve_limiter/static/description/assets/screenshots/14.png b/crm_check_approve_limiter/static/description/assets/screenshots/14.png new file mode 100644 index 000000000..f35be216c Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/14.png differ diff --git a/crm_check_approve_limiter/static/description/assets/screenshots/15.png b/crm_check_approve_limiter/static/description/assets/screenshots/15.png new file mode 100644 index 000000000..f7815cfc5 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/15.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..76a9ad577 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..141206979 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..95cbd4947 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..81911a745 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..5db41dde7 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..a33d17e82 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..81069bf5c 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/9.png b/crm_check_approve_limiter/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..e0c92332f Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/screenshots/9.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..cc8b88f30 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..a7554d698 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..713601202 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..dcc7a2c58 --- /dev/null +++ b/crm_check_approve_limiter/static/description/index.html @@ -0,0 +1,841 @@ +
+ +
+ +
+
+ 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. +

+ +
+
+ + +
+
+

+ Overview +

+
+ +
+

+ Making a customer from an opportunity is the goal of the CRM + pipeline. + To achieve that goal sales staff needs to undertake a specific + sequence of actions or tasks. + Each of those actions is important on the defined stage. + For working as an efficient company The CRM is an important + part. + This app provides a checklist for each pipeline stage to control + requirements, + fulfillment and to make sure that each action/checklist item is + fully approved by responsible users. + So that it will be easier to manage through CRM pipelines. +

+
+ +
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ 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.

+
+
+ + +
+ +
+
+

+ Screenshots +

+
+
+

+ 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. +

+ +
+ +
+

+ 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. +

+ +
+ +
+

+ 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. +

+ +
+ +
+

+ Status Recover

+

+ By activating the saved column for an item,the item will regain + the previous status in that stage if the opportunity reach that + specific stage again. +

+ +
+ +
+

+ Check List

+

+ The opportunity can be only progress to upper stages if the + checklist items are fully completed to the selected user/team. +

+ +
+ +
+

+ No Need Check list

+

+ If this option checked in a stage, opportunity progressing from + this stage does not require check list to be completed. +

+ +
+ +
+

+ Regression Blocking

+

+ If this option checked in a stage, opportunities cannot be + regressed to this stage. +

+ +
+ +
+

+ If the user tries to regress the opportunity to the specified + stage, warning will be displayed

+ +
+ +
+

+ Checklist History

+

+ The history of checklist items can be viewed in the Checklist + page of the opportunity. +

+ +
+ +
+

+ Checklist Manager

+

+ The Checklist Manager group can approve any check items and move + opportunities without checklist restrictions. +

+ +
+ +
+ +
+
+

Related Modules

+

Explore our related modules

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

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?

+
+
+
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ +
+
\ No newline at end of file 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..60caa4dd5 --- /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 + + + + + + + + + + + + + + +
+ + + + + + + +
+ + + + + + + +
+
+
+
+
+
+