use of com.netsteadfast.greenstep.vo.KpiEmplVO in project bamboobsc by billchen198318.
the class KpiLogicServiceImpl method createKpiEmployee.
private void createKpiEmployee(KpiVO kpi, List<String> employeeOids) throws ServiceException, Exception {
if (kpi == null || employeeOids == null || employeeOids.size() < 1) {
return;
}
for (String oid : employeeOids) {
EmployeeVO employee = this.findEmployeeData(oid);
KpiEmplVO kpiEmpl = new KpiEmplVO();
kpiEmpl.setKpiId(kpi.getId());
kpiEmpl.setEmpId(employee.getEmpId());
this.kpiEmplService.saveObject(kpiEmpl);
}
}
Aggregations