|  | @@ -45,6 +45,13 @@ public class TWarehouseCheckItemsServiceImpl implements ITWarehouseCheckItemsSer
 | 
	
		
			
				|  |  |      @Override
 | 
	
		
			
				|  |  |      public List<TWarehouseCheckItems> selectTWarehouseCheckItemsList(TWarehouseCheckItems tWarehouseCheckItems)
 | 
	
		
			
				|  |  |      {
 | 
	
		
			
				|  |  | +        String inspectionDate = tWarehouseCheckItems.getInspectionDate();
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(inspectionDate)) {
 | 
	
		
			
				|  |  | +            List<String> inspectionDateInterval = new ArrayList<>();
 | 
	
		
			
				|  |  | +            inspectionDateInterval.add(inspectionDate.split(",")[0]);
 | 
	
		
			
				|  |  | +            inspectionDateInterval.add(inspectionDate.split(",")[1]);
 | 
	
		
			
				|  |  | +            tWarehouseCheckItems.setInspectionDateInterval(inspectionDateInterval);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  |          return tWarehouseCheckItemsMapper.selectTWarehouseCheckItemsList(tWarehouseCheckItems);
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 |