| 
					
				 | 
			
			
				@@ -13,6 +13,7 @@ import com.ozs.common.core.domain.entity.SysDept; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.ozs.common.core.domain.model.LoginUser; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.ozs.common.enums.BusinessType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.ozs.common.enums.DataIsDelete; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import com.ozs.common.enums.ProjectStatus; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.ozs.common.exception.ServiceException; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.ozs.common.exception.base.BaseException; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.ozs.common.core.domain.entity.SysProcurementStandard; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -92,6 +93,9 @@ public class PlanYearsController extends BaseController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     return AjaxResult.success(new Page()); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 lw.in(PlanYears::getPlanYearId, ids); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                if (!ObjectUtils.isEmpty(vo.getProjectStatus())) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    lw.eq(PlanYears::getProjectStatus, ProjectStatus.PLANTOEXAMINE.getCode()); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if (!ObjectUtils.isEmpty(vo.getProjectName())) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 lw.like(PlanYears::getProjectName, vo.getProjectName()); 
			 |