diff --git a/activity_checklist/README.rst b/activity_checklist/README.rst new file mode 100644 index 000000000..b7fd48d88 --- /dev/null +++ b/activity_checklist/README.rst @@ -0,0 +1,52 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-blue.svg + :target: https://www.gnu.org/licenses/lgpl-3.0.en.html + :alt: License: LGPL-3 + +Activity Checklist +================== +* Create To do List Using Activities + +Configuration +============= +- www.odoo.com/documentation/17.0/setup/install.html +- Install our custom addon + +License +------- +Lesser General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0.en.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: + (V14) Mily Shajan, + (V15) Neethu U M, + (V16) Viswanth k, + (V17) Arjun S + Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +---------- +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +------------------- +HTML Description: ``__ diff --git a/activity_checklist/__init__.py b/activity_checklist/__init__.py new file mode 100644 index 000000000..1bbab9176 --- /dev/null +++ b/activity_checklist/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Arjun S(odoo@cybrosys.com) +# +# 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 diff --git a/activity_checklist/__manifest__.py b/activity_checklist/__manifest__.py new file mode 100644 index 000000000..30276190a --- /dev/null +++ b/activity_checklist/__manifest__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Arjun S(odoo@cybrosys.com) +# +# 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': "Activity Checklist", + 'version': '17.0.1.0.0', + 'category': 'Extra Tools', + 'summary': """Create Todo List Using Activities""", + 'description': """Scheduling Activities For each model and General + Activities.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'live_test_url': 'https://youtu.be/LGiDWPFdkbks', + 'depends': ['sale','mail'], + 'data': [ + 'security/todo_list_rules.xml', + 'security/ir.model.access.csv', + 'data/ir_cron_data.xml', + 'data/activity_general_data.xml', + 'views/mail_activity_views.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': True, +} diff --git a/activity_checklist/data/activity_general_data.xml b/activity_checklist/data/activity_general_data.xml new file mode 100644 index 000000000..122e6013a --- /dev/null +++ b/activity_checklist/data/activity_general_data.xml @@ -0,0 +1,9 @@ + + + + + + Activity + + + diff --git a/activity_checklist/data/ir_cron_data.xml b/activity_checklist/data/ir_cron_data.xml new file mode 100644 index 000000000..75fc35d73 --- /dev/null +++ b/activity_checklist/data/ir_cron_data.xml @@ -0,0 +1,16 @@ + + + + + + Recurring Todo Activity + + code + model.action_date() + + 1 + days + -1 + + + diff --git a/activity_checklist/doc/RELEASE_NOTES.md b/activity_checklist/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..c1a29f2af --- /dev/null +++ b/activity_checklist/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 31.07.2024 +#### Version 17.0.1.0.0 +##### ADD +- Initial Commit for Activity Checklist diff --git a/activity_checklist/models/__init__.py b/activity_checklist/models/__init__.py new file mode 100644 index 000000000..0df4d0f59 --- /dev/null +++ b/activity_checklist/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Arjun S(odoo@cybrosys.com) +# +# 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 mail_activity diff --git a/activity_checklist/models/mail_activity.py b/activity_checklist/models/mail_activity.py new file mode 100644 index 000000000..e180e519c --- /dev/null +++ b/activity_checklist/models/mail_activity.py @@ -0,0 +1,159 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Arjun S(odoo@cybrosys.com) +# +# 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 datetime import timedelta + +from odoo import api, fields, models +from odoo.tools import DEFAULT_SERVER_DATE_FORMAT + + +class MailActivity(models.Model): + """Creates the model mail.activity""" + _name = 'mail.activity' + _inherit = ['mail.activity', 'mail.thread'] + _rec_name = 'summary' + + date_deadline = fields.Date(string='Due Date', index=True, required=True, + default=fields.Date.context_today, + help="Deadline date") + user_id = fields.Many2one('res.users', string='User', index=True, + tracking=True, default=lambda self: self.env.user, + help="User of the activity") + res_model_id = fields.Many2one( + 'ir.model', string='Document Model', + index=True, ondelete='cascade', required=True, + help="Corresponding model", + default=lambda self: self.env.ref('activity_checklist.model_activity_general')) + res_id = fields.Many2oneReference(string='Related Document ID', index=True, + required=True, model_field='res_model', + help="ID of the related document", + default=lambda self: self.env.ref( + 'activity_checklist.general_activities', + False)) + priority = fields.Selection([ + ('0', 'Normal'), + ('1', 'Important'), + ('2', 'Very Important'), + ('3', 'Urgent'), + ], default='0', index=True, store=True, string="Priority", + help="Priority of the activity") + recurring = fields.Boolean(string="Recurring", + help="Whether the activity is recurring or not") + state = fields.Selection([ + ('today', 'Today'), + ('planned', 'Planned'), + ('done', 'Done'), + ('overdue', 'Expired'), + ('cancel', 'Cancelled'), ], string='State', + compute='_compute_state', store=True, help="State of the activity") + interval = fields.Selection( + [('Daily', 'Daily'), + ('Weekly', 'Weekly'), + ('Monthly', 'Monthly'), + ('Quarterly', 'Quarterly'), + ('Yearly', 'Yearly')], + string='Recurring Interval', help="Recurring interval of the activity") + new_date = fields.Date(string="Next Due Date", + help="Next due date of the activity") + + def action_done(self): + """Function done button""" + self.write({'state': 'done'}) + if self.recurring: + self.env['mail.activity'].create({ + 'res_id': self.res_id, + 'res_model_id': self.res_model_id.id, + 'summary': self.summary, + 'priority': self.priority, + 'date_deadline': self.new_date, + 'recurring': self.recurring, + 'interval': self.interval, + 'activity_type_id': self.activity_type_id.id, + 'new_date': self.get_date(), + 'user_id': self.user_id.id + }) + + def get_date(self): + """ function for get new due date on new record""" + date_deadline = self.new_date if self.new_date else self.date_deadline + new_date = False + if self.interval == 'Daily': + new_date = ( + date_deadline + timedelta(days=1)).strftime( + DEFAULT_SERVER_DATE_FORMAT) + elif self.interval == 'Weekly': + new_date = ( + date_deadline + timedelta(days=7)).strftime( + DEFAULT_SERVER_DATE_FORMAT) + elif self.interval == 'Monthly': + new_date = ( + date_deadline + timedelta(days=30)).strftime( + DEFAULT_SERVER_DATE_FORMAT) + elif self.interval == 'Quarterly': + new_date = ( + date_deadline + timedelta(days=90)).strftime( + DEFAULT_SERVER_DATE_FORMAT) + elif self.interval == 'Yearly': + new_date = ( + date_deadline + timedelta(days=365)).strftime( + DEFAULT_SERVER_DATE_FORMAT) + return new_date + + @api.onchange('interval', 'date_deadline') + def onchange_recurring(self): + """ function for show new due date""" + self.new_date = False + if self.recurring: + self.new_date = self.get_date() + + def action_date(self): + """ Function for automated actions for deadline""" + today = fields.date.today() + dates = self.env['mail.activity'].search( + [('state', 'in', ['today', 'planned']), + ('date_deadline', '=', today), + ('recurring', '=', True)]) + for rec in dates: + self.env['mail.activity'].create( + {'res_id': rec.res_id, + 'res_model_id': rec.res_model_id.id, + 'summary': rec.summary, + 'priority': rec.priority, + 'interval': rec.interval, + 'recurring': rec.recurring, + 'date_deadline': rec.new_date, + 'new_date': rec.get_date(), + 'activity_type_id': rec.activity_type_id.id, + 'user_id': rec.user_id.id + }) + rec.state = 'done' + + def action_cancel(self): + """ function for cancel button""" + return self.write({'state': 'cancel'}) + + +class ActivityGeneral(models.Model): + """Creates the model activity.general""" + _name = 'activity.general' + _inherit = ['mail.thread', 'mail.activity.mixin'] + + name = fields.Char(string='Name', help="Name of the activity") diff --git a/activity_checklist/security/ir.model.access.csv b/activity_checklist/security/ir.model.access.csv new file mode 100644 index 000000000..7d5cb40ff --- /dev/null +++ b/activity_checklist/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_activity_general_user,access.activity.general.user,model_activity_general,base.group_user,1,1,1,1 diff --git a/activity_checklist/security/todo_list_rules.xml b/activity_checklist/security/todo_list_rules.xml new file mode 100644 index 000000000..d46c54807 --- /dev/null +++ b/activity_checklist/security/todo_list_rules.xml @@ -0,0 +1,10 @@ + + + + + Personal Todo + + [('user_id','=',user.id)] + + + diff --git a/activity_checklist/static/description/assets/icons/capture (1).png b/activity_checklist/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/activity_checklist/static/description/assets/icons/capture (1).png differ diff --git a/activity_checklist/static/description/assets/icons/check.png b/activity_checklist/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/activity_checklist/static/description/assets/icons/check.png differ diff --git a/activity_checklist/static/description/assets/icons/chevron.png b/activity_checklist/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/activity_checklist/static/description/assets/icons/chevron.png differ diff --git a/activity_checklist/static/description/assets/icons/cogs.png b/activity_checklist/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/activity_checklist/static/description/assets/icons/cogs.png differ diff --git a/activity_checklist/static/description/assets/icons/consultation.png b/activity_checklist/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/activity_checklist/static/description/assets/icons/consultation.png differ diff --git a/activity_checklist/static/description/assets/icons/ecom-black.png b/activity_checklist/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/activity_checklist/static/description/assets/icons/ecom-black.png differ diff --git a/activity_checklist/static/description/assets/icons/education-black.png b/activity_checklist/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/activity_checklist/static/description/assets/icons/education-black.png differ diff --git a/activity_checklist/static/description/assets/icons/hotel-black.png b/activity_checklist/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/activity_checklist/static/description/assets/icons/hotel-black.png differ diff --git a/activity_checklist/static/description/assets/icons/img.png b/activity_checklist/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/activity_checklist/static/description/assets/icons/img.png differ diff --git a/activity_checklist/static/description/assets/icons/license.png b/activity_checklist/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/activity_checklist/static/description/assets/icons/license.png differ diff --git a/activity_checklist/static/description/assets/icons/lifebuoy.png b/activity_checklist/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/activity_checklist/static/description/assets/icons/lifebuoy.png differ diff --git a/activity_checklist/static/description/assets/icons/manufacturing-black.png b/activity_checklist/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/activity_checklist/static/description/assets/icons/manufacturing-black.png differ diff --git a/activity_checklist/static/description/assets/icons/photo-capture.png b/activity_checklist/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/activity_checklist/static/description/assets/icons/photo-capture.png differ diff --git a/activity_checklist/static/description/assets/icons/pos-black.png b/activity_checklist/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/activity_checklist/static/description/assets/icons/pos-black.png differ diff --git a/activity_checklist/static/description/assets/icons/puzzle.png b/activity_checklist/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/activity_checklist/static/description/assets/icons/puzzle.png differ diff --git a/activity_checklist/static/description/assets/icons/restaurant-black.png b/activity_checklist/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/activity_checklist/static/description/assets/icons/restaurant-black.png differ diff --git a/activity_checklist/static/description/assets/icons/service-black.png b/activity_checklist/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/activity_checklist/static/description/assets/icons/service-black.png differ diff --git a/activity_checklist/static/description/assets/icons/trading-black.png b/activity_checklist/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/activity_checklist/static/description/assets/icons/trading-black.png differ diff --git a/activity_checklist/static/description/assets/icons/training.png b/activity_checklist/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/activity_checklist/static/description/assets/icons/training.png differ diff --git a/activity_checklist/static/description/assets/icons/update.png b/activity_checklist/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/activity_checklist/static/description/assets/icons/update.png differ diff --git a/activity_checklist/static/description/assets/icons/user.png b/activity_checklist/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/activity_checklist/static/description/assets/icons/user.png differ diff --git a/activity_checklist/static/description/assets/icons/wrench.png b/activity_checklist/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/activity_checklist/static/description/assets/icons/wrench.png differ diff --git a/activity_checklist/static/description/assets/misc/Cybrosys R.png b/activity_checklist/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/activity_checklist/static/description/assets/misc/Cybrosys R.png differ diff --git a/activity_checklist/static/description/assets/misc/email.svg b/activity_checklist/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/activity_checklist/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/activity_checklist/static/description/assets/misc/phone.svg b/activity_checklist/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/activity_checklist/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/activity_checklist/static/description/assets/misc/star (1) 2.svg b/activity_checklist/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/activity_checklist/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/activity_checklist/static/description/assets/misc/support (1) 1.svg b/activity_checklist/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/activity_checklist/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/activity_checklist/static/description/assets/misc/support-email.svg b/activity_checklist/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/activity_checklist/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/activity_checklist/static/description/assets/misc/tick-mark.svg b/activity_checklist/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/activity_checklist/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/activity_checklist/static/description/assets/misc/whatsapp 1.svg b/activity_checklist/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/activity_checklist/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/activity_checklist/static/description/assets/misc/whatsapp.svg b/activity_checklist/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/activity_checklist/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/activity_checklist/static/description/assets/modules/m1.png b/activity_checklist/static/description/assets/modules/m1.png new file mode 100644 index 000000000..10c9f3807 Binary files /dev/null and b/activity_checklist/static/description/assets/modules/m1.png differ diff --git a/activity_checklist/static/description/assets/modules/m2.jpg b/activity_checklist/static/description/assets/modules/m2.jpg new file mode 100644 index 000000000..d05b1744e Binary files /dev/null and b/activity_checklist/static/description/assets/modules/m2.jpg differ diff --git a/activity_checklist/static/description/assets/modules/m3.png b/activity_checklist/static/description/assets/modules/m3.png new file mode 100644 index 000000000..3bedf7981 Binary files /dev/null and b/activity_checklist/static/description/assets/modules/m3.png differ diff --git a/activity_checklist/static/description/assets/modules/m4.jpg b/activity_checklist/static/description/assets/modules/m4.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/activity_checklist/static/description/assets/modules/m4.jpg differ diff --git a/activity_checklist/static/description/assets/modules/m5.jpg b/activity_checklist/static/description/assets/modules/m5.jpg new file mode 100644 index 000000000..e87fd121b Binary files /dev/null and b/activity_checklist/static/description/assets/modules/m5.jpg differ diff --git a/activity_checklist/static/description/assets/modules/m6.png b/activity_checklist/static/description/assets/modules/m6.png new file mode 100644 index 000000000..164eb62c7 Binary files /dev/null and b/activity_checklist/static/description/assets/modules/m6.png differ diff --git a/activity_checklist/static/description/assets/screenshots/1.png b/activity_checklist/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..580c21643 Binary files /dev/null and b/activity_checklist/static/description/assets/screenshots/1.png differ diff --git a/activity_checklist/static/description/assets/screenshots/2.png b/activity_checklist/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..41bb56977 Binary files /dev/null and b/activity_checklist/static/description/assets/screenshots/2.png differ diff --git a/activity_checklist/static/description/assets/screenshots/3.png b/activity_checklist/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..b9df1ad59 Binary files /dev/null and b/activity_checklist/static/description/assets/screenshots/3.png differ diff --git a/activity_checklist/static/description/assets/screenshots/4.png b/activity_checklist/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..a13da4049 Binary files /dev/null and b/activity_checklist/static/description/assets/screenshots/4.png differ diff --git a/activity_checklist/static/description/assets/screenshots/5.png b/activity_checklist/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..f4853fc12 Binary files /dev/null and b/activity_checklist/static/description/assets/screenshots/5.png differ diff --git a/activity_checklist/static/description/assets/screenshots/hero.gif b/activity_checklist/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..0280ffd5c Binary files /dev/null and b/activity_checklist/static/description/assets/screenshots/hero.gif differ diff --git a/activity_checklist/static/description/banner.jpg b/activity_checklist/static/description/banner.jpg new file mode 100644 index 000000000..a8262aba2 Binary files /dev/null and b/activity_checklist/static/description/banner.jpg differ diff --git a/activity_checklist/static/description/icon.png b/activity_checklist/static/description/icon.png new file mode 100644 index 000000000..4885ec7ce Binary files /dev/null and b/activity_checklist/static/description/icon.png differ diff --git a/activity_checklist/static/description/index.html b/activity_checklist/static/description/index.html new file mode 100644 index 000000000..18e220242 --- /dev/null +++ b/activity_checklist/static/description/index.html @@ -0,0 +1,739 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Activity Checklist

