Sfoglia il codice sorgente

更新首页OA显示时,用处理人做判断条件

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@7351 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d
hejq 9 anni fa
parent
commit
f1b860a969

+ 2 - 2
src/main/java/com/uas/platform/b2b/mobile/service/impl/WorkScheduleServiceImpl.java

@@ -69,7 +69,7 @@ public class WorkScheduleServiceImpl implements WorkScheduleService {
 			}
 			// List<OutSign> meOutSigns = outSignDao.findByEnuuAndEmcode(enuu,
 			// emcode);
-			List<OfficeTask> task = officeTaskDao.findByUuAndRecordercode(enuu, emcode);
+			List<OfficeTask> task = officeTaskDao.findByUuAndDomancode(enuu, emcode);
 			workSchedule.setTask(task);
 			workSchedule.setOutPlan(planInfos);
 			map.put("me", workSchedule);
@@ -113,7 +113,7 @@ public class WorkScheduleServiceImpl implements WorkScheduleService {
 				List<OfficeTask> othTasks = new ArrayList<OfficeTask>();
 				if (!CollectionUtils.isEmpty(tasks)) {
 					for (OfficeTask ta : tasks) {
-						if (!ta.getRecordercode().equals(emcode)) {
+						if (!ta.getDomancode().equals(emcode)) {
 							othTasks.add(ta);
 						}
 					}