diff --git a/form_sticky_notes/README.rst b/form_sticky_notes/README.rst new file mode 100644 index 000000000..4ca7ab99a --- /dev/null +++ b/form_sticky_notes/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: LGPL-3 + +Sticky Notes +============= +Sticky Notes is used to stick some notes in the form view only. +And we can edit and delete the sticky notes. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.odoo.com/documentation/user/16.0/legal/licenses/licenses.html) + +Credits +------- +Developers: (V16) Gayathri V +Contacts: 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: ``__ \ No newline at end of file diff --git a/form_sticky_notes/__init__.py b/form_sticky_notes/__init__.py new file mode 100644 index 000000000..e9236f9f1 --- /dev/null +++ b/form_sticky_notes/__init__.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models +from . import wizard +from odoo import api, SUPERUSER_ID + + +def _uninstall_hook(cr, registry): + env = api.Environment(cr, SUPERUSER_ID, {}) + modules = env['ir.ui.view'].search( + [('sticky_identification_number', '!=', False)]) + for rec in modules: + rec.unlink() diff --git a/form_sticky_notes/__manifest__.py b/form_sticky_notes/__manifest__.py new file mode 100644 index 000000000..628ae8457 --- /dev/null +++ b/form_sticky_notes/__manifest__.py @@ -0,0 +1,57 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Sticky Notes', + 'version': "16.0.1.0.0", + 'category': 'Productivity', + 'summary': """An additional note for form views.We can create a note in the + form views as a sticky notes.""", + 'description': """Sticky Notes is used to stick some notes in the form view + only.And we can edit delete the notes at the time of creation""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base','web'], + 'data': [ + 'security/ir.model.access.csv', + 'views/stick_notes_views.xml', + 'views/res_users_views.xml', + 'views/res_users_views.xml', + 'wizard/sticky_notes_views.xml', + 'wizard/sticky_notes_update_views.xml', + 'wizard/sticky_notes_delete_views.xml', + ], + 'assets': { + 'web.assets_backend': [ + 'form_sticky_notes/static/src/js/ActionMenus.js', + 'form_sticky_notes/static/src/js/ViewButton.js', + 'form_sticky_notes/static/src/xml/ActionMenus.xml', + ], + }, + 'images': ['static/description/banner.png'], + 'license': 'LGPL-3', + 'uninstall_hook': '_uninstall_hook', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/form_sticky_notes/doc/RELEASE_NOTES.md b/form_sticky_notes/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..3bc5c5af4 --- /dev/null +++ b/form_sticky_notes/doc/RELEASE_NOTES.md @@ -0,0 +1,5 @@ +## Module +#### 05.08.2024 +#### Version 16.0.1.0.0 +##### ADD +- Initial commit for Sticky Notes diff --git a/form_sticky_notes/models/__init__.py b/form_sticky_notes/models/__init__.py new file mode 100644 index 000000000..1228d719d --- /dev/null +++ b/form_sticky_notes/models/__init__.py @@ -0,0 +1,25 @@ +"""Sticky notes""" +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import ir_ui_view +from . import res_users +from . import stick_notes diff --git a/form_sticky_notes/models/ir_ui_view.py b/form_sticky_notes/models/ir_ui_view.py new file mode 100644 index 000000000..a7cbbe748 --- /dev/null +++ b/form_sticky_notes/models/ir_ui_view.py @@ -0,0 +1,31 @@ +"""Sticky notes""" +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields,models + + +class IrUiView(models.Model): + """This class is used to return the sticky notes""" + _inherit = 'ir.ui.view' + sticky_identification_number = fields.Char(string='Sticky Note', + help="Identify each sticky " + "notes") diff --git a/form_sticky_notes/models/res_users.py b/form_sticky_notes/models/res_users.py new file mode 100644 index 000000000..7b9e93469 --- /dev/null +++ b/form_sticky_notes/models/res_users.py @@ -0,0 +1,39 @@ +"""Sticky notes""" +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import models + + +class ResUsers(models.Model): + """This class is used to return the sticky notes""" + _inherit = 'res.users' + + def action_user_sticky_notes(self): + """To return the sticky notes created by the user""" + return { + 'type': 'ir.actions.act_window', + 'target': 'current', + 'name': 'ASD', + 'view_type': 'tree', + 'view_mode': 'kanban', + 'res_model': 'stick.notes', + } diff --git a/form_sticky_notes/models/stick_notes.py b/form_sticky_notes/models/stick_notes.py new file mode 100644 index 000000000..4e1089fea --- /dev/null +++ b/form_sticky_notes/models/stick_notes.py @@ -0,0 +1,40 @@ +"""Sticky notes""" +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class StickyNotes(models.Model): + """The sticky note class""" + _name = 'stick.notes' + _description = 'Stick notes' + + notes = fields.Text(string='Notes', help="Notes of sticky") + created_id = fields.Many2one('res.users', + default=lambda self: self.env.user, + string="Created By", help='Notes created user') + date = fields.Date(default=fields.Date.today(), string="Date", + help="Creation date of the form") + related_model_name = fields.Char(string='Related Model', + help="Name of the related model") + related_model = fields.Integer(string='Related Model Id', + help=" Id of the related model") diff --git a/form_sticky_notes/security/ir.model.access.csv b/form_sticky_notes/security/ir.model.access.csv new file mode 100644 index 000000000..804e1cccc --- /dev/null +++ b/form_sticky_notes/security/ir.model.access.csv @@ -0,0 +1,5 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access.access_stick_notes_user,access.stick.notes.user,model_stick_notes,base.group_user,1,1,1,1 +access.access_sticky_notes_user,access.sticky.notes.user,model_sticky_notes,base.group_user,1,1,1,1 +access.access_sticky_notes_update_user,access.sticky.notes.update.user,model_sticky_notes_update,base.group_user,1,1,1,1 +access.access_sticky_notes_delete_user,access.sticky.notes.delete.user,model_sticky_notes_delete,base.group_user,1,1,1,1 diff --git a/form_sticky_notes/static/description/assets/icons/check.png b/form_sticky_notes/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/check.png differ diff --git a/form_sticky_notes/static/description/assets/icons/chevron.png b/form_sticky_notes/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/chevron.png differ diff --git a/form_sticky_notes/static/description/assets/icons/cogs.png b/form_sticky_notes/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/cogs.png differ diff --git a/form_sticky_notes/static/description/assets/icons/consultation.png b/form_sticky_notes/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/consultation.png differ diff --git a/form_sticky_notes/static/description/assets/icons/ecom-black.png b/form_sticky_notes/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/ecom-black.png differ diff --git a/form_sticky_notes/static/description/assets/icons/education-black.png b/form_sticky_notes/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/education-black.png differ diff --git a/form_sticky_notes/static/description/assets/icons/hotel-black.png b/form_sticky_notes/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/hotel-black.png differ diff --git a/form_sticky_notes/static/description/assets/icons/license.png b/form_sticky_notes/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/license.png differ diff --git a/form_sticky_notes/static/description/assets/icons/lifebuoy.png b/form_sticky_notes/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/lifebuoy.png differ diff --git a/form_sticky_notes/static/description/assets/icons/manufacturing-black.png b/form_sticky_notes/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/manufacturing-black.png differ diff --git a/form_sticky_notes/static/description/assets/icons/modules/5.gif b/form_sticky_notes/static/description/assets/icons/modules/5.gif new file mode 100644 index 000000000..8f40aab85 Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/modules/5.gif differ diff --git a/form_sticky_notes/static/description/assets/icons/modules/barcode.png b/form_sticky_notes/static/description/assets/icons/modules/barcode.png new file mode 100644 index 000000000..618e3e6c4 Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/modules/barcode.png differ diff --git a/form_sticky_notes/static/description/assets/icons/modules/fatoorah.png b/form_sticky_notes/static/description/assets/icons/modules/fatoorah.png new file mode 100644 index 000000000..991fc77ec Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/modules/fatoorah.png differ diff --git a/form_sticky_notes/static/description/assets/icons/modules/integration_biometric.png b/form_sticky_notes/static/description/assets/icons/modules/integration_biometric.png new file mode 100644 index 000000000..ed11bd818 Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/modules/integration_biometric.png differ diff --git a/form_sticky_notes/static/description/assets/icons/modules/product_brand.png b/form_sticky_notes/static/description/assets/icons/modules/product_brand.png new file mode 100644 index 000000000..1d2238b80 Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/modules/product_brand.png differ diff --git a/form_sticky_notes/static/description/assets/icons/modules/website_cart.png b/form_sticky_notes/static/description/assets/icons/modules/website_cart.png new file mode 100644 index 000000000..163485cfd Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/modules/website_cart.png differ diff --git a/form_sticky_notes/static/description/assets/icons/pos-black.png b/form_sticky_notes/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/pos-black.png differ diff --git a/form_sticky_notes/static/description/assets/icons/puzzle.png b/form_sticky_notes/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/puzzle.png differ diff --git a/form_sticky_notes/static/description/assets/icons/restaurant-black.png b/form_sticky_notes/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/restaurant-black.png differ diff --git a/form_sticky_notes/static/description/assets/icons/service-black.png b/form_sticky_notes/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/service-black.png differ diff --git a/form_sticky_notes/static/description/assets/icons/trading-black.png b/form_sticky_notes/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/trading-black.png differ diff --git a/form_sticky_notes/static/description/assets/icons/training.png b/form_sticky_notes/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/training.png differ diff --git a/form_sticky_notes/static/description/assets/icons/update.png b/form_sticky_notes/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/update.png differ diff --git a/form_sticky_notes/static/description/assets/icons/user.png b/form_sticky_notes/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/user.png differ diff --git a/form_sticky_notes/static/description/assets/icons/wrench.png b/form_sticky_notes/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/form_sticky_notes/static/description/assets/icons/wrench.png differ diff --git a/form_sticky_notes/static/description/assets/misc/categories.png b/form_sticky_notes/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/form_sticky_notes/static/description/assets/misc/categories.png differ diff --git a/form_sticky_notes/static/description/assets/misc/check-box.png b/form_sticky_notes/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/form_sticky_notes/static/description/assets/misc/check-box.png differ diff --git a/form_sticky_notes/static/description/assets/misc/compass.png b/form_sticky_notes/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/form_sticky_notes/static/description/assets/misc/compass.png differ diff --git a/form_sticky_notes/static/description/assets/misc/corporate.png b/form_sticky_notes/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/form_sticky_notes/static/description/assets/misc/corporate.png differ diff --git a/form_sticky_notes/static/description/assets/misc/customer-support.png b/form_sticky_notes/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/form_sticky_notes/static/description/assets/misc/customer-support.png differ diff --git a/form_sticky_notes/static/description/assets/misc/cybrosys-logo.png b/form_sticky_notes/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/form_sticky_notes/static/description/assets/misc/cybrosys-logo.png differ diff --git a/form_sticky_notes/static/description/assets/misc/features.png b/form_sticky_notes/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/form_sticky_notes/static/description/assets/misc/features.png differ diff --git a/form_sticky_notes/static/description/assets/misc/logo.png b/form_sticky_notes/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/form_sticky_notes/static/description/assets/misc/logo.png differ diff --git a/form_sticky_notes/static/description/assets/misc/pictures.png b/form_sticky_notes/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/form_sticky_notes/static/description/assets/misc/pictures.png differ diff --git a/form_sticky_notes/static/description/assets/misc/pie-chart.png b/form_sticky_notes/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/form_sticky_notes/static/description/assets/misc/pie-chart.png differ diff --git a/form_sticky_notes/static/description/assets/misc/right-arrow.png b/form_sticky_notes/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/form_sticky_notes/static/description/assets/misc/right-arrow.png differ diff --git a/form_sticky_notes/static/description/assets/misc/star.png b/form_sticky_notes/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/form_sticky_notes/static/description/assets/misc/star.png differ diff --git a/form_sticky_notes/static/description/assets/misc/support.png b/form_sticky_notes/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/form_sticky_notes/static/description/assets/misc/support.png differ diff --git a/form_sticky_notes/static/description/assets/misc/whatsapp.png b/form_sticky_notes/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/form_sticky_notes/static/description/assets/misc/whatsapp.png differ diff --git a/form_sticky_notes/static/description/assets/modules/5.gif b/form_sticky_notes/static/description/assets/modules/5.gif new file mode 100644 index 000000000..2a5f8e659 Binary files /dev/null and b/form_sticky_notes/static/description/assets/modules/5.gif differ diff --git a/form_sticky_notes/static/description/assets/modules/barcode.png b/form_sticky_notes/static/description/assets/modules/barcode.png new file mode 100644 index 000000000..618e3e6c4 Binary files /dev/null and b/form_sticky_notes/static/description/assets/modules/barcode.png differ diff --git a/form_sticky_notes/static/description/assets/modules/fatoorah.png b/form_sticky_notes/static/description/assets/modules/fatoorah.png new file mode 100644 index 000000000..991fc77ec Binary files /dev/null and b/form_sticky_notes/static/description/assets/modules/fatoorah.png differ diff --git a/form_sticky_notes/static/description/assets/modules/integration_biometric.png b/form_sticky_notes/static/description/assets/modules/integration_biometric.png new file mode 100644 index 000000000..ed11bd818 Binary files /dev/null and b/form_sticky_notes/static/description/assets/modules/integration_biometric.png differ diff --git a/form_sticky_notes/static/description/assets/modules/product.png b/form_sticky_notes/static/description/assets/modules/product.png new file mode 100644 index 000000000..1d2238b80 Binary files /dev/null and b/form_sticky_notes/static/description/assets/modules/product.png differ diff --git a/form_sticky_notes/static/description/assets/modules/product_brand.png b/form_sticky_notes/static/description/assets/modules/product_brand.png new file mode 100644 index 000000000..1d2238b80 Binary files /dev/null and b/form_sticky_notes/static/description/assets/modules/product_brand.png differ diff --git a/form_sticky_notes/static/description/assets/modules/website_cart.png b/form_sticky_notes/static/description/assets/modules/website_cart.png new file mode 100644 index 000000000..163485cfd Binary files /dev/null and b/form_sticky_notes/static/description/assets/modules/website_cart.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/1.png b/form_sticky_notes/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..ef7890468 Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/1.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/10.png b/form_sticky_notes/static/description/assets/screenshots/10.png new file mode 100644 index 000000000..80366e347 Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/10.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/11.png b/form_sticky_notes/static/description/assets/screenshots/11.png new file mode 100644 index 000000000..6613e4af9 Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/11.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/2.png b/form_sticky_notes/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..c62e21b37 Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/2.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/3.png b/form_sticky_notes/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..da07ef142 Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/3.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/4.png b/form_sticky_notes/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..6a7d38d66 Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/4.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/5.png b/form_sticky_notes/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..b180fc57c Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/5.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/6.png b/form_sticky_notes/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..f27673d12 Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/6.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/7.png b/form_sticky_notes/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..fd4aa98ef Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/7.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/8.png b/form_sticky_notes/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..66039f8d5 Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/8.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/9.png b/form_sticky_notes/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..5275147c0 Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/9.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/hero.gif b/form_sticky_notes/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..707c08928 Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/hero.gif differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky1.png b/form_sticky_notes/static/description/assets/screenshots/sticky1.png new file mode 100644 index 000000000..0589f5895 Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/sticky1.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky2.png b/form_sticky_notes/static/description/assets/screenshots/sticky2.png new file mode 100644 index 000000000..2eaa0f54d Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/sticky2.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky3.png b/form_sticky_notes/static/description/assets/screenshots/sticky3.png new file mode 100644 index 000000000..10a5642e2 Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/sticky3.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky4.png b/form_sticky_notes/static/description/assets/screenshots/sticky4.png new file mode 100644 index 000000000..9ef7eb425 Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/sticky4.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky5.png b/form_sticky_notes/static/description/assets/screenshots/sticky5.png new file mode 100644 index 000000000..16867672a Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/sticky5.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky6.png b/form_sticky_notes/static/description/assets/screenshots/sticky6.png new file mode 100644 index 000000000..017687cf7 Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/sticky6.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky7.png b/form_sticky_notes/static/description/assets/screenshots/sticky7.png new file mode 100644 index 000000000..96707fbaf Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/sticky7.png differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky8.png b/form_sticky_notes/static/description/assets/screenshots/sticky8.png new file mode 100644 index 000000000..4dcf95399 Binary files /dev/null and b/form_sticky_notes/static/description/assets/screenshots/sticky8.png differ diff --git a/form_sticky_notes/static/description/banner.png b/form_sticky_notes/static/description/banner.png new file mode 100644 index 000000000..36d24e67a Binary files /dev/null and b/form_sticky_notes/static/description/banner.png differ diff --git a/form_sticky_notes/static/description/icon.png b/form_sticky_notes/static/description/icon.png new file mode 100644 index 000000000..06ef4d559 Binary files /dev/null and b/form_sticky_notes/static/description/icon.png differ diff --git a/form_sticky_notes/static/description/index.html b/form_sticky_notes/static/description/index.html new file mode 100644 index 000000000..476ec2927 --- /dev/null +++ b/form_sticky_notes/static/description/index.html @@ -0,0 +1,690 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ >Odoo.sh +
+
+
+ + +
+
+
+ +

