11 lines
364 B
Python
11 lines
364 B
Python
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
import frappe
|
|
from frappe import _
|
|
|
|
def set_employee_name(doc):
|
|
if doc.employee and not doc.employee_name:
|
|
doc.employee_name = frappe.db.get_value("Employee", doc.employee, "employee_name")
|