示例#1
0
def notify_assignment(assigned_by,
                      owner,
                      doc_type,
                      doc_name,
                      action='CLOSE',
                      description=None,
                      notify=0):
    """
		Notify assignee that there is a change in assignment
	"""
    if not (assigned_by and owner and doc_type and doc_name): return

    # self assignment / closing - no message
    if assigned_by == owner:
        return

    from frappe.boot import get_fullnames
    user_info = get_fullnames()

    # Search for email address in description -- i.e. assignee
    from frappe.utils import get_link_to_form
    assignment = get_link_to_form(doc_type,
                                  doc_name,
                                  label="%s: %s" % (doc_type, doc_name))
    owner_name = user_info.get(owner, {}).get('fullname')
    user_name = user_info.get(frappe.session.get('user'), {}).get('fullname')
    if action == 'CLOSE':
        if owner == frappe.session.get('user'):
            arg = {
                'contact':
                assigned_by,
                'txt':
                _("The task {0}, that you assigned to {1}, has been closed.").
                format(assignment, owner_name)
            }
        else:
            arg = {
                'contact':
                assigned_by,
                'txt':
                _("The task {0}, that you assigned to {1}, has been closed by {2}."
                  ).format(assignment, owner_name, user_name)
            }
    else:
        description_html = "<p>{0}</p>".format(description)
        arg = {
            'contact':
            owner,
            'txt':
            _("A new task, {0}, has been assigned to you by {1}. {2}").format(
                assignment, user_name, description_html),
            'notify':
            notify
        }

    arg["parenttype"] = "Assignment"

    from frappe.desk.page.chat import chat
    chat.post(**arg)
示例#2
0
 def notify(self, args):
     args = frappe._dict(args)
     from frappe.desk.page.chat.chat import post
     post(
         **{
             "txt": args.message,
             "contact": args.message_to,
             "subject": args.subject,
             "notify": cint(self.follow_via_email)
         })
示例#3
0
def notify_assignment(shared_by, doc_type, doc_name, description=None, notify=0):

	if not (shared_by and doc_type and doc_name): return

	from frappe.utils import get_link_to_form
	document = get_link_to_form(doc_type, doc_name, label="%s: %s" % (doc_type, doc_name))

	arg = {
		'contact': shared_by,
		'txt': _("A new document {0} has been shared by with you {1}.").format(document,
				shared_by),
		'notify': notify
	}

	from frappe.desk.page.chat import chat
	chat.post(**arg)
示例#4
0
def notify_assignment(assigned_by, owner, doc_type, doc_name, action='CLOSE',
	description=None, notify=0):
	"""
		Notify assignee that there is a change in assignment
	"""
	if not (assigned_by and owner and doc_type and doc_name): return

	# self assignment / closing - no message
	if assigned_by==owner:
		return

	from frappe.boot import get_fullnames
	user_info = get_fullnames()

	# Search for email address in description -- i.e. assignee
	from frappe.utils import get_link_to_form
	assignment = get_link_to_form(doc_type, doc_name, label="%s: %s" % (doc_type, doc_name))
	owner_name = user_info.get(owner, {}).get('fullname')
	user_name = user_info.get(frappe.session.get('user'), {}).get('fullname')
	if action=='CLOSE':
		if owner == frappe.session.get('user'):
			arg = {
				'contact': assigned_by,
				'txt': _("The task {0}, that you assigned to {1}, has been closed.").format(assignment,
						owner_name)
			}
		else:
			arg = {
				'contact': assigned_by,
				'txt': _("The task {0}, that you assigned to {1}, has been closed by {2}.").format(assignment,
					owner_name, user_name)
			}
	else:
		description_html = "<p>{0}</p>".format(description)
		arg = {
			'contact': owner,
			'txt': _("A new task, {0}, has been assigned to you by {1}. {2}").format(assignment,
				user_name, description_html),
			'notify': notify
		}

	arg["parenttype"] = "Assignment"

	from frappe.desk.page.chat import chat
	chat.post(**arg)
	def notify(self, args):
		args = frappe._dict(args)
		from frappe.desk.page.chat.chat import post
		post(**{"txt": args.message, "contact": args.message_to, "subject": args.subject,
			"notify": cint(self.follow_via_email)})