diff --git a/magic_note/README.rst b/magic_note/README.rst new file mode 100644 index 000000000..edc0be67a --- /dev/null +++ b/magic_note/README.rst @@ -0,0 +1,75 @@ +.. 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 + +Magic Note +========== +This module aims to automatically update the color of the notes/memo +in organizer tab under messaging menu. + +Installation +------------ +- 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, + (V17) Busthana Shirin +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/magic_note/__init__.py b/magic_note/__init__.py new file mode 100644 index 000000000..0b4f6e5d0 --- /dev/null +++ b/magic_note/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Busthana Shirin (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..c1b80c326 --- /dev/null +++ b/magic_note/__manifest__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Busthana Shirin (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': '17.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', 'project_todo', 'project'], + 'data': [ + 'security/ir.model.access.csv', + 'views/note_color_views.xml', + 'views/project_task_views.xml', + 'views/res_config_settings_views.xml' + ], + 'images': ['static/description/banner.jpg'], + '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..9c1b429fc --- /dev/null +++ b/magic_note/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 06.01.2024 +#### Version 17.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..3d9e6992c --- /dev/null +++ b/magic_note/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Busthana Shirin (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 project_task +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..a386c94dd --- /dev/null +++ b/magic_note/models/note_color.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Busthana Shirin (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/project_task.py b/magic_note/models/project_task.py new file mode 100644 index 000000000..5c04b2ebe --- /dev/null +++ b/magic_note/models/project_task.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Busthana Shirin (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 ProjectTask(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 = 'project.task' + + 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..3e7498a26 --- /dev/null +++ b/magic_note/models/res_config_settings.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Busthana Shirin (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/capture (1).png b/magic_note/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/magic_note/static/description/assets/icons/capture (1).png differ 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/img.png b/magic_note/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/magic_note/static/description/assets/icons/img.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/photo-capture.png b/magic_note/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/magic_note/static/description/assets/icons/photo-capture.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/Cybrosys R.png b/magic_note/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/magic_note/static/description/assets/misc/Cybrosys R.png differ diff --git a/magic_note/static/description/assets/misc/email.svg b/magic_note/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/magic_note/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/magic_note/static/description/assets/misc/phone.svg b/magic_note/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/magic_note/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/magic_note/static/description/assets/misc/star (1) 2.svg b/magic_note/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/magic_note/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/magic_note/static/description/assets/misc/support (1) 1.svg b/magic_note/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/magic_note/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/magic_note/static/description/assets/misc/support-email.svg b/magic_note/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/magic_note/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/magic_note/static/description/assets/misc/tick-mark.svg b/magic_note/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/magic_note/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/magic_note/static/description/assets/misc/whatsapp 1.svg b/magic_note/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/magic_note/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/magic_note/static/description/assets/misc/whatsapp.svg b/magic_note/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/magic_note/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/magic_note/static/description/assets/modules/m1.png b/magic_note/static/description/assets/modules/m1.png new file mode 100644 index 000000000..5acf9a06a Binary files /dev/null and b/magic_note/static/description/assets/modules/m1.png differ diff --git a/magic_note/static/description/assets/modules/m2.png b/magic_note/static/description/assets/modules/m2.png new file mode 100644 index 000000000..0bfce1e0a Binary files /dev/null and b/magic_note/static/description/assets/modules/m2.png differ diff --git a/magic_note/static/description/assets/modules/m3.jpg b/magic_note/static/description/assets/modules/m3.jpg new file mode 100644 index 000000000..92e954d0e Binary files /dev/null and b/magic_note/static/description/assets/modules/m3.jpg differ diff --git a/magic_note/static/description/assets/modules/m4.png b/magic_note/static/description/assets/modules/m4.png new file mode 100644 index 000000000..4e8874e3f Binary files /dev/null and b/magic_note/static/description/assets/modules/m4.png differ diff --git a/magic_note/static/description/assets/modules/m5.png b/magic_note/static/description/assets/modules/m5.png new file mode 100644 index 000000000..690323d0b Binary files /dev/null and b/magic_note/static/description/assets/modules/m5.png differ diff --git a/magic_note/static/description/assets/modules/m6.png b/magic_note/static/description/assets/modules/m6.png new file mode 100644 index 000000000..ac15216fb Binary files /dev/null and b/magic_note/static/description/assets/modules/m6.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..4aafd2744 Binary files /dev/null and b/magic_note/static/description/assets/screenshots/hero.gif differ diff --git a/magic_note/static/description/assets/screenshots/magic1.png b/magic_note/static/description/assets/screenshots/magic1.png new file mode 100644 index 000000000..b721d236b Binary files /dev/null and b/magic_note/static/description/assets/screenshots/magic1.png differ diff --git a/magic_note/static/description/assets/screenshots/magic2.png b/magic_note/static/description/assets/screenshots/magic2.png new file mode 100644 index 000000000..3b36a4101 Binary files /dev/null and b/magic_note/static/description/assets/screenshots/magic2.png differ diff --git a/magic_note/static/description/assets/screenshots/magic3.png b/magic_note/static/description/assets/screenshots/magic3.png new file mode 100644 index 000000000..87fa883ba Binary files /dev/null and b/magic_note/static/description/assets/screenshots/magic3.png differ diff --git a/magic_note/static/description/assets/screenshots/magic4.png b/magic_note/static/description/assets/screenshots/magic4.png new file mode 100644 index 000000000..4e90ebf43 Binary files /dev/null and b/magic_note/static/description/assets/screenshots/magic4.png differ diff --git a/magic_note/static/description/assets/screenshots/magic5.png b/magic_note/static/description/assets/screenshots/magic5.png new file mode 100644 index 000000000..2a93ac451 Binary files /dev/null and b/magic_note/static/description/assets/screenshots/magic5.png differ diff --git a/magic_note/static/description/banner.jpg b/magic_note/static/description/banner.jpg new file mode 100644 index 000000000..9f7bf6c1c Binary files /dev/null and b/magic_note/static/description/banner.jpg differ diff --git a/magic_note/static/description/icon.png b/magic_note/static/description/icon.png new file mode 100644 index 000000000..6667d8c60 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..f24b94ffb --- /dev/null +++ b/magic_note/static/description/index.html @@ -0,0 +1,740 @@ + + + + + + + Magic Note + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+
+
+
+
+

+ Magic Note

+

+ Prioritise notes in Odoo using vibrant colors. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Magic color note

+

+ Notes can add different colors. +

+
+
+
+
+
+
+ +
+
+

+ Prioritise notes using different colors.

+
+
+
+
+
+
+ +
+
+

+ Easy to identify notes based on deadline.

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

+ Configuration

+

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

+
+
+
+
+
+
+ +
+
+

+ Color Interval

+

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

+ +
+
+
+
+
+
+
    +
  • + We can add different colors to the notes and understand the notes easily. +
  • +
  • + Prioritize notes and identify deadlines for notes. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:2nd November 2023 +
+

+ + Initial Commit for Timesheet PDF Report.

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire + Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo + Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

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 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + \ No newline at end of file diff --git a/magic_note/views/note_color_views.xml b/magic_note/views/note_color_views.xml new file mode 100644 index 000000000..ed31b58dc --- /dev/null +++ b/magic_note/views/note_color_views.xml @@ -0,0 +1,60 @@ + + + + + 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/project_task_views.xml b/magic_note/views/project_task_views.xml new file mode 100644 index 000000000..c3e26330d --- /dev/null +++ b/magic_note/views/project_task_views.xml @@ -0,0 +1,108 @@ + + + + + project.task.view.form.inherit.magic.note + project.task + + + +
+ +
+
+
+
+ + + + project.task.view.kanban.inherit.magic.note + project.task + + + + + + + + + + + + + + + + + + + Delete + +
    + + + +
    + +
    +
    +
    +
    +
    + +
    +
    + + + +
    +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    + +
    + +
    +
    +
    +
    +
    +
    + + + + + + + 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..beb66c0b5 --- /dev/null +++ b/magic_note/views/res_config_settings_views.xml @@ -0,0 +1,69 @@ + + + + + res.config.settings.view.form.inherit.magic.note + + res.config.settings + + + + + + + + + + + + + + + + + + + + + + + Settings + res.config.settings + form + inline + {'module' : 'project_todo', 'bin_size': False}} + + + + + + + + + + + +