diff --git a/crm_check_approve_limiter/README.rst b/crm_check_approve_limiter/README.rst new file mode 100644 index 000000000..efd41a571 --- /dev/null +++ b/crm_check_approve_limiter/README.rst @@ -0,0 +1,55 @@ +.. image:: https://img.shields.io/badge/License-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/18.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 ,(V18) Farook Al Ameen, 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..1f0c81b4d --- /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: Farook Al Ameen (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..a9b526c71 --- /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: Farook Al Ameen (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': '18.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.gif' + ], + '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..c0b400ea4 --- /dev/null +++ b/crm_check_approve_limiter/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 17.10.2024 +#### Version 18.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..0e4336e51 --- /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: Farook Al Ameen (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..8671602ea --- /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: Farook Al Ameen (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..9c0d6d6f6 --- /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: Farook Al Ameen (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..a64d56d41 --- /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: Farook Al Ameen (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..c546bc2a6 --- /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: Farook Al Ameen (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/cybro-icon.png b/crm_check_approve_limiter/static/description/assets/cybro-icon.png new file mode 100755 index 000000000..06e73e11d Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/cybro-icon.png differ diff --git a/crm_check_approve_limiter/static/description/assets/cybro-odoo.png b/crm_check_approve_limiter/static/description/assets/cybro-odoo.png new file mode 100755 index 000000000..ed02e07a4 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/cybro-odoo.png differ diff --git a/crm_check_approve_limiter/static/description/assets/h2.png b/crm_check_approve_limiter/static/description/assets/h2.png new file mode 100755 index 000000000..0bfc4707d Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/h2.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/arrows-repeat.svg b/crm_check_approve_limiter/static/description/assets/icons/arrows-repeat.svg new file mode 100755 index 000000000..1d7efabc5 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/banner-1.png b/crm_check_approve_limiter/static/description/assets/icons/banner-1.png new file mode 100755 index 000000000..c180db172 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/banner-1.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/banner-2.svg b/crm_check_approve_limiter/static/description/assets/icons/banner-2.svg new file mode 100755 index 000000000..e606d97d9 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/banner-bg.png b/crm_check_approve_limiter/static/description/assets/icons/banner-bg.png new file mode 100755 index 000000000..a8238d3c0 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/banner-bg.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/banner-bg.svg b/crm_check_approve_limiter/static/description/assets/icons/banner-bg.svg new file mode 100755 index 000000000..b1378103e --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/banner-call.svg b/crm_check_approve_limiter/static/description/assets/icons/banner-call.svg new file mode 100755 index 000000000..96c687e81 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/banner-mail.svg b/crm_check_approve_limiter/static/description/assets/icons/banner-mail.svg new file mode 100755 index 000000000..cbf0d158d --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/banner-pattern.svg b/crm_check_approve_limiter/static/description/assets/icons/banner-pattern.svg new file mode 100755 index 000000000..9c1c7e101 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/banner-promo.svg b/crm_check_approve_limiter/static/description/assets/icons/banner-promo.svg new file mode 100755 index 000000000..d52791b11 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/brand-pair.svg b/crm_check_approve_limiter/static/description/assets/icons/brand-pair.svg new file mode 100755 index 000000000..d8db7fc1e --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 100755 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 100755 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/close-icon.svg b/crm_check_approve_limiter/static/description/assets/icons/close-icon.svg new file mode 100755 index 000000000..df8cce37a --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + 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 100755 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/collabarate-icon.svg b/crm_check_approve_limiter/static/description/assets/icons/collabarate-icon.svg new file mode 100755 index 000000000..dd4e10518 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + 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 100755 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/cybro-logo.png b/crm_check_approve_limiter/static/description/assets/icons/cybro-logo.png new file mode 100755 index 000000000..ff4b78220 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/cybro-logo.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/down.svg b/crm_check_approve_limiter/static/description/assets/icons/down.svg new file mode 100755 index 000000000..f21c36271 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file 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 100755 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 100755 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/faq.png b/crm_check_approve_limiter/static/description/assets/icons/faq.png new file mode 100755 index 000000000..4250b5b81 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/faq.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/feature-icon.svg b/crm_check_approve_limiter/static/description/assets/icons/feature-icon.svg new file mode 100755 index 000000000..fa0ea6850 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/feature.png b/crm_check_approve_limiter/static/description/assets/icons/feature.png new file mode 100755 index 000000000..ac7a785c0 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/feature.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/gear.svg b/crm_check_approve_limiter/static/description/assets/icons/gear.svg new file mode 100755 index 000000000..0cc66b6ea --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/hero.gif b/crm_check_approve_limiter/static/description/assets/icons/hero.gif new file mode 100644 index 000000000..6134b9e35 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/hero.gif differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/hire-odoo.svg b/crm_check_approve_limiter/static/description/assets/icons/hire-odoo.svg new file mode 100755 index 000000000..e1ac089b0 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + 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 100755 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 100755 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/life-ring-icon.svg b/crm_check_approve_limiter/static/description/assets/icons/life-ring-icon.svg new file mode 100755 index 000000000..3ae6e1d89 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + 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 100755 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/mail.svg b/crm_check_approve_limiter/static/description/assets/icons/mail.svg new file mode 100755 index 000000000..1eedde695 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + 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 100755 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/notes.png b/crm_check_approve_limiter/static/description/assets/icons/notes.png new file mode 100755 index 000000000..ee5e95404 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/notes.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/notification icon.svg b/crm_check_approve_limiter/static/description/assets/icons/notification icon.svg new file mode 100755 index 000000000..053189973 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/odoo-consultancy.svg b/crm_check_approve_limiter/static/description/assets/icons/odoo-consultancy.svg new file mode 100755 index 000000000..e05f65bde --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/odoo-licencing.svg b/crm_check_approve_limiter/static/description/assets/icons/odoo-licencing.svg new file mode 100755 index 000000000..2606c88b0 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/odoo-logo.png b/crm_check_approve_limiter/static/description/assets/icons/odoo-logo.png new file mode 100755 index 000000000..0e4d0eb5a Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/odoo-logo.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/patter.svg b/crm_check_approve_limiter/static/description/assets/icons/patter.svg new file mode 100755 index 000000000..25c9c0a8f --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/pattern1.png b/crm_check_approve_limiter/static/description/assets/icons/pattern1.png new file mode 100755 index 000000000..09ab0fb2d Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/pattern1.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 100755 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-piece-icon.svg b/crm_check_approve_limiter/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100755 index 000000000..3e9ad9373 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + 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 100755 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/replace-icon.svg b/crm_check_approve_limiter/static/description/assets/icons/replace-icon.svg new file mode 100755 index 000000000..d0e3a7af1 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + 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 100755 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/screenshot-main.png b/crm_check_approve_limiter/static/description/assets/icons/screenshot-main.png new file mode 100755 index 000000000..575f8e676 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/screenshot-main.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/screenshot.png b/crm_check_approve_limiter/static/description/assets/icons/screenshot.png new file mode 100755 index 000000000..cef272529 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/screenshot.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 100755 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/skype-fill.svg b/crm_check_approve_limiter/static/description/assets/icons/skype-fill.svg new file mode 100755 index 000000000..c17423639 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/skype.png b/crm_check_approve_limiter/static/description/assets/icons/skype.png new file mode 100755 index 000000000..51b409fb3 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/skype.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/skype.svg b/crm_check_approve_limiter/static/description/assets/icons/skype.svg new file mode 100755 index 000000000..df3dad39b --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/star-1.svg b/crm_check_approve_limiter/static/description/assets/icons/star-1.svg new file mode 100755 index 000000000..7e55ab162 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/star-2.svg b/crm_check_approve_limiter/static/description/assets/icons/star-2.svg new file mode 100755 index 000000000..5ae9f507a --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/crm_check_approve_limiter/static/description/assets/icons/support.png b/crm_check_approve_limiter/static/description/assets/icons/support.png new file mode 100755 index 000000000..4f18b8b82 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/support.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/test-1 - Copy.png b/crm_check_approve_limiter/static/description/assets/icons/test-1 - Copy.png new file mode 100755 index 000000000..f6a902663 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/test-1 - Copy.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/test-1.png b/crm_check_approve_limiter/static/description/assets/icons/test-1.png new file mode 100755 index 000000000..0908add2b Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/test-1.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/test-2.png b/crm_check_approve_limiter/static/description/assets/icons/test-2.png new file mode 100755 index 000000000..4671fe91e Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/test-2.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 100755 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 100755 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/translate.svg b/crm_check_approve_limiter/static/description/assets/icons/translate.svg new file mode 100755 index 000000000..af9c8a1aa --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + 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 100755 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 100755 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/video.png b/crm_check_approve_limiter/static/description/assets/icons/video.png new file mode 100755 index 000000000..576705b17 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/video.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/whatsapp.png b/crm_check_approve_limiter/static/description/assets/icons/whatsapp.png new file mode 100755 index 000000000..d513a5356 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/icons/whatsapp.png differ diff --git a/crm_check_approve_limiter/static/description/assets/icons/wrench-icon.svg b/crm_check_approve_limiter/static/description/assets/icons/wrench-icon.svg new file mode 100755 index 000000000..174b5a465 --- /dev/null +++ b/crm_check_approve_limiter/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + 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 100755 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/modules/1.jpg b/crm_check_approve_limiter/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..3cb15fe01 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/modules/1.jpg 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..662cadcc3 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/3.jpg b/crm_check_approve_limiter/static/description/assets/modules/3.jpg new file mode 100644 index 000000000..717a00443 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/modules/3.jpg 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..00ebf54ad 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.jpg b/crm_check_approve_limiter/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..7c67e2eec Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/modules/5.jpg differ diff --git a/crm_check_approve_limiter/static/description/assets/modules/6.gif b/crm_check_approve_limiter/static/description/assets/modules/6.gif new file mode 100644 index 000000000..a35ece8df Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/modules/6.gif 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..53b9a61c4 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..76cde5f99 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..4db22b933 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..0a4da02f7 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..fd2a64d93 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..e689cc6d6 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..c4085a2dc 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..0b65784c2 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/y18.jpg b/crm_check_approve_limiter/static/description/assets/y18.jpg new file mode 100755 index 000000000..eea1714f2 Binary files /dev/null and b/crm_check_approve_limiter/static/description/assets/y18.jpg differ diff --git a/crm_check_approve_limiter/static/description/banner.gif b/crm_check_approve_limiter/static/description/banner.gif new file mode 100644 index 000000000..2918919d0 Binary files /dev/null and b/crm_check_approve_limiter/static/description/banner.gif 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..2d7c9942b 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..f920bc92b --- /dev/null +++ b/crm_check_approve_limiter/static/description/index.html @@ -0,0 +1,1217 @@ + + + + + + CheckList & Approval Process in CRM + + + + + + + + + + +
+
+ + + +
+
+ Community +
+
+ Enterprise +
+ + + + +
+
+ +
+
+
+
+

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

