diff --git a/calendar_meeting_checklist/README.rst b/calendar_meeting_checklist/README.rst new file mode 100644 index 000000000..8ca92a694 --- /dev/null +++ b/calendar_meeting_checklist/README.rst @@ -0,0 +1,52 @@ +.. 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 + +Calendar Meeting Checklist +========================== +This module helps to enhance your meeting preparation and management +process. It is useful to list required items, things to be done, or +points to be considered, used as a reminder in the calendar module form +view + +Configuration +============= +* Sample csv and xlsx files are kept in folder screenshots. + +License +------- +Affero General Public License v3.0 (AGPL v3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: + (V15) Ranjith R, + (V16) Anagha S, +Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/calendar_meeting_checklist/__init__.py b/calendar_meeting_checklist/__init__.py new file mode 100644 index 000000000..3e7540dd1 --- /dev/null +++ b/calendar_meeting_checklist/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ranjith R(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. + +############################################################################### +from . import models +from . import wizard diff --git a/calendar_meeting_checklist/__manifest__.py b/calendar_meeting_checklist/__manifest__.py new file mode 100644 index 000000000..c13feae94 --- /dev/null +++ b/calendar_meeting_checklist/__manifest__.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ranjith R(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. + +############################################################################### +{ + 'name': "Calendar Meeting Checklist", + 'version': '15.0.1.0.0', + 'category': 'Discuss', + 'summary': 'Enhance Meeting Preparation and Management With Checklist.', + 'description': """This module helps to enhance your meeting preparation and + management process. It is useful to list required items, things to be done + or points to be considered, used as a reminder in the calendar module form + view""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['calendar', 'mail'], + 'data': [ + 'security/ir.model.access.csv', + 'views/meeting_checklist_views.xml', + 'views/checklist_template_views.xml', + 'views/calendar_event_views.xml', + 'wizard/import_meeting_checklist.xml', + ], + 'images': [ + 'static/description/banner.png', + ], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/calendar_meeting_checklist/doc/RELEASE_NOTES.md b/calendar_meeting_checklist/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..bd3dea28f --- /dev/null +++ b/calendar_meeting_checklist/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 20.07.2024 +#### Version 15.0.1.0.0 +#### ADD +- Initial commit for Calendar Meeting Checklist diff --git a/calendar_meeting_checklist/models/__init__.py b/calendar_meeting_checklist/models/__init__.py new file mode 100644 index 000000000..00abca449 --- /dev/null +++ b/calendar_meeting_checklist/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ranjith R(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. + +############################################################################### +from . import calendar_checklist_lines +from . import calendar_event +from . import checklist_template +from . import meeting_checklist diff --git a/calendar_meeting_checklist/models/calendar_checklist_lines.py b/calendar_meeting_checklist/models/calendar_checklist_lines.py new file mode 100644 index 000000000..c2217465f --- /dev/null +++ b/calendar_meeting_checklist/models/calendar_checklist_lines.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ranjith R(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. + +############################################################################### +from odoo import fields, models + + +class CalendarChecklistLines(models.Model): + """ This class is used to store checklist items associated with calendar + events. Each checklist item can be marked as complete or canceled, + allowing users to track tasks or actions related to specific calendar + events.""" + _name = 'calendar.checklist.lines' + _description = 'Checklists lines' + _order = "sequence asc" + + event_id = fields.Many2one(comodel_name='calendar.event', string="Event", + required=True, ondelete='cascade', + copy=False, index=True, + help='Each record in this model can be linked ' + 'to a single calendar event record.') + sequence = fields.Integer(string='Sequence', + help='Used to order checklists.') + checklist_id = fields.Many2one(comodel_name='meeting.checklist', + string='Checklist', + help='Checklist for the calendar event.') + stage = fields.Selection( + selection=[('new', 'New'), ('completed', 'Completed'), + ('canceled', 'Canceled')], string='Stage', default='new', + readonly='True', help='State of checklist.') + + def action_complete(self): + """Set the checklist's status to 'completed'.""" + self.stage = 'completed' + + def action_cancel(self): + """Set the checklist's status to 'cancelled'.""" + self.stage = 'canceled' diff --git a/calendar_meeting_checklist/models/calendar_event.py b/calendar_meeting_checklist/models/calendar_event.py new file mode 100644 index 000000000..5ecf8f40a --- /dev/null +++ b/calendar_meeting_checklist/models/calendar_event.py @@ -0,0 +1,67 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ranjith R(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. + +############################################################################### +from odoo import api, fields, models + + +class CalendarEvent(models.Model): + """Calendar event inherited model""" + _inherit = 'calendar.event' + + checklist_template_ids = fields.Many2many( + 'checklist.template', string='Checklist Template', + help="Select one or more checklist templates to associate with this " + "record.") + checklist_line_ids = fields.One2many( + comodel_name='calendar.checklist.lines', inverse_name='event_id', + string='Checklists', copy=True, auto_delete=True, + help='Checklists for calendar event.') + checklist_progress = fields.Integer(compute='_compute_checklist_progress', + help='Progress of checklist.') + completed_checklist = fields.Boolean(default=False, + string='Completed all checklists', + help='True when all checklists are' + 'completed.') + + def _compute_checklist_progress(self): + """ Calculates the completion progress of a checklist associated with a + calendar event. It counts the number of checklist items associated with + the event and the number of completed checklist items. The progress is + calculated as a percentage based on the ratio of completed items to + total items.""" + for rec in self: + count = rec.checklist_line_ids.search_count( + [('event_id', '=', rec.id)]) + completed = rec.checklist_line_ids.search_count( + [('event_id', '=', rec.id), ('stage', '=', 'completed')]) + rec.checklist_progress = (completed / count) * 100 if count != 0 \ + else 0 + rec.completed_checklist = rec.checklist_progress == 100 + + @api.onchange('checklist_template_ids') + def _onchange_checklist_template_ids(self): + """This method is triggered when the `checklist_template_ids` field is + modified. It automatically generates checklist lines for the current + record based on the selected checklist templates.""" + checklist_line_data = [fields.Command.clear()] + checklist_line_data += [ + fields.Command.create({'checklist_id': line.id, 'stage': 'new'}) + for line in self.checklist_template_ids.checklist_ids] + self.checklist_line_ids = checklist_line_data diff --git a/calendar_meeting_checklist/models/checklist_template.py b/calendar_meeting_checklist/models/checklist_template.py new file mode 100644 index 000000000..14f47f469 --- /dev/null +++ b/calendar_meeting_checklist/models/checklist_template.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ranjith R(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. + +############################################################################### +from odoo import fields, models + + +class ChecklistTemplate(models.Model): + """Checklist template model.""" + _name = 'checklist.template' + _description = 'Checklist Template' + _inherit = 'mail.thread' + + name = fields.Char(string="Template name", + help='Name for checklist template.') + checklist_ids = fields.Many2many("meeting.checklist", + string="Checklist", + help="Allows you to associate multiple " + "checklist records with single " + "checklist template.") diff --git a/calendar_meeting_checklist/models/meeting_checklist.py b/calendar_meeting_checklist/models/meeting_checklist.py new file mode 100644 index 000000000..fbb79713e --- /dev/null +++ b/calendar_meeting_checklist/models/meeting_checklist.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ranjith R(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. + +############################################################################### +from odoo import fields, models + + +class MeetingChecklist(models.Model): + """Meeting checklist model.""" + _name = 'meeting.checklist' + _description = 'Meeting Checklist' + _inherit = 'mail.thread' + + name = fields.Char(string="Name", help="Name of checklist.", tracking=1) + description = fields.Char(string="Description", + help="Description for checklist.") diff --git a/calendar_meeting_checklist/security/ir.model.access.csv b/calendar_meeting_checklist/security/ir.model.access.csv new file mode 100644 index 000000000..cd92d6e67 --- /dev/null +++ b/calendar_meeting_checklist/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_meeting_checklist_user,access.meeting.checklist.user,model_meeting_checklist,base.group_user,1,1,1,1 +access_checklist_template_user,access.checklist.template.user,model_checklist_template,base.group_user,1,1,1,1 +access_calendar_checklist_lines_user,access.calendar.checklist.lines.user,model_calendar_checklist_lines,base.group_user,1,1,1,1 +access_import_meeting_checklist_user,access.import.meeting.checklist.user,model_import_meeting_checklist,base.group_user,1,1,1,1 diff --git a/calendar_meeting_checklist/static/description/assets/icons/check.png b/calendar_meeting_checklist/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/check.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/chevron.png b/calendar_meeting_checklist/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/chevron.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/cogs.png b/calendar_meeting_checklist/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/cogs.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/consultation.png b/calendar_meeting_checklist/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/consultation.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/ecom-black.png b/calendar_meeting_checklist/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/ecom-black.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/education-black.png b/calendar_meeting_checklist/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/education-black.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/hotel-black.png b/calendar_meeting_checklist/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/hotel-black.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/license.png b/calendar_meeting_checklist/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/license.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/lifebuoy.png b/calendar_meeting_checklist/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/lifebuoy.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/manufacturing-black.png b/calendar_meeting_checklist/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/manufacturing-black.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/pos-black.png b/calendar_meeting_checklist/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/pos-black.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/puzzle.png b/calendar_meeting_checklist/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/puzzle.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/restaurant-black.png b/calendar_meeting_checklist/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/restaurant-black.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/service-black.png b/calendar_meeting_checklist/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/service-black.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/trading-black.png b/calendar_meeting_checklist/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/trading-black.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/training.png b/calendar_meeting_checklist/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/training.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/update.png b/calendar_meeting_checklist/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/update.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/user.png b/calendar_meeting_checklist/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/user.png differ diff --git a/calendar_meeting_checklist/static/description/assets/icons/wrench.png b/calendar_meeting_checklist/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/icons/wrench.png differ diff --git a/calendar_meeting_checklist/static/description/assets/misc/categories.png b/calendar_meeting_checklist/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/misc/categories.png differ diff --git a/calendar_meeting_checklist/static/description/assets/misc/check-box.png b/calendar_meeting_checklist/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/misc/check-box.png differ diff --git a/calendar_meeting_checklist/static/description/assets/misc/compass.png b/calendar_meeting_checklist/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/misc/compass.png differ diff --git a/calendar_meeting_checklist/static/description/assets/misc/corporate.png b/calendar_meeting_checklist/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/misc/corporate.png differ diff --git a/calendar_meeting_checklist/static/description/assets/misc/customer-support.png b/calendar_meeting_checklist/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/misc/customer-support.png differ diff --git a/calendar_meeting_checklist/static/description/assets/misc/cybrosys-logo.png b/calendar_meeting_checklist/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/misc/cybrosys-logo.png differ diff --git a/calendar_meeting_checklist/static/description/assets/misc/features.png b/calendar_meeting_checklist/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/misc/features.png differ diff --git a/calendar_meeting_checklist/static/description/assets/misc/logo.png b/calendar_meeting_checklist/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/misc/logo.png differ diff --git a/calendar_meeting_checklist/static/description/assets/misc/pictures.png b/calendar_meeting_checklist/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/misc/pictures.png differ diff --git a/calendar_meeting_checklist/static/description/assets/misc/pie-chart.png b/calendar_meeting_checklist/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/misc/pie-chart.png differ diff --git a/calendar_meeting_checklist/static/description/assets/misc/right-arrow.png b/calendar_meeting_checklist/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/misc/right-arrow.png differ diff --git a/calendar_meeting_checklist/static/description/assets/misc/star.png b/calendar_meeting_checklist/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/misc/star.png differ diff --git a/calendar_meeting_checklist/static/description/assets/misc/support.png b/calendar_meeting_checklist/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/misc/support.png differ diff --git a/calendar_meeting_checklist/static/description/assets/misc/whatsapp.png b/calendar_meeting_checklist/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/misc/whatsapp.png differ diff --git a/calendar_meeting_checklist/static/description/assets/modules/1.png b/calendar_meeting_checklist/static/description/assets/modules/1.png new file mode 100755 index 000000000..baaef2807 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/modules/1.png differ diff --git a/calendar_meeting_checklist/static/description/assets/modules/2.png b/calendar_meeting_checklist/static/description/assets/modules/2.png new file mode 100755 index 000000000..fb65048fe Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/modules/2.png differ diff --git a/calendar_meeting_checklist/static/description/assets/modules/3.png b/calendar_meeting_checklist/static/description/assets/modules/3.png new file mode 100755 index 000000000..65f9d71a9 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/modules/3.png differ diff --git a/calendar_meeting_checklist/static/description/assets/modules/4.png b/calendar_meeting_checklist/static/description/assets/modules/4.png new file mode 100755 index 000000000..e9baebd5d Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/modules/4.png differ diff --git a/calendar_meeting_checklist/static/description/assets/modules/5.png b/calendar_meeting_checklist/static/description/assets/modules/5.png new file mode 100755 index 000000000..5c8646fae Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/modules/5.png differ diff --git a/calendar_meeting_checklist/static/description/assets/modules/6.png b/calendar_meeting_checklist/static/description/assets/modules/6.png new file mode 100755 index 000000000..be8dd200b Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/modules/6.png differ diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot1.png b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot1.png new file mode 100644 index 000000000..313d3bb4a Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot1.png differ diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot10.png b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot10.png new file mode 100644 index 000000000..afa870fab Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot10.png differ diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot11.png b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot11.png new file mode 100644 index 000000000..b0cb1b1f3 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot11.png differ diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot12.png b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot12.png new file mode 100644 index 000000000..e0ca4c26f Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot12.png differ diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot13.png b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot13.png new file mode 100644 index 000000000..8d9537fdf Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot13.png differ diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot2.png b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot2.png new file mode 100644 index 000000000..718ffd963 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot2.png differ diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot3.png b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot3.png new file mode 100644 index 000000000..448fcbdc1 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot3.png differ diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot4.png b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot4.png new file mode 100644 index 000000000..3064a8ab2 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot4.png differ diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot5.png b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot5.png new file mode 100644 index 000000000..36508bd50 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot5.png differ diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot6.png b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot6.png new file mode 100644 index 000000000..7b8f1001a Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot6.png differ diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot7.png b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot7.png new file mode 100644 index 000000000..6d044cb65 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot7.png differ diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot8.png b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot8.png new file mode 100644 index 000000000..398ae5d54 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot8.png differ diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot9.png b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot9.png new file mode 100644 index 000000000..4d50aa6a1 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/screenshots/Screenshot9.png differ diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/hero.gif b/calendar_meeting_checklist/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..888d4e3cf Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/screenshots/hero.gif differ diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/meeting_checklist_sample_csv.csv b/calendar_meeting_checklist/static/description/assets/screenshots/meeting_checklist_sample_csv.csv new file mode 100644 index 000000000..989ae4506 --- /dev/null +++ b/calendar_meeting_checklist/static/description/assets/screenshots/meeting_checklist_sample_csv.csv @@ -0,0 +1,5 @@ +Name,Description +Summary,A brief recap of key results +Interpretations,Give your interpretations +Limitations,acknowledge the limitations +Recommendations,Share each teammate's advice. diff --git a/calendar_meeting_checklist/static/description/assets/screenshots/meeting_checklist_sample_xlx.xlsx b/calendar_meeting_checklist/static/description/assets/screenshots/meeting_checklist_sample_xlx.xlsx new file mode 100644 index 000000000..1f35d0b40 Binary files /dev/null and b/calendar_meeting_checklist/static/description/assets/screenshots/meeting_checklist_sample_xlx.xlsx differ diff --git a/calendar_meeting_checklist/static/description/banner.png b/calendar_meeting_checklist/static/description/banner.png new file mode 100644 index 000000000..717e2b21f Binary files /dev/null and b/calendar_meeting_checklist/static/description/banner.png differ diff --git a/calendar_meeting_checklist/static/description/icon.png b/calendar_meeting_checklist/static/description/icon.png new file mode 100644 index 000000000..5e5ace82b Binary files /dev/null and b/calendar_meeting_checklist/static/description/icon.png differ diff --git a/calendar_meeting_checklist/static/description/index.html b/calendar_meeting_checklist/static/description/index.html new file mode 100755 index 000000000..25a6b4b16 --- /dev/null +++ b/calendar_meeting_checklist/static/description/index.html @@ -0,0 +1,659 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Calendar Meeting Checklist

+

+ This Module Helps to List Required Items, Things + to be Done + or Points to be Considered, used as a Reminder in the + Calendar Module + form view +

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

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
This module helps to enhance your meeting + preparation and management process. It is useful to list required items, + things to be done or points to be considered, used as a reminder in the + calendar module form view +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + Can create a checklist template and fill checklists using the template. +
+
+ + Easy to make a custom checklist +
+
+ + Checklist completed percentage on the list view. +
+
+ + Can filter checklists by completed checklist or incomplete checklists +
+
+ + Can import checklists through csv and xlsx files. +
+ +
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+ +
+

+ Go to Calendar -> Configuration -> Checklist +

+ +
+
+

+ Create Meeting checklist +

+ +
+

+ From Calendar -> Configuration -> Checklist Template, + Create templates for the checklist and add checklists. . +

+
+ + +
+ +
+

+ From Calendar -> configuration -> Import checklist can import + checklist through csv or xlsx files +

+ +
+
+

+ Select the file type. And click on 'Import' to import checklists +

+ +
+
+

+ Meeting checklist will be created. +

+ +
+
+

+ Select or create check list template from the calendar form + view. Meeting checklist with state new will be created + automatically. +

+ +
+
+

+ Click on Check Icon To Complete Checklist & Cancel Icon to + Cancel Checklist. Progress of completed checklist can be seen. +

+ +
+
+

+ Checklist completed percentage on the list view. +

+ +
+
+

+ Can filter Events by Completed or Incomplete checklists. +

+ +
+
+

+ Can filter Events by Completed or Incomplete checklists. +

+ +
+
+

+ Can filter Events by Completed or Incomplete checklists. +

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

+ Related Products +

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

+ Our Services +

+
+
+
+
+
+ +
+
+ Odoo Customization
+
+
+
+ +
+
+ Odoo Implementation
+
+
+
+ +
+
+ Odoo Support
+
+
+
+ +
+
+ Hire Odoo Developer
+
+
+
+ +
+
+ Odoo Integration
+
+
+
+ +
+
Odoo Migration
+
+
+
+ +
+
+ Odoo Consultancy
+
+
+
+ +
+
Odoo Implementation
+
+
+
+ +
+
+ Odoo Licensing Consultancy
+
+
+
+ + + +
+
+ +
+

Our Industries +

+
+
+
+
+
+ +
+ Trading +
+

+ Easily procure and sell your products

+
+
+
+
+ +
POS +
+

Easy configuration and convivial experience

+
+
+
+
+ +
Education +
+

+ A platform for educational management

+
+
+
+
+ +
Manufacturing +
+

Plan, track and schedule your operations

+
+
+
+
+ +
E-commerce & Website +
+

Mobile friendly, awe-inspiring product pages

+
+
+
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+
+
+ + +
+
+ +
+

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ diff --git a/calendar_meeting_checklist/views/calendar_event_views.xml b/calendar_meeting_checklist/views/calendar_event_views.xml new file mode 100644 index 000000000..328185bef --- /dev/null +++ b/calendar_meeting_checklist/views/calendar_event_views.xml @@ -0,0 +1,68 @@ + + + + + calendar.event.view.form.calendar.meeting.checklist + calendar.event + + + + +