diff --git a/print_minutes_of_meeting/README.rst b/print_minutes_of_meeting/README.rst new file mode 100644 index 000000000..15eff67f3 --- /dev/null +++ b/print_minutes_of_meeting/README.rst @@ -0,0 +1,40 @@ +Minutes of Meetings and Print Meetings +====================================== +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 `__ + +Credits +------- +* Cybrosys Techno Solutions +* Developers: Noorjahan NA 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..a5474619d --- /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: Noorjahan @ 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 reports diff --git a/print_minutes_of_meeting/__manifest__.py b/print_minutes_of_meeting/__manifest__.py new file mode 100644 index 000000000..d95884ee2 --- /dev/null +++ b/print_minutes_of_meeting/__manifest__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Noorjahan @ 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 and Print Meetings', + 'version': '16.0.1.0.0', + 'summary': 'Module for Minutes of Meetings and Print PDF Report. ', + 'description': 'Module for Minutes of Meetings and Print PDF Report', + 'category': 'Project', + '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.xml', + 'reports/mom_report.xml', + 'reports/mom_report_template.xml', + 'data/mail_template_data.xml', + ], + 'images': ['static/description/banner.png'], + 'installable': True, + 'application': False, + 'auto_install': False, + 'license': 'AGPL-3', +} diff --git a/print_minutes_of_meeting/data/mail_template_data.xml b/print_minutes_of_meeting/data/mail_template_data.xml new file mode 100644 index 000000000..12df0b03f --- /dev/null +++ b/print_minutes_of_meeting/data/mail_template_data.xml @@ -0,0 +1,33 @@ + + + + + Minutes of Meeting + + {{ (object.responsible_user_id.email_formatted or user.email_formatted) }} + Minutes of Meeting - {{ object.name }} + + Sent to attendees with minutes of meeting + + +
+

+ Hi  Team, +
+
+ Please find the attached minutes of meeting of the + + " + " + +
+
+

+
+
+ {{ object.partner_id.lang }} + +
+ +
+
\ No newline at end of file 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..68bec4b13 --- /dev/null +++ b/print_minutes_of_meeting/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 02.01.2023 +#### Version 16.0.1.0.0 +#### ADD +Initial Commit Minutes of Meetings and Print Meetings diff --git a/print_minutes_of_meeting/models/__init__.py b/print_minutes_of_meeting/models/__init__.py new file mode 100644 index 000000000..676c9a28c --- /dev/null +++ b/print_minutes_of_meeting/models/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Noorjahan @ 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 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..ee14f4d70 --- /dev/null +++ b/print_minutes_of_meeting/models/calendar_event.py @@ -0,0 +1,107 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Noorjahan @ 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 models, fields, api + + +class CalendarEvent(models.Model): + _inherit = 'calendar.event' + + responsible_user_id = fields.Many2one('res.users', + help="The person who is responsible for the event") + note_taker_id = fields.Many2one('res.partner', + domain="[('id', 'in', partner_ids)]", + help="The 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") + agenda_ids = fields.One2many('meeting.agenda', 'calendar_event_id', + string='Agenda') + actions_ids = fields.One2many('meeting.actions', 'calendar_event_id', + string='Actions/Decisions') + notes = fields.Html(string='Conclusions') + is_user = fields.Boolean(compute='compute_is_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 send_mail(self): + """Send mail""" + report_template_id = self.env['ir.actions.report']._render_qweb_pdf( + report_ref='print_minutes_of_meeting.action_minutes_of_meeting_report', + data=None, + res_ids=self.ids, + ) + data_record = base64.b64encode(report_template_id[0]) + ir_values = { + 'name': "Minutes of Meeting", + 'type': 'binary', + 'datas': data_record, + 'store_fname': data_record, + 'mimetype': 'application/pdf', + } + data_id = self.env['ir.attachment'].create(ir_values) + + template_id = self.env.ref( + 'print_minutes_of_meeting.email_template_minutes_of_meeting') + template_id.attachment_ids = [(6, 0, [data_id.id])] + context = { + 'name': self.name, + } + email_values = { + 'recipient_ids': [(4, partner) for partner in self.partner_ids.ids], + 'email_from': self.responsible_user_id.email + } + self.env['mail.template'].browse(template_id.id).with_context( + context=context).send_mail(self.id, email_values=email_values, + force_send=True) + template_id.attachment_ids = [(3, data_id.id)] + + +class MeetingAgenda(models.Model): + _name = 'meeting.agenda' + _rec_name = 'topic' + + topic = fields.Char() + description = fields.Char() + is_discussed = fields.Boolean('Discussed') + calendar_event_id = fields.Many2one('calendar.event') + + +class MeetingActions(models.Model): + _name = 'meeting.actions' + + def _responsible_partner_id_domain(self): + """return the domain for responsible partner""" + return [('id', 'in', self.calendar_event_id.partner_ids.ids)] + + action = fields.Char() + description = fields.Char() + agenda_item_id = fields.Many2one('meeting.agenda') + responsible_partner_id = fields.Many2one('res.partner', + domain=_responsible_partner_id_domain) + assigned_partner_ids = fields.Many2many('res.partner') + calendar_event_id = fields.Many2one('calendar.event') + deadline = fields.Date() diff --git a/print_minutes_of_meeting/reports/__init__.py b/print_minutes_of_meeting/reports/__init__.py new file mode 100644 index 000000000..8d1b1630b --- /dev/null +++ b/print_minutes_of_meeting/reports/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Noorjahan @ 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 mom_report diff --git a/print_minutes_of_meeting/reports/mom_report.py b/print_minutes_of_meeting/reports/mom_report.py new file mode 100644 index 000000000..2dc05eb79 --- /dev/null +++ b/print_minutes_of_meeting/reports/mom_report.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Noorjahan @ 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 models, api + + +class ReportMinutesofMeeting(models.AbstractModel): + _name = 'report.print_minutes_of_meeting.report_mom_template' + _description = 'Minutes of meeting' + + @api.model + def _get_report_values(self, docids, data=None): + docs = self.env['calendar.event'].browse(docids) + return { + 'doc_ids': docids, + 'doc_model': 'calendar.event', + 'docs': docs, + 'data': data, + } diff --git a/print_minutes_of_meeting/reports/mom_report.xml b/print_minutes_of_meeting/reports/mom_report.xml new file mode 100644 index 000000000..24628ea64 --- /dev/null +++ b/print_minutes_of_meeting/reports/mom_report.xml @@ -0,0 +1,12 @@ + + + + Minutes of Meeting + calendar.event + qweb-pdf + print_minutes_of_meeting.report_mom_template + print_minutes_of_meeting.report_mom_template + + report + + \ No newline at end of file diff --git a/print_minutes_of_meeting/reports/mom_report_template.xml b/print_minutes_of_meeting/reports/mom_report_template.xml new file mode 100644 index 000000000..25b1a4a72 --- /dev/null +++ b/print_minutes_of_meeting/reports/mom_report_template.xml @@ -0,0 +1,151 @@ + + + + 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..470dadc37 --- /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,access.meeting.agenda,model_meeting_agenda,,1,1,1,1 +access_meeting_actions,access.meeting.actions,model_meeting_actions,,1,1,1,1 \ No newline at end of file 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/1.png b/print_minutes_of_meeting/static/description/assets/modules/1.png new file mode 100644 index 000000000..5238bdeab Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/modules/1.png differ diff --git a/print_minutes_of_meeting/static/description/assets/modules/2.png b/print_minutes_of_meeting/static/description/assets/modules/2.png new file mode 100644 index 000000000..1ae7cfe3b Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/modules/2.png differ diff --git a/print_minutes_of_meeting/static/description/assets/modules/3.png b/print_minutes_of_meeting/static/description/assets/modules/3.png new file mode 100644 index 000000000..3c3ff1afb Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/modules/3.png differ diff --git a/print_minutes_of_meeting/static/description/assets/modules/4.png b/print_minutes_of_meeting/static/description/assets/modules/4.png new file mode 100644 index 000000000..3fae4631e Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/modules/4.png differ diff --git a/print_minutes_of_meeting/static/description/assets/modules/5.gif b/print_minutes_of_meeting/static/description/assets/modules/5.gif new file mode 100644 index 000000000..2a5f8e659 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/modules/5.gif differ diff --git a/print_minutes_of_meeting/static/description/assets/modules/6.png b/print_minutes_of_meeting/static/description/assets/modules/6.png new file mode 100644 index 000000000..7f2815273 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/modules/6.png differ diff --git a/print_minutes_of_meeting/static/description/assets/screenshots/hero.png b/print_minutes_of_meeting/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..25c97e275 Binary files /dev/null and b/print_minutes_of_meeting/static/description/assets/screenshots/hero.png 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..314a28874 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..599d4bb30 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..801f17254 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.png b/print_minutes_of_meeting/static/description/banner.png new file mode 100644 index 000000000..06d73ee7f Binary files /dev/null and b/print_minutes_of_meeting/static/description/banner.png 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..5d0843a12 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..8ab414196 --- /dev/null +++ b/print_minutes_of_meeting/static/description/index.html @@ -0,0 +1,550 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Minutes of Meetings and Print Meetings

+

Module for add Minutes of Meetings and Print PDF Reports.

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

Explore This + Module

+
+ + + + +
+
+ +
+

Overview +

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

Features +

+
+
+
+
+ + Community & + Enterprise Support. +
+
+ + Allows to enter meeting information +
+
+ + Allows to send Minutes of Meeting as PDF file via email to all attendees +
+
+
+ +
+ + Available in Odoo 16.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 the minutes of meeting 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.xml b/print_minutes_of_meeting/views/calendar_event.xml new file mode 100644 index 000000000..32ddd4b0e --- /dev/null +++ b/print_minutes_of_meeting/views/calendar_event.xml @@ -0,0 +1,53 @@ + + + + calendar.event.form.inherit + calendar.event + + + + + + + + + + + + + + + +