diff --git a/print_minutes_of_meeting/README.rst b/print_minutes_of_meeting/README.rst new file mode 100644 index 000000000..d36623a0b --- /dev/null +++ b/print_minutes_of_meeting/README.rst @@ -0,0 +1,46 @@ +.. 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 + +Minutes of Meetings Report +========================== +This module helps you to keep record of minutes of meeting and to print it in the PDF format. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +Affero General Public License v3.0 (AGPL v3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developers:(V14) Mohammed Irfan T, 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/print_minutes_of_meeting/__init__.py b/print_minutes_of_meeting/__init__.py new file mode 100644 index 000000000..b801d9031 --- /dev/null +++ b/print_minutes_of_meeting/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Mohammed Irfan T @ Cybrosys, (odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models +from . import report diff --git a/print_minutes_of_meeting/__manifest__.py b/print_minutes_of_meeting/__manifest__.py new file mode 100644 index 000000000..eec31d449 --- /dev/null +++ b/print_minutes_of_meeting/__manifest__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Mohammed Irfan T @ Cybrosys, (odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Minutes of Meetings Report', + 'version': '14.0.1.0.0', + 'category': 'Project', + 'summary': 'Module For Print PDF Report And Records The Meeting Minutes ', + 'description': 'This module helps you to keep record of minutes of meeting' + ' and to print it in the PDF format.', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base', 'calendar'], + 'data': [ + 'security/ir.model.access.csv', + 'views/calendar_event_views.xml', + 'report/calendar_event_reports.xml', + 'report/calendar_event_templates.xml', + 'data/calendar_event_data.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False, +} diff --git a/print_minutes_of_meeting/data/calendar_event_data.xml b/print_minutes_of_meeting/data/calendar_event_data.xml new file mode 100644 index 000000000..65ce25a42 --- /dev/null +++ b/print_minutes_of_meeting/data/calendar_event_data.xml @@ -0,0 +1,23 @@ + + + + + Minutes of Meeting + + Minutes of Meeting ${ object.name } + +
+

+ Hi  Team, +
+
+ Please find the attached minutes of meeting of the ${ object.name } +
+
+

+
+
+ {{ object.partner_id.lang }} + +
+
diff --git a/print_minutes_of_meeting/doc/RELEASE_NOTES.md b/print_minutes_of_meeting/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..ffeebb39e --- /dev/null +++ b/print_minutes_of_meeting/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 09.01.2024 +#### Version 14.0.1.0.0 +#### ADD + +-Initial Commit for Minutes of Meetings Report diff --git a/print_minutes_of_meeting/models/__init__.py b/print_minutes_of_meeting/models/__init__.py new file mode 100644 index 000000000..9c342aed9 --- /dev/null +++ b/print_minutes_of_meeting/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Mohammed Irfan T @ Cybrosys, (odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import calendar_event +from . import meeting_action +from . import meeting_agenda diff --git a/print_minutes_of_meeting/models/calendar_event.py b/print_minutes_of_meeting/models/calendar_event.py new file mode 100644 index 000000000..680eb8e18 --- /dev/null +++ b/print_minutes_of_meeting/models/calendar_event.py @@ -0,0 +1,82 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Mohammed Irfan T @ Cybrosys, (odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +import base64 +from odoo import api, fields, models + + +class CalendarEvent(models.Model): + """Inherit calendar to add some extra fields""" + _inherit = 'calendar.event' + + responsible_user_id = fields.Many2one('res.users', + help="The person who is responsible " + "for the event", + string="Responsible User") + note_taker_id = fields.Many2one('res.partner', + domain="[('id', 'in', partner_ids)]", + help="The note taker", + string="Note Taker") + absent_member_ids = fields.Many2many('res.partner', + 'res_partner_absent_member_rel', + domain="[('id', 'in', partner_ids)]", + help="Absent members of the meeting", + string="Absent Member") + agenda_ids = fields.One2many('meeting.agenda', 'calendar_event_id', + string='Agenda', help="Agenda of meeting") + actions_ids = fields.One2many('meeting.action', 'calendar_event_id', + string='Actions/Decisions', + help="Required action for agenda of meeting") + notes = fields.Html(string='Conclusions', + help="Conclusion of meeting") + is_user = fields.Boolean(compute='_compute_is_user', + string="Is User", help="Is this user") + + @api.depends('responsible_user_id') + def _compute_is_user(self): + """Function to set is the responsible user is same as the login user""" + for rec in self: + rec.is_user = bool(rec.responsible_user_id.id == self.env.user.id) + + def action_send_mail(self): + """Send mail""" + report_template_id, _ = self.env.ref( + 'print_minutes_of_meeting.action_minutes_of_meeting_report') \ + .with_context( + force_report_rendering=True)._render_qweb_pdf( + data=None, res_ids=self.ids, ) + data_id = self.env['ir.attachment'].create({ + 'name': "Minutes of Meeting", + 'type': 'binary', + 'datas': base64.b64encode(report_template_id), + 'store_fname': base64.b64encode(report_template_id), + 'mimetype': 'application/pdf', + }) + template_id = self.env.ref( + 'print_minutes_of_meeting.email_template_minutes_of_meeting') + template_id.attachment_ids = [(6, 0, [data_id.id])] + email_values = { + 'email_to': ','.join(self.partner_ids.mapped('email')), + 'email_from': self.responsible_user_id.email + } + self.env['mail.template'].browse(template_id.id).with_context( + context=self.name).send_mail(self.id, email_values=email_values, + force_send=True) + template_id.attachment_ids = [(3, data_id.id)] diff --git a/print_minutes_of_meeting/models/meeting_action.py b/print_minutes_of_meeting/models/meeting_action.py new file mode 100644 index 000000000..bc945b3cb --- /dev/null +++ b/print_minutes_of_meeting/models/meeting_action.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Mohammed Irfan T @ Cybrosys, (odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class MeetingAction(models.Model): + """Model meeting actions to add the action tobe taken from the meetings """ + _name = 'meeting.action' + _description = 'Meeting Action' + + def _domain_responsible_partner_id(self): + """Return the domain for responsible partner""" + return [('id', 'in', self.calendar_event_id.partner_ids.ids)] + + action = fields.Char(string="Action", help="Action of meeting") + description = fields.Char(string="Description", + help="Description of meeting") + agenda_item_id = fields.Many2one('meeting.agenda', string="Agenda Item", + help="Agenda of the meeting") + responsible_partner_id = fields.Many2one( + 'res.partner', domain=_domain_responsible_partner_id, + string="Responsible Partner", + help="Responsible partner of the meeting") + assigned_partner_ids = fields.Many2many('res.partner', + string="Assigned Partner", + help="Assigned Partner of meeting") + calendar_event_id = fields.Many2one('calendar.event', + string="calendar Event", + help="Calendar event which about " + "the meeting is taking") + deadline = fields.Date(string="Deadline", + help="Deadline to take an action") diff --git a/print_minutes_of_meeting/models/meeting_agenda.py b/print_minutes_of_meeting/models/meeting_agenda.py new file mode 100644 index 000000000..8c7678588 --- /dev/null +++ b/print_minutes_of_meeting/models/meeting_agenda.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Mohammed Irfan T @ Cybrosys, (odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class MeetingAgenda(models.Model): + """Model meeting agenda to note the agenda of the meeting""" + _name = 'meeting.agenda' + _description = 'Meeting Agenda' + _rec_name = 'topic' + + topic = fields.Char(string="Topic", help="Agenda topic on meeting") + description = fields.Char(string="Description", + help="Description on the topic") + is_discussed = fields.Boolean(string="Discussed", + help="Is this topic discussed or not") + calendar_event_id = fields.Many2one('calendar.event', + help="Calendar event of meeting", + string="Calendar Event") diff --git a/print_minutes_of_meeting/report/__init__.py b/print_minutes_of_meeting/report/__init__.py new file mode 100644 index 000000000..a4e337164 --- /dev/null +++ b/print_minutes_of_meeting/report/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Mohammed Irfan T @ Cybrosys, (odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import report_meeting diff --git a/print_minutes_of_meeting/report/calendar_event_reports.xml b/print_minutes_of_meeting/report/calendar_event_reports.xml new file mode 100644 index 000000000..39450e4a2 --- /dev/null +++ b/print_minutes_of_meeting/report/calendar_event_reports.xml @@ -0,0 +1,13 @@ + + + + + Minutes of Meeting + calendar.event + qweb-pdf + print_minutes_of_meeting.report_mom_template + print_minutes_of_meeting.report_mom_template + + report + + diff --git a/print_minutes_of_meeting/report/calendar_event_templates.xml b/print_minutes_of_meeting/report/calendar_event_templates.xml new file mode 100644 index 000000000..14dbf4bab --- /dev/null +++ b/print_minutes_of_meeting/report/calendar_event_templates.xml @@ -0,0 +1,145 @@ + + + + + diff --git a/print_minutes_of_meeting/report/report_meeting.py b/print_minutes_of_meeting/report/report_meeting.py new file mode 100644 index 000000000..eb2ce0ffb --- /dev/null +++ b/print_minutes_of_meeting/report/report_meeting.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Mohammed Irfan T @ Cybrosys, (odoo@cybrosys.com) +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, models + + +class ReportMeeting(models.AbstractModel): + """Model for pdf meeting report""" + _name = 'report.meeting' + _description = 'Report Meeting' + + @api.model + def _get_report_values(self, docids, data=None): + """Function to get the report data values to print""" + return { + 'doc_ids': docids, + 'doc_model': 'calendar.event', + 'docs': self.env['calendar.event'].browse(docids), + 'data': data, + } diff --git a/print_minutes_of_meeting/security/ir.model.access.csv b/print_minutes_of_meeting/security/ir.model.access.csv new file mode 100644 index 000000000..6bee75823 --- /dev/null +++ b/print_minutes_of_meeting/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_meeting_agenda_user,access.meeting.agenda.user,model_meeting_agenda,base.group_user,1,1,1,1 +access_meeting_action_user,access.meeting.action.user,model_meeting_action,base.group_user,1,1,1,1 diff --git a/print_minutes_of_meeting/static/description/assets/icons/check.png b/print_minutes_of_meeting/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/check.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/chevron.png b/print_minutes_of_meeting/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/chevron.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/cogs.png b/print_minutes_of_meeting/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/cogs.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/consultation.png b/print_minutes_of_meeting/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/consultation.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/ecom-black.png b/print_minutes_of_meeting/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/ecom-black.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/education-black.png b/print_minutes_of_meeting/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/education-black.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/hotel-black.png b/print_minutes_of_meeting/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/hotel-black.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/license.png b/print_minutes_of_meeting/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/license.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/lifebuoy.png b/print_minutes_of_meeting/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/lifebuoy.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/manufacturing-black.png b/print_minutes_of_meeting/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/manufacturing-black.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/pos-black.png b/print_minutes_of_meeting/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/pos-black.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/puzzle.png b/print_minutes_of_meeting/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/puzzle.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/restaurant-black.png b/print_minutes_of_meeting/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/restaurant-black.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/service-black.png b/print_minutes_of_meeting/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/service-black.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/trading-black.png b/print_minutes_of_meeting/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/trading-black.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/training.png b/print_minutes_of_meeting/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/training.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/update.png b/print_minutes_of_meeting/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/update.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/user.png b/print_minutes_of_meeting/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/user.png differ diff --git a/print_minutes_of_meeting/static/description/assets/icons/wrench.png b/print_minutes_of_meeting/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/icons/wrench.png differ diff --git a/print_minutes_of_meeting/static/description/assets/misc/categories.png b/print_minutes_of_meeting/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/misc/categories.png differ diff --git a/print_minutes_of_meeting/static/description/assets/misc/check-box.png b/print_minutes_of_meeting/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/misc/check-box.png differ diff --git a/print_minutes_of_meeting/static/description/assets/misc/compass.png b/print_minutes_of_meeting/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/misc/compass.png differ diff --git a/print_minutes_of_meeting/static/description/assets/misc/corporate.png b/print_minutes_of_meeting/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/misc/corporate.png differ diff --git a/print_minutes_of_meeting/static/description/assets/misc/customer-support.png b/print_minutes_of_meeting/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/misc/customer-support.png differ diff --git a/print_minutes_of_meeting/static/description/assets/misc/cybrosys-logo.png b/print_minutes_of_meeting/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/misc/cybrosys-logo.png differ diff --git a/print_minutes_of_meeting/static/description/assets/misc/features.png b/print_minutes_of_meeting/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/misc/features.png differ diff --git a/print_minutes_of_meeting/static/description/assets/misc/logo.png b/print_minutes_of_meeting/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/misc/logo.png differ diff --git a/print_minutes_of_meeting/static/description/assets/misc/pictures.png b/print_minutes_of_meeting/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/misc/pictures.png differ diff --git a/print_minutes_of_meeting/static/description/assets/misc/pie-chart.png b/print_minutes_of_meeting/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/misc/pie-chart.png differ diff --git a/print_minutes_of_meeting/static/description/assets/misc/right-arrow.png b/print_minutes_of_meeting/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/misc/right-arrow.png differ diff --git a/print_minutes_of_meeting/static/description/assets/misc/star.png b/print_minutes_of_meeting/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/misc/star.png differ diff --git a/print_minutes_of_meeting/static/description/assets/misc/support.png b/print_minutes_of_meeting/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/misc/support.png differ diff --git a/print_minutes_of_meeting/static/description/assets/misc/whatsapp.png b/print_minutes_of_meeting/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/misc/whatsapp.png differ diff --git a/print_minutes_of_meeting/static/description/assets/modules/approval_image.png b/print_minutes_of_meeting/static/description/assets/modules/approval_image.png new file mode 100644 index 000000000..84fe94e80 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/modules/approval_image.png differ diff --git a/print_minutes_of_meeting/static/description/assets/modules/gantt_image.png b/print_minutes_of_meeting/static/description/assets/modules/gantt_image.png new file mode 100644 index 000000000..4810fc34d Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/modules/gantt_image.png differ diff --git a/print_minutes_of_meeting/static/description/assets/modules/hide_menu_image.png b/print_minutes_of_meeting/static/description/assets/modules/hide_menu_image.png new file mode 100644 index 000000000..be440eb23 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/modules/hide_menu_image.png differ diff --git a/print_minutes_of_meeting/static/description/assets/modules/laundry_image.png b/print_minutes_of_meeting/static/description/assets/modules/laundry_image.png new file mode 100644 index 000000000..730fb36f4 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/modules/laundry_image.png differ diff --git a/print_minutes_of_meeting/static/description/assets/modules/list_view_image.png b/print_minutes_of_meeting/static/description/assets/modules/list_view_image.png new file mode 100644 index 000000000..510d36ae9 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/modules/list_view_image.png differ diff --git a/print_minutes_of_meeting/static/description/assets/modules/print_image.png b/print_minutes_of_meeting/static/description/assets/modules/print_image.png new file mode 100644 index 000000000..b470725a1 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/modules/print_image.png differ diff --git a/print_minutes_of_meeting/static/description/assets/screenshots/hero.gif b/print_minutes_of_meeting/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..a1a0f55f0 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/screenshots/hero.gif differ diff --git a/print_minutes_of_meeting/static/description/assets/screenshots/mom_1.png b/print_minutes_of_meeting/static/description/assets/screenshots/mom_1.png new file mode 100644 index 000000000..6fd40997c Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/screenshots/mom_1.png differ diff --git a/print_minutes_of_meeting/static/description/assets/screenshots/mom_2.png b/print_minutes_of_meeting/static/description/assets/screenshots/mom_2.png new file mode 100644 index 000000000..1a7e20db8 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/screenshots/mom_2.png differ diff --git a/print_minutes_of_meeting/static/description/assets/screenshots/mom_3.png b/print_minutes_of_meeting/static/description/assets/screenshots/mom_3.png new file mode 100644 index 000000000..2befd69f4 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/screenshots/mom_3.png differ diff --git a/print_minutes_of_meeting/static/description/banner.jpg b/print_minutes_of_meeting/static/description/banner.jpg new file mode 100644 index 000000000..96b15ef12 Binary files /dev/null and b/print_minutes_of_meeting/static/description/banner.jpg differ diff --git a/print_minutes_of_meeting/static/description/icon.png b/print_minutes_of_meeting/static/description/icon.png new file mode 100644 index 000000000..eeed6a65f Binary files /dev/null and b/print_minutes_of_meeting/static/description/icon.png differ diff --git a/print_minutes_of_meeting/static/description/index.html b/print_minutes_of_meeting/static/description/index.html new file mode 100644 index 000000000..bf91853bf --- /dev/null +++ b/print_minutes_of_meeting/static/description/index.html @@ -0,0 +1,558 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+
+ +
+
+
+ +

+ Minutes of Meetings Report

+

Module For Add Minutes + Of Meetings And Print PDF Reports.

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

Explore This + Module

+
+ + + + +
+
+ +
+

Overview +

+
+
+
+ Allows to keep records of the Minutes of Meeting. +
+
+ + +
+
+ +
+

Features +

+
+
+
+
+ + Allows to enter meeting information +
+
+ + Allows to send Minutes of Meeting as PDF file via email to all attendees +
+
+
+ +
+ + Available in Odoo 14.0 + Community and Enterprise. +
+ +
+ + Print minutes of meeting in PDF format +
+ +
+
+ + + +
+
+ +
+

Screenshots +

+
+
+
+ +
+

Allows to add Meeting + details +

+

This module allows to + enter the meeting information like responsible user, note taker, absent members, agenda, etc.

+ +
+ +
+

Print Minutes of + Meeting in PDF format +

+ +
+ +
+

Responsible users are + able to "Send Meeting Minutes To Attendees" +

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

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

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/print_minutes_of_meeting/views/calendar_event_views.xml b/print_minutes_of_meeting/views/calendar_event_views.xml new file mode 100644 index 000000000..9d302e78b --- /dev/null +++ b/print_minutes_of_meeting/views/calendar_event_views.xml @@ -0,0 +1,54 @@ + + + + + calendar.event.view.form.inherit.print.minutes.of.meeting + calendar.event + + + + + + + + + + + + + + + +