[14.0][ADD] mail_activity_reply_creator

pull/1504/head
Ilyas 2023-03-22 15:43:03 +01:00 committed by Alessio Renda
parent 3ba6a27fc4
commit d39fc4d29d
7 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1 @@
from . import models

View File

@ -0,0 +1,11 @@
{
"name": "Mail Activity Reply Creator",
"summary": "Assign new to its creator",
"version": "14.0.1.0.0",
"category": "Social",
"website": "https://github.com/OCA/social",
"author": "Ilyas, Ooops, Odoo Community Association (OCA)",
"license": "AGPL-3",
"installable": True,
"depends": ["mail"],
}

View File

@ -0,0 +1 @@
from . import mail_activity

View File

@ -0,0 +1,39 @@
from odoo import api, models
class MailActivity(models.Model):
_inherit = "mail.activity"
@api.onchange("activity_type_id")
def _onchange_activity_type_id(self):
original_user_id = self.user_id
super(MailActivity, self)._onchange_activity_type_id()
if (
original_user_id != self.env.user
and not self.activity_type_id.default_user_id
):
# keep already set user
self.user_id = original_user_id
def action_feedback_schedule_next(self, feedback=False):
create_uid = self.create_uid.id
action = super().action_feedback_schedule_next()
action["context"]["source_activity_create_uid"] = create_uid
return action
@api.model
def default_get(self, fields):
res = super().default_get(fields)
if self._context.get("source_activity_create_uid") and not self._context.get(
"no_recursion"
):
default_activity_type_id = self.with_context(
no_recursion=True
)._default_activity_type_id()
if (
not default_activity_type_id
or not default_activity_type_id.default_user_id
):
# assign to prev. activity creator
res["user_id"] = self._context["source_activity_create_uid"]
return res

View File

@ -0,0 +1,3 @@
* Ooops404 <https://ooops404.com>
* Ilyas <irazor147@gmail.com>

View File

@ -0,0 +1,18 @@
This module aims to facilitate back-and-forth activity assignment between users by
automatically selecting activity creator as the assignee of the followup activity when
using button "Done & schedule next". Use case:
Mitchell Admin assigns activity "to do" to Marc Demo >
Marc Demo clicks "done and schedule next" on the activity >
in new activity form, "assigned to" is set to Mitchell Admin (unless a different default
user is set for the selected activity type).
Furthermore, the module corrects a behavior that can induce user to assigning a new
activity to themselves instead of the previously selected user. Use case:
Mitchell Admin creates a new activity, selects "Marc Demo" as "assigned to", but then
changes activity type.
In standard behavior "assigned to" is reset to "Mitchell Admin";
with this module, the user selection is maintained when changing activity type (unless
a different default user is set for the selected activity type).