blob: aa456aac60eda7b908eddcff08d55a6c001fb201 [file] [log] [blame]
Anand Doshi885e0742015-03-03 14:55:30 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05302# License: GNU General Public License v3. See license.txt
Anand Doshi60666a22013-04-12 20:19:53 +05303
4from __future__ import unicode_literals
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05305import frappe
6from frappe import _
Anand Doshi60666a22013-04-12 20:19:53 +05307
Anand Doshic280d062014-05-30 14:43:36 +05308def set_employee_name(doc):
9 if doc.employee and not doc.employee_name:
10 doc.employee_name = frappe.db.get_value("Employee", doc.employee, "employee_name")