Browse Source

Jan 30 [UPDT] : Updated 'activity_dashboard_mngmnt'

pull/267/merge
AjmalCybro 1 year ago
parent
commit
10be55e440
  1. 2
      activity_dashboard_mngmnt/__manifest__.py
  2. 6
      activity_dashboard_mngmnt/doc/RELEASE_NOTES.md
  3. 1
      activity_dashboard_mngmnt/models/mail_activity.py

2
activity_dashboard_mngmnt/__manifest__.py

@ -22,7 +22,7 @@
################################################################################### ###################################################################################
{ {
'name': 'Activity Management', 'name': 'Activity Management',
'version': '16.0.1.1.0', 'version': '16.0.1.1.1',
'category': 'Tools', 'category': 'Tools',
'summary': 'Advance Activity Management and Dashboard View.', 'summary': 'Advance Activity Management and Dashboard View.',
'author': 'Cybrosys Techno Solutions', 'author': 'Cybrosys Techno Solutions',

6
activity_dashboard_mngmnt/doc/RELEASE_NOTES.md

@ -14,3 +14,9 @@
- User can see their own activity. - User can see their own activity.
- Admin can see all activity. - Admin can see all activity.
- Performance updates. - 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.
-

1
activity_dashboard_mngmnt/models/mail_activity.py

@ -151,6 +151,7 @@ class MailActivity(models.Model):
for rec in self: for rec in self:
rec.state = 'done' rec.state = 'done'
rec.active = False rec.active = False
self.unlink()
return messages, next_activities return messages, next_activities
@api.model @api.model

Loading…
Cancel
Save