Index: ssts-recyclingapplication/src/main/java/com/forgon/disinfectsystem/recyclingapplication/service/InvoicePlanManagerImpl.java =================================================================== diff -u -r27435 -r27438 --- ssts-recyclingapplication/src/main/java/com/forgon/disinfectsystem/recyclingapplication/service/InvoicePlanManagerImpl.java (.../InvoicePlanManagerImpl.java) (revision 27435) +++ ssts-recyclingapplication/src/main/java/com/forgon/disinfectsystem/recyclingapplication/service/InvoicePlanManagerImpl.java (.../InvoicePlanManagerImpl.java) (revision 27438) @@ -174,18 +174,13 @@ protected UrgentLevelManager urgentLevelManager; - private RecyclingApplicationManager recyclingApplicationManager; - private DepartmentGroupManager departmentGroupManager; public void setDepartmentGroupManager( DepartmentGroupManager departmentGroupManager) { this.departmentGroupManager = departmentGroupManager; } - public void setRecyclingApplicationManager( - RecyclingApplicationManager recyclingApplicationManager) { - this.recyclingApplicationManager = recyclingApplicationManager; - } + public void setUrgentLevelManager(UrgentLevelManager urgentLevelManager) { this.urgentLevelManager = urgentLevelManager; } @@ -1377,7 +1372,7 @@ setDepartGroupIdForExpressRecyclingVoList(departCodings, quickRecyclingList); //相关申请单改为已查看 if(CollectionUtils.isNotEmpty(ipIds)){ - recyclingApplicationManager.updateBySql("update invoicePlan set readed = "+InvoicePlan.READED+" where " + SqlUtils.getNonStringFieldInLargeCollectionsPredicate("id", ipIds)); + objectDao.excuteSQL("update invoicePlan set readed = "+InvoicePlan.READED+" where " + SqlUtils.getNonStringFieldInLargeCollectionsPredicate("id", ipIds)); } return quickRecyclingList;