+

+ Create Todo List Using Activities +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Schedule general ToDo activities

+
+
+
+
+
+
+ +
+
+

+ Recurring option for each activity

+
+
+
+
+
+
+ +
+
+

+ Prioritize each activity

+
+
+
+
+
+
+ +
+
+

+ Activities can be filtered based on created + user

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

+ Default Kanban view of the activity + menu

+
+
+
+
+
+
+ +
+
+

+ Color highlighted details tree view helping + you to visualize activities which are + overdue and due today

+
+
+
+
+
+
+ +
+
+

+ Activity prioritization and description + tab

+
+
+
+
+
+
+ +
+
+

+ Activity filtering options based on creator, + and due date

+
+
+
+ +
+
+
+
    +
  • + Schedule general + ToDo activities +
  • +
  • + Recurring option + for each activity +
  • +
  • + Prioritize each + activity +
  • +
  • + Activities can + be filtered based on created user +
  • + +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:31st July 2024 +
+

+ Initial Commit for Activity Checklist +

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

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

Odoo + Customization

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

Odoo + Implementation

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

Odoo + Support

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

Hire + Odoo Developer

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

Odoo + Integration

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

Odoo + Migration

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

Odoo + Consultancy

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

Odoo + Implementation

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

Odoo + Licensing Consultancy

