blob: 5d165c3ee4d895185e797eade65fd41e6a5ae20a [file] [log] [blame]
Rushabh Mehtaad45e312013-11-20 12:59:58 +05301# Copyright (c) 2013, Web Notes 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")