vishdha / Meeting

Meeting Application using Frappe Framework
Other
0 stars 4 forks source link

Full Name not fetched when user email_id is selected. #1

Closed vishdha closed 8 years ago

vishdha commented 8 years ago

@frappe.whitelist() def get_full_name(attendee): user = frappe.get_doc("User",attendee)

concatenates by space if it has value

    return " ".join(filter(None, [user.first_name, user.middle_name, user.last_name]))

doesn't do modification when I select user's Email Id from Attendee child table from Meeting Module.

for reference : I used Frappe Developer Video Tutorial: session 4 : Scripting Doctype I. @revant @gaurav-naik

vishdha commented 8 years ago

issue Solved!