|  | @@ -5,15 +5,12 @@ import com.ruoyi.common.core.domain.AjaxResult;
 | 
	
		
			
				|  |  |  import com.ruoyi.common.core.redis.RedisCache;
 | 
	
		
			
				|  |  |  import com.ruoyi.common.enums.DataSourceType;
 | 
	
		
			
				|  |  |  import com.ruoyi.common.utils.SecurityUtils;
 | 
	
		
			
				|  |  | -import com.ruoyi.common.utils.SnowFlakeUtil;
 | 
	
		
			
				|  |  |  import com.ruoyi.system.domain.*;
 | 
	
		
			
				|  |  |  import com.ruoyi.system.domain.vo.ImgVo;
 | 
	
		
			
				|  |  |  import com.ruoyi.system.domain.vo.ItemsVo;
 | 
	
		
			
				|  |  | -import com.ruoyi.system.domain.vo.LoadFeeItemsVo;
 | 
	
		
			
				|  |  |  import com.ruoyi.system.domain.vo.OrderBillsPlansVo;
 | 
	
		
			
				|  |  |  import com.ruoyi.system.mapper.EmplsMapper;
 | 
	
		
			
				|  |  |  import com.ruoyi.system.mapper.OrderBillsPlansMapper;
 | 
	
		
			
				|  |  | -import com.ruoyi.system.mapper.SysConfigMapper;
 | 
	
		
			
				|  |  |  import com.ruoyi.system.service.IOrderBillsPlansService;
 | 
	
		
			
				|  |  |  import org.springframework.beans.BeanUtils;
 | 
	
		
			
				|  |  |  import org.springframework.beans.factory.annotation.Autowired;
 | 
	
	
		
			
				|  | @@ -52,10 +49,12 @@ public class OrderBillsPlansServiceImpl implements IOrderBillsPlansService {
 | 
	
		
			
				|  |  |       *
 | 
	
		
			
				|  |  |       * @param dataStart 日期起
 | 
	
		
			
				|  |  |       * @param dataEnd   日期止
 | 
	
		
			
				|  |  | +     * @param pageNum
 | 
	
		
			
				|  |  | +     * @param pageSize
 | 
	
		
			
				|  |  |       * @return
 | 
	
		
			
				|  |  |       */
 | 
	
		
			
				|  |  |      @Override
 | 
	
		
			
				|  |  | -    public List<WfTaskList> getOrderBillsPlansList(String dataStart, String dataEnd, String orderNo) {
 | 
	
		
			
				|  |  | +    public List<WfTaskList> getOrderBillsPlansList(String dataStart, String dataEnd, String orderNo, Integer head, Integer tail) {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          // 根据登录名去匹配EMPLS 里面的EMPL  找到 EMPLID
 | 
	
		
			
				|  |  |          String userName = SecurityUtils.getLoginUser().getUsername();
 | 
	
	
		
			
				|  | @@ -80,8 +79,15 @@ public class OrderBillsPlansServiceImpl implements IOrderBillsPlansService {
 | 
	
		
			
				|  |  |          map.put("dataEnd", dataEnd);
 | 
	
		
			
				|  |  |          map.put("orderNo", orderNo);
 | 
	
		
			
				|  |  |          map.put("actId", actId.toString());
 | 
	
		
			
				|  |  | +        map.put("head", head);
 | 
	
		
			
				|  |  | +        map.put("tail", tail);
 | 
	
		
			
				|  |  | +        List<WfTaskList> orderBillsPlansList = new ArrayList<>();
 | 
	
		
			
				|  |  | +        try {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -        List<WfTaskList> orderBillsPlansList = orderBillsPlansMapper.getOrderBillsPlansLsit(map);
 | 
	
		
			
				|  |  | +            orderBillsPlansList = orderBillsPlansMapper.getOrderBillsPlansLsit(map);
 | 
	
		
			
				|  |  | +        } catch (Exception a) {
 | 
	
		
			
				|  |  | +            System.out.println("aa");
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  |          for (WfTaskList wfTaskList : orderBillsPlansList) {
 | 
	
		
			
				|  |  |              Long status317 = wfTaskList.getStatus317();
 | 
	
		
			
				|  |  |              Long status376 = wfTaskList.getStatus376();
 |