+

CheckList & Approval Process in CRM +

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

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. +
+
+
+
+
+ +
+
+
+ CheckList & Approval Process in CRM +

+ Are you ready to make your business more + organized? +
Improve now! +

+ +
+
+ +
+
+
+ + + + +
+
+ +
+
+
+
+ acc_bg +
+ +
+
+
+
+

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

+
+ +
+
+
+
+
+
+ +
+

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

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

+ Checklists ensure that all necessary tasks are completed + before an opportunity can move forward in the sales funnel, + maintaining consistency and quality in the CRM process. +

+
+
+ +
+ +
+

+ No, a CRM lead can only be moved to the next stage once its + associated checklist is fully confirmed, ensuring all + critical actions are taken. +

+
+
+ +
+ +
+

+ Yes, the module allows assigning security groups to each + checklist point, enabling tailored access control for + different users or roles. +

+
+
+ +
+ +
+

+ Yes, all checklist actions are saved in the history, + allowing for an audit trail and easy review of completed + tasks. +

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

+ Latest Release 18.0.1.0.0 +

+ + 26th September, 2024 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit +
  • + +
+
+
+
+
+
+
+
+
+
+ + + +
+

+ Related Products +

+ +
+ + +
+

+ Our Services

+ +
+ +
+
+ .... +
+
+ +
+ + +
+
+ + + + + + 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..62c156615 --- /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..c5c8a0ced --- /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 + + + + + + + + + + + + + + +
+ + + + + + + +
+ + + + + + + +
+
+
+
+
+
+