diff --git a/form_sticky_notes/README.rst b/form_sticky_notes/README.rst deleted file mode 100644 index 4ca7ab99a..000000000 --- a/form_sticky_notes/README.rst +++ /dev/null @@ -1,48 +0,0 @@ -.. 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 deleted file mode 100644 index e9236f9f1..000000000 --- a/form_sticky_notes/__init__.py +++ /dev/null @@ -1,32 +0,0 @@ -# -*- 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 deleted file mode 100644 index 628ae8457..000000000 --- a/form_sticky_notes/__manifest__.py +++ /dev/null @@ -1,57 +0,0 @@ -# -*- 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 deleted file mode 100644 index 3bc5c5af4..000000000 --- a/form_sticky_notes/doc/RELEASE_NOTES.md +++ /dev/null @@ -1,5 +0,0 @@ -## 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 deleted file mode 100644 index 1228d719d..000000000 --- a/form_sticky_notes/models/__init__.py +++ /dev/null @@ -1,25 +0,0 @@ -"""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 deleted file mode 100644 index a7cbbe748..000000000 --- a/form_sticky_notes/models/ir_ui_view.py +++ /dev/null @@ -1,31 +0,0 @@ -"""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 deleted file mode 100644 index 7b9e93469..000000000 --- a/form_sticky_notes/models/res_users.py +++ /dev/null @@ -1,39 +0,0 @@ -"""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 deleted file mode 100644 index 4e1089fea..000000000 --- a/form_sticky_notes/models/stick_notes.py +++ /dev/null @@ -1,40 +0,0 @@ -"""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 deleted file mode 100644 index 804e1cccc..000000000 --- a/form_sticky_notes/security/ir.model.access.csv +++ /dev/null @@ -1,5 +0,0 @@ -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 deleted file mode 100644 index c8e85f51d..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/check.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/icons/chevron.png b/form_sticky_notes/static/description/assets/icons/chevron.png deleted file mode 100644 index 2089293d6..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/chevron.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/icons/cogs.png b/form_sticky_notes/static/description/assets/icons/cogs.png deleted file mode 100644 index 95d0bad62..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/cogs.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/icons/consultation.png b/form_sticky_notes/static/description/assets/icons/consultation.png deleted file mode 100644 index 8319d4baa..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/consultation.png and /dev/null 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 deleted file mode 100644 index a9385ff13..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/ecom-black.png and /dev/null 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 deleted file mode 100644 index 3eb09b27b..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/education-black.png and /dev/null 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 deleted file mode 100644 index 130f613be..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/hotel-black.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/icons/license.png b/form_sticky_notes/static/description/assets/icons/license.png deleted file mode 100644 index a5869797e..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/license.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/icons/lifebuoy.png b/form_sticky_notes/static/description/assets/icons/lifebuoy.png deleted file mode 100644 index 658d56ccc..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/lifebuoy.png and /dev/null 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 deleted file mode 100644 index 697eb0e9f..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/manufacturing-black.png and /dev/null 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 deleted file mode 100644 index 8f40aab85..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/modules/5.gif and /dev/null 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 deleted file mode 100644 index 618e3e6c4..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/modules/barcode.png and /dev/null 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 deleted file mode 100644 index 991fc77ec..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/modules/fatoorah.png and /dev/null 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 deleted file mode 100644 index ed11bd818..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/modules/integration_biometric.png and /dev/null 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 deleted file mode 100644 index 1d2238b80..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/modules/product_brand.png and /dev/null 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 deleted file mode 100644 index 163485cfd..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/modules/website_cart.png and /dev/null 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 deleted file mode 100644 index 97c0f90c1..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/pos-black.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/icons/puzzle.png b/form_sticky_notes/static/description/assets/icons/puzzle.png deleted file mode 100644 index 65cf854e7..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/puzzle.png and /dev/null 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 deleted file mode 100644 index 4a35eb939..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/restaurant-black.png and /dev/null 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 deleted file mode 100644 index 301ab51cb..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/service-black.png and /dev/null 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 deleted file mode 100644 index 9398ba2f1..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/trading-black.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/icons/training.png b/form_sticky_notes/static/description/assets/icons/training.png deleted file mode 100644 index 884ca024d..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/training.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/icons/update.png b/form_sticky_notes/static/description/assets/icons/update.png deleted file mode 100644 index ecbc5a01a..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/update.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/icons/user.png b/form_sticky_notes/static/description/assets/icons/user.png deleted file mode 100644 index 6ffb23d9f..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/user.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/icons/wrench.png b/form_sticky_notes/static/description/assets/icons/wrench.png deleted file mode 100644 index 6c04dea0f..000000000 Binary files a/form_sticky_notes/static/description/assets/icons/wrench.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/misc/categories.png b/form_sticky_notes/static/description/assets/misc/categories.png deleted file mode 100644 index bedf1e0b1..000000000 Binary files a/form_sticky_notes/static/description/assets/misc/categories.png and /dev/null 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 deleted file mode 100644 index 42caf24b9..000000000 Binary files a/form_sticky_notes/static/description/assets/misc/check-box.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/misc/compass.png b/form_sticky_notes/static/description/assets/misc/compass.png deleted file mode 100644 index d5fed8faa..000000000 Binary files a/form_sticky_notes/static/description/assets/misc/compass.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/misc/corporate.png b/form_sticky_notes/static/description/assets/misc/corporate.png deleted file mode 100644 index 2eb13edbf..000000000 Binary files a/form_sticky_notes/static/description/assets/misc/corporate.png and /dev/null 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 deleted file mode 100644 index 79efc72ed..000000000 Binary files a/form_sticky_notes/static/description/assets/misc/customer-support.png and /dev/null 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 deleted file mode 100644 index cc3cc0ccf..000000000 Binary files a/form_sticky_notes/static/description/assets/misc/cybrosys-logo.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/misc/features.png b/form_sticky_notes/static/description/assets/misc/features.png deleted file mode 100644 index b41769f77..000000000 Binary files a/form_sticky_notes/static/description/assets/misc/features.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/misc/logo.png b/form_sticky_notes/static/description/assets/misc/logo.png deleted file mode 100644 index 478462d3e..000000000 Binary files a/form_sticky_notes/static/description/assets/misc/logo.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/misc/pictures.png b/form_sticky_notes/static/description/assets/misc/pictures.png deleted file mode 100644 index 56d255fe9..000000000 Binary files a/form_sticky_notes/static/description/assets/misc/pictures.png and /dev/null 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 deleted file mode 100644 index 426e05244..000000000 Binary files a/form_sticky_notes/static/description/assets/misc/pie-chart.png and /dev/null 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 deleted file mode 100644 index 730984a06..000000000 Binary files a/form_sticky_notes/static/description/assets/misc/right-arrow.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/misc/star.png b/form_sticky_notes/static/description/assets/misc/star.png deleted file mode 100644 index 2eb9ab29f..000000000 Binary files a/form_sticky_notes/static/description/assets/misc/star.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/misc/support.png b/form_sticky_notes/static/description/assets/misc/support.png deleted file mode 100644 index 4f18b8b82..000000000 Binary files a/form_sticky_notes/static/description/assets/misc/support.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/misc/whatsapp.png b/form_sticky_notes/static/description/assets/misc/whatsapp.png deleted file mode 100644 index d513a5356..000000000 Binary files a/form_sticky_notes/static/description/assets/misc/whatsapp.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/modules/5.gif b/form_sticky_notes/static/description/assets/modules/5.gif deleted file mode 100644 index 2a5f8e659..000000000 Binary files a/form_sticky_notes/static/description/assets/modules/5.gif and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/modules/barcode.png b/form_sticky_notes/static/description/assets/modules/barcode.png deleted file mode 100644 index 618e3e6c4..000000000 Binary files a/form_sticky_notes/static/description/assets/modules/barcode.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/modules/fatoorah.png b/form_sticky_notes/static/description/assets/modules/fatoorah.png deleted file mode 100644 index 991fc77ec..000000000 Binary files a/form_sticky_notes/static/description/assets/modules/fatoorah.png and /dev/null 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 deleted file mode 100644 index ed11bd818..000000000 Binary files a/form_sticky_notes/static/description/assets/modules/integration_biometric.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/modules/product.png b/form_sticky_notes/static/description/assets/modules/product.png deleted file mode 100644 index 1d2238b80..000000000 Binary files a/form_sticky_notes/static/description/assets/modules/product.png and /dev/null 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 deleted file mode 100644 index 1d2238b80..000000000 Binary files a/form_sticky_notes/static/description/assets/modules/product_brand.png and /dev/null 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 deleted file mode 100644 index 163485cfd..000000000 Binary files a/form_sticky_notes/static/description/assets/modules/website_cart.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/1.png b/form_sticky_notes/static/description/assets/screenshots/1.png deleted file mode 100644 index ef7890468..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/1.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/10.png b/form_sticky_notes/static/description/assets/screenshots/10.png deleted file mode 100644 index 80366e347..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/10.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/11.png b/form_sticky_notes/static/description/assets/screenshots/11.png deleted file mode 100644 index 6613e4af9..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/11.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/2.png b/form_sticky_notes/static/description/assets/screenshots/2.png deleted file mode 100644 index c62e21b37..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/2.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/3.png b/form_sticky_notes/static/description/assets/screenshots/3.png deleted file mode 100644 index da07ef142..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/3.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/4.png b/form_sticky_notes/static/description/assets/screenshots/4.png deleted file mode 100644 index 6a7d38d66..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/4.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/5.png b/form_sticky_notes/static/description/assets/screenshots/5.png deleted file mode 100644 index b180fc57c..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/5.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/6.png b/form_sticky_notes/static/description/assets/screenshots/6.png deleted file mode 100644 index f27673d12..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/6.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/7.png b/form_sticky_notes/static/description/assets/screenshots/7.png deleted file mode 100644 index fd4aa98ef..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/7.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/8.png b/form_sticky_notes/static/description/assets/screenshots/8.png deleted file mode 100644 index 66039f8d5..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/8.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/9.png b/form_sticky_notes/static/description/assets/screenshots/9.png deleted file mode 100644 index 5275147c0..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/9.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/hero.gif b/form_sticky_notes/static/description/assets/screenshots/hero.gif deleted file mode 100644 index 707c08928..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/hero.gif and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky1.png b/form_sticky_notes/static/description/assets/screenshots/sticky1.png deleted file mode 100644 index 0589f5895..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/sticky1.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky2.png b/form_sticky_notes/static/description/assets/screenshots/sticky2.png deleted file mode 100644 index 2eaa0f54d..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/sticky2.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky3.png b/form_sticky_notes/static/description/assets/screenshots/sticky3.png deleted file mode 100644 index 10a5642e2..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/sticky3.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky4.png b/form_sticky_notes/static/description/assets/screenshots/sticky4.png deleted file mode 100644 index 9ef7eb425..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/sticky4.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky5.png b/form_sticky_notes/static/description/assets/screenshots/sticky5.png deleted file mode 100644 index 16867672a..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/sticky5.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky6.png b/form_sticky_notes/static/description/assets/screenshots/sticky6.png deleted file mode 100644 index 017687cf7..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/sticky6.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky7.png b/form_sticky_notes/static/description/assets/screenshots/sticky7.png deleted file mode 100644 index 96707fbaf..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/sticky7.png and /dev/null differ diff --git a/form_sticky_notes/static/description/assets/screenshots/sticky8.png b/form_sticky_notes/static/description/assets/screenshots/sticky8.png deleted file mode 100644 index 4dcf95399..000000000 Binary files a/form_sticky_notes/static/description/assets/screenshots/sticky8.png and /dev/null differ diff --git a/form_sticky_notes/static/description/banner.png b/form_sticky_notes/static/description/banner.png deleted file mode 100644 index 36d24e67a..000000000 Binary files a/form_sticky_notes/static/description/banner.png and /dev/null differ diff --git a/form_sticky_notes/static/description/icon.png b/form_sticky_notes/static/description/icon.png deleted file mode 100644 index 06ef4d559..000000000 Binary files a/form_sticky_notes/static/description/icon.png and /dev/null differ diff --git a/form_sticky_notes/static/description/index.html b/form_sticky_notes/static/description/index.html deleted file mode 100644 index 476ec2927..000000000 --- a/form_sticky_notes/static/description/index.html +++ /dev/null @@ -1,690 +0,0 @@ -
- -
- -
-
- 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 deleted file mode 100644 index be11d4b92..000000000 --- a/form_sticky_notes/static/src/js/ActionMenus.js +++ /dev/null @@ -1,28 +0,0 @@ -/** @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 deleted file mode 100644 index 13fadd705..000000000 --- a/form_sticky_notes/static/src/js/ViewButton.js +++ /dev/null @@ -1,93 +0,0 @@ -/** @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 deleted file mode 100644 index 4b82bcd64..000000000 --- a/form_sticky_notes/static/src/xml/ActionMenus.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - -
- -
-
-
-
\ 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 deleted file mode 100644 index 306dccc9b..000000000 --- a/form_sticky_notes/views/ir_ui_view.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - 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 deleted file mode 100644 index 93c2110f8..000000000 --- a/form_sticky_notes/views/res_users_views.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - 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 deleted file mode 100644 index ef51b1d04..000000000 --- a/form_sticky_notes/wizard/sticky_notes_delete.py +++ /dev/null @@ -1,60 +0,0 @@ -"""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 deleted file mode 100644 index 477de3c75..000000000 --- a/form_sticky_notes/wizard/sticky_notes_delete_views.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - 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 deleted file mode 100644 index 85dcf4287..000000000 --- a/form_sticky_notes/wizard/sticky_notes_update.py +++ /dev/null @@ -1,100 +0,0 @@ -"""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 deleted file mode 100644 index 0b2897fb7..000000000 --- a/form_sticky_notes/wizard/sticky_notes_update_views.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - 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 deleted file mode 100644 index ca22bbd2d..000000000 --- a/form_sticky_notes/wizard/sticky_notes_views.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - Sticky Notes - ir.actions.act_window - sticky.notes - form - new - - - sticky.notes.create - sticky.notes - -
- - - - - - - - - - - - - - -
-
-
-