diff --git a/magic_note/README.rst b/magic_note/README.rst new file mode 100644 index 000000000..ac4716e48 --- /dev/null +++ b/magic_note/README.rst @@ -0,0 +1,75 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Magic Note +========== +This module aims to automatically update the color of the notes/memo +in organizer tab under messaging menu. + +Installation +------------ +- www.odoo.com/documentation/16.0/setup/install.html +- Install our custom addon + +Configuration: +-------------- +After installing this module, you need to set colors and intervals in the settings + +Features +-------- +* Set a name for the category of colored notes +* Select color from a predefined list of colors +* Select a range of date limit(days) in integer form +* Updates the note's color in on-load of kanban view + + .. note:: + By default on installation of this module it creates a field called dead date and sets it to the current date + + A new tab is created under settings-configuration where + >set default color when no date intervals are defined + >set color when any record doesn't come under date intervals + >set color for notes which exceed the deadline date + + |form view| +* Select a name which is not compulsory set lower and upper limit of days +* Select the color + + |list view| +* shows you the defied color and days(interval) + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +GNU AFFERO GENERAL PUBLIC LICENSE, Version 3 (AGPLv3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +Developer: (V16) Rahul CK @cybrosys, Contact: odoo@cybrosys.com +Guidance: Sayooj AO @ cybrosys, sayooj@cybrosys.in + +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/magic_note/__init__.py b/magic_note/__init__.py new file mode 100644 index 000000000..1df11958f --- /dev/null +++ b/magic_note/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Rahul CK (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from . import models diff --git a/magic_note/__manifest__.py b/magic_note/__manifest__.py new file mode 100644 index 000000000..fff9d5188 --- /dev/null +++ b/magic_note/__manifest__.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Rahul CK (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': 'Magic Note', + 'version': '16.0.1.0.0', + 'category': 'Productivity', + 'summary': """ + Automatically Change the Color Based on the Date Interval Config of Notes + """, + 'description': """ + Set a date interval in integers. + All the notes belonging to the period will be assigned the defined color + """, + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base', 'note'], + 'data': [ + 'security/ir.model.access.csv', + 'views/note_note_views.xml', + 'views/note_color_views.xml', + 'views/res_config_settings_views.xml' + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False +} diff --git a/magic_note/doc/RELEASE_NOTES.md b/magic_note/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..b3d100fea --- /dev/null +++ b/magic_note/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 04.11.2023 +#### Version 16.0.1.0.0 +#### ADD +- Initial commit for Magic Note diff --git a/magic_note/models/__init__.py b/magic_note/models/__init__.py new file mode 100644 index 000000000..dd499774b --- /dev/null +++ b/magic_note/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Rahul CK (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 note_color +from . import note_note +from . import res_config_settings diff --git a/magic_note/models/note_color.py b/magic_note/models/note_color.py new file mode 100644 index 000000000..3e6db6aa4 --- /dev/null +++ b/magic_note/models/note_color.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Rahul CK (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 NoteColor(models.Model): + """ Specify the colors and intervals that is to be applied to the notes """ + _name = 'note.color' + _description = 'Note Color Intervals' + + name = fields.Char(string='Criteria', help='Title for date interval') + color_note = fields.Selection( + [('white', 'White'), ('grey', 'Grey'), ('orange', 'Orange'), + ('green', 'Green'), ('blue', 'Blue'), ('purple', 'Purple'), + ('pink', 'Pink'), ('red', 'Red')], string='Note Color', + default='white', help='Color of the record') + start_interval = fields.Integer(string='Lower Limit', default='1', + help='Number of days to the deadline date') + end_interval = fields.Integer( + string='Upper Limit', default='2', + help='Number of days after the deadline date') diff --git a/magic_note/models/note_note.py b/magic_note/models/note_note.py new file mode 100644 index 000000000..2a904c82e --- /dev/null +++ b/magic_note/models/note_note.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Rahul CK (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 dateutil.relativedelta import relativedelta +from odoo import api, fields, models + + +class NoteNote(models.Model): + """ Inherits the class to add new fields deadline and note_color in notes + Methods: + get_view(): + Override this method to add colors to notes + """ + _inherit = 'note.note' + + deadline = fields.Date(string='Deadline', required=True, + default=fields.Date.today(), + help='Specify deadline for notes') + note_color = fields.Char(string='Color', help='Color of note') + + @api.model + def get_view(self, view_id=None, view_type='form', **options): + """ + Overrides ORM get_view() to check the intervals and set the colors to + the notes which is configured in the settings + Args: + view_id (int): id of the view or None + view_type (str): type of the view to return if view_id is None + options (dict): boolean options to return additional features: + - bool mobile: true if the web client is currently using the + responsive mobile view + Returns: + dict: composition of the requested view + """ + res = super().get_view(view_id, view_type, **options) + ir_config_parameter = self.env['ir.config_parameter'].sudo() + for note in self.search([]): + days_difference = relativedelta( + note.deadline, fields.date.today()).days + interval_records = self.env['note.color'].search([]) + if not interval_records: + if fields.Date.today() <= note.deadline: + note.note_color = ir_config_parameter.get_param( + 'magic_note.note_color_default') + else: + note.note_color = ir_config_parameter.get_param( + 'magic_note.after_deadline') + else: + flag = 0 + for interval in interval_records: + if interval.start_interval <= days_difference < \ + interval.end_interval: + note.note_color = interval.color_note + flag = 1 + if flag == 0: + note.note_color = ir_config_parameter.get_param( + 'magic_note.not_in_interval') + return res diff --git a/magic_note/models/res_config_settings.py b/magic_note/models/res_config_settings.py new file mode 100644 index 000000000..ad9740c26 --- /dev/null +++ b/magic_note/models/res_config_settings.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Rahul CK (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 ResConfigSettings(models.TransientModel): + """ Inherits the class to set the color to be applied for notes when the + current date is before, after deadline, or if the deadline date is not + within the interval. """ + _inherit = 'res.config.settings' + + note_color_default = fields.Selection( + [('white', 'White'), ('grey', 'Grey'), ('orange', 'Orange'), + ('green', 'Green'), ('blue', 'Blue'), ('purple', 'Purple'), + ('pink', 'Pink'), ('red', 'Red')], string='Default Color', + config_parameter='magic_note.note_color_default', + help='This color will be set to the records if no date interval ' + 'record is found.') + not_in_interval = fields.Selection( + [('white', 'White'), ('grey', 'Grey'), ('orange', 'Orange'), + ('green', 'Green'), ('blue', 'Blue'), ('purple', 'Purple'), + ('pink', 'Pink'), ('red', 'Red')], + string='If Not Inside The Interval', + config_parameter='magic_note.not_in_interval', + help='This color will be set to notes if none of the deadline date ' + 'come under any defined interval stages.') + after_deadline = fields.Selection( + [('white', 'White'), ('grey', 'Grey'), ('orange', 'Orange'), + ('green', 'Green'), ('blue', 'Blue'), ('purple', 'Purple'), + ('pink', 'Pink'), ('red', 'Red')], string='After Deadline', + config_parameter='magic_note.after_deadline', + help='This color will be set to the notes once they cross the ' + 'deadline date.') diff --git a/magic_note/security/ir.model.access.csv b/magic_note/security/ir.model.access.csv new file mode 100644 index 000000000..5c0541983 --- /dev/null +++ b/magic_note/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access.note.color.user,access_note_color_user,model_note_color,base.group_user,1,1,1,1 diff --git a/magic_note/static/description/assets/icons/check.png b/magic_note/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/magic_note/static/description/assets/icons/check.png differ diff --git a/magic_note/static/description/assets/icons/chevron.png b/magic_note/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/magic_note/static/description/assets/icons/chevron.png differ diff --git a/magic_note/static/description/assets/icons/cogs.png b/magic_note/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/magic_note/static/description/assets/icons/cogs.png differ diff --git a/magic_note/static/description/assets/icons/consultation.png b/magic_note/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/magic_note/static/description/assets/icons/consultation.png differ diff --git a/magic_note/static/description/assets/icons/ecom-black.png b/magic_note/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/magic_note/static/description/assets/icons/ecom-black.png differ diff --git a/magic_note/static/description/assets/icons/education-black.png b/magic_note/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/magic_note/static/description/assets/icons/education-black.png differ diff --git a/magic_note/static/description/assets/icons/hotel-black.png b/magic_note/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/magic_note/static/description/assets/icons/hotel-black.png differ diff --git a/magic_note/static/description/assets/icons/license.png b/magic_note/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/magic_note/static/description/assets/icons/license.png differ diff --git a/magic_note/static/description/assets/icons/lifebuoy.png b/magic_note/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/magic_note/static/description/assets/icons/lifebuoy.png differ diff --git a/magic_note/static/description/assets/icons/manufacturing-black.png b/magic_note/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/magic_note/static/description/assets/icons/manufacturing-black.png differ diff --git a/magic_note/static/description/assets/icons/pos-black.png b/magic_note/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/magic_note/static/description/assets/icons/pos-black.png differ diff --git a/magic_note/static/description/assets/icons/puzzle.png b/magic_note/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/magic_note/static/description/assets/icons/puzzle.png differ diff --git a/magic_note/static/description/assets/icons/restaurant-black.png b/magic_note/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/magic_note/static/description/assets/icons/restaurant-black.png differ diff --git a/magic_note/static/description/assets/icons/service-black.png b/magic_note/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/magic_note/static/description/assets/icons/service-black.png differ diff --git a/magic_note/static/description/assets/icons/trading-black.png b/magic_note/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/magic_note/static/description/assets/icons/trading-black.png differ diff --git a/magic_note/static/description/assets/icons/training.png b/magic_note/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/magic_note/static/description/assets/icons/training.png differ diff --git a/magic_note/static/description/assets/icons/update.png b/magic_note/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/magic_note/static/description/assets/icons/update.png differ diff --git a/magic_note/static/description/assets/icons/user.png b/magic_note/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/magic_note/static/description/assets/icons/user.png differ diff --git a/magic_note/static/description/assets/icons/wrench.png b/magic_note/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/magic_note/static/description/assets/icons/wrench.png differ diff --git a/magic_note/static/description/assets/misc/categories.png b/magic_note/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/magic_note/static/description/assets/misc/categories.png differ diff --git a/magic_note/static/description/assets/misc/check-box.png b/magic_note/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/magic_note/static/description/assets/misc/check-box.png differ diff --git a/magic_note/static/description/assets/misc/compass.png b/magic_note/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/magic_note/static/description/assets/misc/compass.png differ diff --git a/magic_note/static/description/assets/misc/corporate.png b/magic_note/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/magic_note/static/description/assets/misc/corporate.png differ diff --git a/magic_note/static/description/assets/misc/customer-support.png b/magic_note/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/magic_note/static/description/assets/misc/customer-support.png differ diff --git a/magic_note/static/description/assets/misc/cybrosys-logo.png b/magic_note/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/magic_note/static/description/assets/misc/cybrosys-logo.png differ diff --git a/magic_note/static/description/assets/misc/features.png b/magic_note/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/magic_note/static/description/assets/misc/features.png differ diff --git a/magic_note/static/description/assets/misc/logo.png b/magic_note/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/magic_note/static/description/assets/misc/logo.png differ diff --git a/magic_note/static/description/assets/misc/pictures.png b/magic_note/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/magic_note/static/description/assets/misc/pictures.png differ diff --git a/magic_note/static/description/assets/misc/pie-chart.png b/magic_note/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/magic_note/static/description/assets/misc/pie-chart.png differ diff --git a/magic_note/static/description/assets/misc/right-arrow.png b/magic_note/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/magic_note/static/description/assets/misc/right-arrow.png differ diff --git a/magic_note/static/description/assets/misc/star.png b/magic_note/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/magic_note/static/description/assets/misc/star.png differ diff --git a/magic_note/static/description/assets/misc/support.png b/magic_note/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/magic_note/static/description/assets/misc/support.png differ diff --git a/magic_note/static/description/assets/misc/whatsapp.png b/magic_note/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/magic_note/static/description/assets/misc/whatsapp.png differ diff --git a/magic_note/static/description/assets/modules/1.png b/magic_note/static/description/assets/modules/1.png new file mode 100644 index 000000000..2c8fbb83f Binary files /dev/null and b/magic_note/static/description/assets/modules/1.png differ diff --git a/magic_note/static/description/assets/modules/2.gif b/magic_note/static/description/assets/modules/2.gif new file mode 100644 index 000000000..0b7368dc0 Binary files /dev/null and b/magic_note/static/description/assets/modules/2.gif differ diff --git a/magic_note/static/description/assets/modules/3.png b/magic_note/static/description/assets/modules/3.png new file mode 100644 index 000000000..a29119785 Binary files /dev/null and b/magic_note/static/description/assets/modules/3.png differ diff --git a/magic_note/static/description/assets/modules/4.png b/magic_note/static/description/assets/modules/4.png new file mode 100644 index 000000000..3add135c3 Binary files /dev/null and b/magic_note/static/description/assets/modules/4.png differ diff --git a/magic_note/static/description/assets/modules/5.png b/magic_note/static/description/assets/modules/5.png new file mode 100644 index 000000000..31ed46762 Binary files /dev/null and b/magic_note/static/description/assets/modules/5.png differ diff --git a/magic_note/static/description/assets/modules/6.png b/magic_note/static/description/assets/modules/6.png new file mode 100644 index 000000000..17ba4d75f Binary files /dev/null and b/magic_note/static/description/assets/modules/6.png differ diff --git a/magic_note/static/description/assets/screenshots/S3.png b/magic_note/static/description/assets/screenshots/S3.png new file mode 100644 index 000000000..4243ff7e3 Binary files /dev/null and b/magic_note/static/description/assets/screenshots/S3.png differ diff --git a/magic_note/static/description/assets/screenshots/hero.gif b/magic_note/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..5f46ca686 Binary files /dev/null and b/magic_note/static/description/assets/screenshots/hero.gif differ diff --git a/magic_note/static/description/assets/screenshots/magic_note_01.png b/magic_note/static/description/assets/screenshots/magic_note_01.png new file mode 100644 index 000000000..2bd0e8211 Binary files /dev/null and b/magic_note/static/description/assets/screenshots/magic_note_01.png differ diff --git a/magic_note/static/description/assets/screenshots/magic_note_04.png b/magic_note/static/description/assets/screenshots/magic_note_04.png new file mode 100644 index 000000000..4b93b7aee Binary files /dev/null and b/magic_note/static/description/assets/screenshots/magic_note_04.png differ diff --git a/magic_note/static/description/assets/screenshots/magic_note_05.png b/magic_note/static/description/assets/screenshots/magic_note_05.png new file mode 100644 index 000000000..b4bae5714 Binary files /dev/null and b/magic_note/static/description/assets/screenshots/magic_note_05.png differ diff --git a/magic_note/static/description/assets/screenshots/s2.png b/magic_note/static/description/assets/screenshots/s2.png new file mode 100644 index 000000000..e07d2b397 Binary files /dev/null and b/magic_note/static/description/assets/screenshots/s2.png differ diff --git a/magic_note/static/description/banner.png b/magic_note/static/description/banner.png new file mode 100644 index 000000000..65467114c Binary files /dev/null and b/magic_note/static/description/banner.png differ diff --git a/magic_note/static/description/icon.png b/magic_note/static/description/icon.png new file mode 100644 index 000000000..476994017 Binary files /dev/null and b/magic_note/static/description/icon.png differ diff --git a/magic_note/static/description/index.html b/magic_note/static/description/index.html new file mode 100644 index 000000000..8c8c2469c --- /dev/null +++ b/magic_note/static/description/index.html @@ -0,0 +1,582 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

Magic Note

+

Prioritise notes in Odoo using vibrant colors.

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

Explore This + Module

+
+ + + + +
+
+ +
+

Overview +

+
+
+
+ This module helps you prioritise notes by color. +
+
+ The color of the note changes based on the deadline date and on-load of the kanban view. +
+
+ + + +
+
+ +
+

Features +

+
+
+
+
+ + Magic color notes +
+
+ + Prioritise notes using different colors. +
+
+ + Easy to identify notes based on deadline. +
+
+ + After installation, activate developer mode. Two new menus Date interval and Settings are available under the Configuration menu. +
+
+ + A new field Deadline will be added to the notes set a dead date. +
+
+ + Set default colors in settings. +
+ +
+
+ + + +
+
+ +
+

Screenshots +

+
+
+
+ +
+

Notes Form

+

+ New menu items are added under configuration menu. +

+
+ +
+ +
+

Settings

+

+ In settings, provide the default color of notes , color after the deadline date and the color if deadline is not inside the interval.
+ (Note: The default color and color after deadline will be updated only if a date interval is not created) +

+
+ +
+ +
+

Date Interval

+

+ Under Date interval, create an interval of days: days from the current date to the deadline date. Lower limit and upper limit are used to create the interval. +

+
+ +
+
+
+

+ 'Deadline' field is created in notes to specify the deadline date of note. +

+ +
+
+
+

+ Colors will be shown in different notes with respect to the configurations set. +

+

+ Refresh the page to load the changes in the view. +

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

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/magic_note/views/note_color_views.xml b/magic_note/views/note_color_views.xml new file mode 100644 index 000000000..b5c1a58e1 --- /dev/null +++ b/magic_note/views/note_color_views.xml @@ -0,0 +1,62 @@ + + + + + note.color.view.form + note.color + +
+ + + + + + + + + + + + +
+
+
+ + + note.color.view.tree + note.color + + + + + + + + + + + + Color Interval + note.color + + tree,form + +

+ Create the color sets +

+
+
+ + +
diff --git a/magic_note/views/note_note_views.xml b/magic_note/views/note_note_views.xml new file mode 100644 index 000000000..dca59f7d2 --- /dev/null +++ b/magic_note/views/note_note_views.xml @@ -0,0 +1,81 @@ + + + + + note.note.view.kanban.inherit.magic.note + note.note + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + +
+ +
+
+ +
+ + Follower + +
+ +
+ + + + + + + + + note.note.view.form.inherit.magic.note + note.note + + + + + + + + diff --git a/magic_note/views/res_config_settings_views.xml b/magic_note/views/res_config_settings_views.xml new file mode 100644 index 000000000..6c0644ad8 --- /dev/null +++ b/magic_note/views/res_config_settings_views.xml @@ -0,0 +1,62 @@ + + + + + res.config.settings.view.form.inherit.magic.note + res.config.settings + + + +
+

Color Configuration

+
+
+
+
+ Default Color +
Default color of note
+
+ +
+
+
+
+
+
+ After Deadline +
Color of note after deadline.
+
+ +
+
+
+
+
+
+ If Not Inside The Interval +
+ Color of note if the deadline is not inside the interval. +
+
+ +
+
+
+
+
+ + + + + + Settings + ir.actions.act_window + res.config.settings + form + inline + {'module' : 'note'} + + + +