+ Sticky Notes

+

+ An Additional Note For Form Views. +

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

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ Sticky Notes is used to stick some notes in the form view only. + And we can edit and delete the notes. +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + We can add a sticky note in the form views. +
+
+
+
+ + Compatible in Enterprise and community. +
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+ +
+

+ Install the module.

+

+ After Installing the module a button will be appeared in the form views.

+ +
+ +
+

+ Clicking the button a wizard will be open to create the note.

+ +
+ +
+

+ After clicking the stick Button the note will be created.

+ +
+ +
+

+ Created Notes

+ +
+
+

+ Click on edit button to edit the note

+ +
+
+

+ Edit the sticky note.Additionally, there is an option to change the colors."

+ +
+
+

+ Updated note.

+ +
+
+

+ Click on delete icon to delete the note.

+ +
+ +
+

+ Click on Delete Button

+ +
+ +
+

+ After Deleting the note.

+ +
+ +
+

+ On the user record there is a button to show the created notes.

+ +
+
+

+ User created notes.

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

+ 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/form_sticky_notes/static/src/js/ActionMenus.js b/form_sticky_notes/static/src/js/ActionMenus.js new file mode 100644 index 000000000..be11d4b92 --- /dev/null +++ b/form_sticky_notes/static/src/js/ActionMenus.js @@ -0,0 +1,28 @@ +/** @odoo-module **/ +import { patch } from "@web/core/utils/patch"; +import { ActionMenus } from "@web/search/action_menus/action_menus"; + +patch(ActionMenus.prototype, 'sticky_notes_odoo/js/action_menus', { + setup() { + this._super(...arguments); + }, + //The function is used to do an action for creating the sticky notes. + StickyButton() { + var view_id = this.env.config.viewId + var res_model = this.props.resModel + var id = this.actionService.currentController.props.resId + this.actionService.doAction({ + type: 'ir.actions.act_window', + res_model: 'sticky.notes', + view_mode: 'form', + view_type: 'form', + views: [[false, 'form']], + target: 'new', + context: { + 'default_active_model': id, + 'default_active_model_name': res_model, + 'default_active_view':view_id, + }, + }); + }, +}); diff --git a/form_sticky_notes/static/src/js/ViewButton.js b/form_sticky_notes/static/src/js/ViewButton.js new file mode 100644 index 000000000..13fadd705 --- /dev/null +++ b/form_sticky_notes/static/src/js/ViewButton.js @@ -0,0 +1,93 @@ +/** @odoo-module **/ +import { ViewButton } from '@web/views/view_button/view_button'; +import { patch } from "@web/core/utils/patch"; +import { DROPDOWN } from "@web/core/dropdown/dropdown"; +import { pick } from "@web/core/utils/objects"; + +patch(ViewButton.prototype,'@web/views/view_button/view_button', { + setup() { + this._super(...arguments); + }, + //This is used to edit the sticky notes + onClick(ev) { + var view_id = this.env.config.viewId + if(ev.target.name == 'edit_notes'){ + var id = this.env.model.__bm_load_params__.res_id + var res_model = this.env.model.__bm_load_params__.modelName + var str = ev.target.parentElement.parentElement.textContent.trim() + const heading = str.slice(0, str.indexOf(' ')); + const notes = str.slice(str.indexOf(' ')+ 1); + var styleString = ev.target.parentElement.parentElement.getAttribute('style') + var propertyIndex = styleString.indexOf('background-color'); + if (propertyIndex !== -1) { + var startIndex = styleString.indexOf(':', propertyIndex) + 1; + var endIndex = styleString.indexOf(';', startIndex); + if (endIndex === -1) { + endIndex = styleString.length; + } + } + var propertyIndexTextcolor = styleString.indexOf('text-color'); + var startIndexTextcolor = styleString.indexOf(':', propertyIndexTextcolor) + 1; + var endIndexTextcolor = styleString.indexOf(';', startIndexTextcolor); + var action = this.env.model.actionService.doAction({ + type: 'ir.actions.act_window', + res_model: 'sticky.notes.update', + view_mode: 'form', + view_type: 'form', + views: [[false, 'form']], + target: 'new', + context: { + 'default_background_color': (styleString.substring(startIndex, endIndex)).trim(), + 'default_text_color': (styleString.substring(startIndexTextcolor, endIndexTextcolor)).trim(), + 'default_heading':heading, + 'default_note':notes, + 'default_prev_heading':heading, + 'default_prev_notes':notes, + 'view_id': view_id, + 'default_active_model': id, + 'default_active_model_name':res_model, + }, + }); + } +// delete the sticky notes + else if(ev.target.name == 'delete_notes'){ + var id = this.env.model.__bm_load_params__.res_id + var res_model = this.env.model.__bm_load_params__.modelName + var action = this.env.model.actionService.doAction({ + type: 'ir.actions.act_window', + res_model: 'sticky.notes.delete', + view_mode: 'form', + view_type: 'form', + views: [[false, 'form']], + target: 'new', + context: { + 'default_note':ev.target.parentElement.parentElement.textContent, + 'default_active_model': id, + 'default_active_model_name':res_model, + 'view_id': view_id, + }, + }); + this.env.model.load() + } + else{ + if (this.props.tag === "a") { + ev.preventDefault(); + } + if (this.props.onClick) { + return this.props.onClick(); + } + this.env.onClickViewButton({ + clickParams: this.clickParams, + getResParams: () => + pick(this.props.record, "context", "evalContext", "resModel", "resId", "resIds"), + beforeExecute: () => { + if (this.env[DROPDOWN]) { + this.env[DROPDOWN].close(); + } + }, + disableAction: this.props.disable, + enableAction: this.props.enable, + }); + } + } +}); diff --git a/form_sticky_notes/static/src/xml/ActionMenus.xml b/form_sticky_notes/static/src/xml/ActionMenus.xml new file mode 100644 index 000000000..4b82bcd64 --- /dev/null +++ b/form_sticky_notes/static/src/xml/ActionMenus.xml @@ -0,0 +1,14 @@ + + + + + +
+ +
+
+
+
\ No newline at end of file diff --git a/form_sticky_notes/views/ir_ui_view.xml b/form_sticky_notes/views/ir_ui_view.xml new file mode 100644 index 000000000..306dccc9b --- /dev/null +++ b/form_sticky_notes/views/ir_ui_view.xml @@ -0,0 +1,14 @@ + + + + + ir.ui.view + ir.ui.view.view.form + + + + + + + + \ No newline at end of file diff --git a/form_sticky_notes/views/res_users_views.xml b/form_sticky_notes/views/res_users_views.xml new file mode 100644 index 000000000..93c2110f8 --- /dev/null +++ b/form_sticky_notes/views/res_users_views.xml @@ -0,0 +1,19 @@ + + + + + res.users.view.form.inherit.form.sticky.notes + + res.users + + + + +
+

%s

+
%s
+
""" % ( + self.color, self.text_color, + str(self.active_model) + str(uuid4())[7:-18], + self.active_model, self.text_color, self.heading, + self.text_color, + self.note)) + view_data = { + 'name': "Sticky Notes .{}".format(str(self.id)), + 'type': 'kanban', + 'model': self.active_model_name, + 'priority': 1, + 'inherit_id': views.id, + 'mode': 'extension', + 'sticky_identification_number': str(self.id), + 'arch_base': arch.encode('utf-8') + } + self.env["ir.ui.view"].create(view_data) + return { + 'type': 'ir.actions.client', + 'tag': 'reload', + } + else: + base_arch = (""" +
+ """) + view_data = { + 'name': "", + 'type': 'kanban', + 'model': self.active_model_name, + 'priority': 1, + 'inherit_id': views.id, + 'mode': 'extension', + 'sticky_identification_number': str(self.id), + 'arch_base': base_arch.encode('utf-8') + } + self.env["ir.ui.view"].create(view_data) + arch = (""" + + """ % ( + self.color, self.text_color, + str(self.active_model) + str(uuid4())[7:-18], + self.active_model, self.text_color, self.heading, + self.text_color, + self.note)) + view_data = { + 'name': "Sticky Notes .{}".format(str(self.id)), + 'type': 'kanban', + 'model': self.active_model_name, + 'priority': 1, + 'inherit_id': views.id, + 'mode': 'extension', + 'sticky_identification_number': str(self.id), + 'arch_base': arch.encode('utf-8') + } + self.env["ir.ui.view"].create(view_data) + return { + 'type': 'ir.actions.client', + 'tag': 'reload', + } diff --git a/form_sticky_notes/wizard/sticky_notes_delete.py b/form_sticky_notes/wizard/sticky_notes_delete.py new file mode 100644 index 000000000..ef51b1d04 --- /dev/null +++ b/form_sticky_notes/wizard/sticky_notes_delete.py @@ -0,0 +1,60 @@ +"""Sticky notes""" +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class StickyNotesDelete(models.TransientModel): + """This is ued to confirm the note to be deleted or not.""" + _name = 'sticky.notes.delete' + _description = 'Sticky notes delete wizard' + + color = fields.Char(string='Color', default='Yellow', + help='Color of the note') + note = fields.Text(string='Note', help='The note that we want to stick') + active_model = fields.Integer(string='Id', help='The current record id') + active_model_name = fields.Char(string='Active Model name', + help='Current records model name') + active_view = fields.Integer(string='Active View Id', + help='Current records view id') + + def action_delete_notes(self): + """This is used to delete the note""" + record_view = self.env['ir.ui.view'].browse( + self.env.context.get('view_id')) + for rec in record_view.inherit_children_ids: + stick_notes = rec.name.split('.')[0] + if stick_notes.strip() == 'Sticky Notes': + arch_note = rec.arch.split('')[0].split('>')[1] + arch_heading = rec.arch.split('')[0].split('>')[1] + note_trim = self.note.replace(" ", "") + heading_note = arch_heading+arch_note + heading_note_trim = heading_note.replace(" ", "") + if note_trim.strip() == heading_note_trim.strip(): + stick_note_view = self.env['ir.ui.view'].browse( + self.env.context['view_id']).inherit_children_ids.filtered( + lambda l: l.name == rec.name.strip()) + stick_note_view.unlink() + return { + 'type': 'ir.actions.client', + 'tag': 'reload', + } diff --git a/form_sticky_notes/wizard/sticky_notes_delete_views.xml b/form_sticky_notes/wizard/sticky_notes_delete_views.xml new file mode 100644 index 000000000..477de3c75 --- /dev/null +++ b/form_sticky_notes/wizard/sticky_notes_delete_views.xml @@ -0,0 +1,32 @@ + + + + + Sticky Notes Deletion + ir.actions.act_window + sticky.notes.delete + form + new + + + sticky.notes.delete.view.form + sticky.notes.delete + +
+ +
+ Do you want to delete the note? +
+
+
+
+
+
+
+
+ diff --git a/form_sticky_notes/wizard/sticky_notes_update.py b/form_sticky_notes/wizard/sticky_notes_update.py new file mode 100644 index 000000000..85dcf4287 --- /dev/null +++ b/form_sticky_notes/wizard/sticky_notes_update.py @@ -0,0 +1,100 @@ +"""Sticky notes""" +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from uuid import uuid4 +from odoo import fields, models + + +class StickyNotesUpdate(models.TransientModel): + """This is used to update the sticky notes""" + _name = 'sticky.notes.update' + _description = 'Sticky notes update wizard' + + background_color = fields.Char(string='Background Color', + help="Color of notes") + text_color = fields.Char(string='Text Color', + help="Color of Text") + + note = fields.Text(string='Note', help="Text for the sticky note", + required=True) + heading = fields.Text(string='Heading', help="Heading of the sticky notes", + required=True) + active_model = fields.Integer(string='Id', help="The active model id") + active_model_name = fields.Char(string='Active Model name', + help="Active model name of the note") + active_view = fields.Integer(string='Active View Id', + help="Active view id of the note") + prev_heading = fields.Text(string='Prev Heading', help="previous heading " + "of the sticky note") + prev_notes = fields.Text(string='Prev notes', help="Previous notes of " + "sticky note") + + def action_update_notes(self): + """This is used to update the edited text to the sticky notes""" + record_view = self.env['ir.ui.view'].browse( + self.env.context.get('view_id')) + for rec in record_view.inherit_children_ids: + stick_notes = rec.name.split('.')[0] + if stick_notes.strip() == 'Sticky Notes': + arch_note = \ + rec.arch.split('')[0].split('>')[1] + arch_heading = \ + rec.arch.split('')[0].split('>')[1] + current_record = (self.prev_heading + self.prev_notes).replace( + " ", "") + rec_record = (arch_heading + arch_note).replace(" ", "") + if current_record == rec_record: + rec.unlink() + views = self.env['ir.ui.view'].browse( + self.env.context['view_id']) + arch = (""" + + """ % ( + self.background_color, self.text_color, + str(self.active_model) + str(uuid4())[7:-18], + self.active_model, self.text_color, self.heading, + self.text_color, + self.note)) + + view_data = { + 'name': "Sticky Notes .{}".format(str(self.id)), + 'type': 'kanban', + 'model': self.active_model_name, + 'priority': 1, + 'inherit_id': views.id, + 'mode': 'extension', + 'sticky_identification_number': str(self.id), + 'arch_base': arch.encode('utf-8') + } + self.env["ir.ui.view"].create(view_data) + return { + 'type': 'ir.actions.client', + 'tag': 'reload', + } diff --git a/form_sticky_notes/wizard/sticky_notes_update_views.xml b/form_sticky_notes/wizard/sticky_notes_update_views.xml new file mode 100644 index 000000000..0b2897fb7 --- /dev/null +++ b/form_sticky_notes/wizard/sticky_notes_update_views.xml @@ -0,0 +1,35 @@ + + + + + Sticky Notes Update + ir.actions.act_window + sticky.notes.update + form + new + + + sticky.notes.update.view.form + sticky.notes.update + +
+ + + + + + + + + + +
+
+
+
+
+
diff --git a/form_sticky_notes/wizard/sticky_notes_views.xml b/form_sticky_notes/wizard/sticky_notes_views.xml new file mode 100644 index 000000000..ca22bbd2d --- /dev/null +++ b/form_sticky_notes/wizard/sticky_notes_views.xml @@ -0,0 +1,39 @@ + + + + + Sticky Notes + ir.actions.act_window + sticky.notes + form + new + + + sticky.notes.create + sticky.notes + +
+ + + + + + + + + + + + + + +
+
+
+