diff --git a/activity_dashboard_mngmnt/__manifest__.py b/activity_dashboard_mngmnt/__manifest__.py index f4131d2a4..336b885f2 100644 --- a/activity_dashboard_mngmnt/__manifest__.py +++ b/activity_dashboard_mngmnt/__manifest__.py @@ -22,7 +22,7 @@ ################################################################################### { 'name': 'Activity Management', - 'version': '16.0.1.1.0', + 'version': '16.0.1.1.1', 'category': 'Tools', 'summary': 'Advance Activity Management and Dashboard View.', 'author': 'Cybrosys Techno Solutions', diff --git a/activity_dashboard_mngmnt/doc/RELEASE_NOTES.md b/activity_dashboard_mngmnt/doc/RELEASE_NOTES.md index 99747d014..10239c2d4 100644 --- a/activity_dashboard_mngmnt/doc/RELEASE_NOTES.md +++ b/activity_dashboard_mngmnt/doc/RELEASE_NOTES.md @@ -14,3 +14,9 @@ - User can see their own activity. - Admin can see all activity. - Performance updates. + +#### 25.01.2024 +#### Version 16.0.1.1.1 +##### UPDT +- Fixed the issue in the chatter view - the activity stays there even after mark it done. +- \ No newline at end of file diff --git a/activity_dashboard_mngmnt/models/mail_activity.py b/activity_dashboard_mngmnt/models/mail_activity.py index d70e8faf4..fe3dca6ff 100644 --- a/activity_dashboard_mngmnt/models/mail_activity.py +++ b/activity_dashboard_mngmnt/models/mail_activity.py @@ -151,6 +151,7 @@ class MailActivity(models.Model): for rec in self: rec.state = 'done' rec.active = False + self.unlink() return messages, next_activities @api.model