show employee name in employee link field in attendance form

This commit is contained in:
Anand Doshi 2012-09-12 14:53:44 +05:30
parent ff6754ccf4
commit 94dd7ef879

View File

@ -18,13 +18,13 @@ cur_frm.add_fetch('employee', 'company', 'company');
//get employee's name based on employee id selected //get employee's name based on employee id selected
cur_frm.cscript.employee = function(doc,cdt,cdn){ cur_frm.cscript.employee = function(doc,cdt,cdn){
if(doc.employee) get_server_fields('get_emp_name', '', '', doc, cdt, cdn, 1); if(doc.employee) get_server_fields('get_emp_name', '', '', doc, cdt, cdn, 1);
refresh_field('employee_name'); refresh_field('employee_name');
} }
//Employee //Employee
//----------------------------- //-----------------------------
cur_frm.fields_dict['employee'].get_query = function(doc,cdt,cdn) { cur_frm.fields_dict['employee'].get_query = function(doc,cdt,cdn) {
return 'SELECT `tabEmployee`.`name` FROM `tabEmployee` WHERE `tabEmployee`.status = "Active" AND `tabEmployee`.`docstatus`!= 2 AND `tabEmployee`.%(key)s LIKE "%s" ORDER BY `tabEmployee`.`name` ASC LIMIT 50'; return 'SELECT `tabEmployee`.`name`, `tabEmployee`.`employee_name` FROM `tabEmployee` WHERE `tabEmployee`.status = "Active" AND `tabEmployee`.`docstatus`!= 2 AND (`tabEmployee`.`employee_name` LIKE "%s" OR `tabEmployee`.`%(key)s` LIKE "%s") ORDER BY `tabEmployee`.`name` ASC LIMIT 50';
} }