2013-11-20 07:29:58 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
2013-08-05 09:29:54 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
2013-04-12 14:49:53 +00:00
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
2014-02-14 10:17:51 +00:00
|
|
|
import frappe
|
|
|
|
from frappe import _
|
2013-04-12 14:49:53 +00:00
|
|
|
|
2014-05-30 09:13:36 +00:00
|
|
|
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")
|