|
|
@ -133,6 +133,11 @@ public class OutsourceQuoteServiceImpl implements IOutsourceQuoteService |
|
|
|
} else { |
|
|
|
tempOutsourceQuoteVO.setTaskName("未启动"); |
|
|
|
} |
|
|
|
if(tempOutsourceQuoteVO.getAuditStatus().equals("1")){ |
|
|
|
tempOutsourceQuoteVO.setTaskName("审核通过"); |
|
|
|
}else if(tempOutsourceQuoteVO.getAuditStatus().equals("2")){ |
|
|
|
tempOutsourceQuoteVO.setTaskName("审核拒绝"); |
|
|
|
} |
|
|
|
returnList.add(tempOutsourceQuoteVO); |
|
|
|
} |
|
|
|
returnList.setTotal(org.springframework.util.CollectionUtils.isEmpty(list) ? 0 : list.getTotal()); |
|
|
@ -260,6 +265,11 @@ public class OutsourceQuoteServiceImpl implements IOutsourceQuoteService |
|
|
|
return 0; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public List<OutsourceQuoteVO> getExportList(OutsourceQuoteVO outsourceQuoteVO) { |
|
|
|
return outsourceQuoteMapper.selectOutsourceQuoteList(outsourceQuoteVO); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* 创建委外报价审核流程 |
|
|
|