How to print the name of the user's who submitted the form on my print out paper?

How can I print the user name’s or employee ID who’s submitted the form through out the workflow,
I have to do print out that user’s full_name?
how to fetch that value?

is there anyone here who can help me?
@bahaou

Thanks and Regards
Shubham

Hi @Shubham_Prabhat1,

Please try it.

{{ doc.modified_by }}

Thank You!

1 Like

But I have to fetch the employee ID of that user also

Thank you
@NCP

{% set modified_by_user_id = doc.modified_by %}
{% set employee = frappe.get_list(“Employee”, filters={“user_id”: modified_by_user_id}, fields=[“name”], limit=1) %}
{{ employee[0].name if employee else “” }}

its done

1 Like

Nice @Shubham_Prabhat1.

1 Like