+
+
+
+
+
+
+

+ Our Industries

+ +
+
+
+
+
+
+ +

Trading

+

Easily procure and sell your products

+
+
+
+
+ +

POS

+

Easy configuration and convivial experience

+
+
+
+
+ +

+ Education

+

A platform for educational management

+
+
+
+
+ +

+ Manufacturing

+

Plan, track and schedule your operations

+
+
+
+
+ +

E-commerce & + Website

+

Mobile friendly, awe-inspiring product pages

+
+
+
+
+ +

Service + Management

+

Keep track of services and invoice

+
+
+
+
+ +

+ Restaurant

+

Run your bar or restaurant methodically

+
+
+
+
+ +

Hotel + Management

+

An all-inclusive hotel management application

+
+
+
+
+
+
+

+ Support

+
+
+
+
+
+
+
+ +
+ Need + Help? +

Got + questions or need help? Get in touch.

+
odoo@cybrosys.com +
+
+
+
+
+
+
+
+ +
+ WhatsApp +

Say hi to + us on WhatsApp!

+
+91 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/activity_checklist/views/mail_activity_views.xml b/activity_checklist/views/mail_activity_views.xml new file mode 100644 index 000000000..d6c307c17 --- /dev/null +++ b/activity_checklist/views/mail_activity_views.xml @@ -0,0 +1,224 @@ + + + + + mail.activity.view.search + mail.activity + + + + + + + + + + + + + + + + + + mail.activity.view.kanban + mail.activity + + + + +
+ +
+
+ + + +
+
+ +
+
+
+ +
+
+ +
+
+
+
+
+
+
+
+
+ + + mail.activity.view.tree + mail.activity + + + + + + + + + + + + + + mail.activity.view.form + mail.activity + +
+
+
+ + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+
+
+ + + Activity + mail.activity + kanban,tree,form + + + +

+ Create your ToDo List +

+
+
+ + + + kanban + + + + + + + tree + + + + + + + form + + + + + + Activity Types + mail.activity.type + tree,form + + + + + + +