|
|
@@ -3058,6 +3058,30 @@ public class PublicReleaseServiceImpl extends BaseMybatisDao<PublicReleaseMapper
|
|
|
outPublicDtails.setList(colokList);
|
|
|
}
|
|
|
outPublicDtails.setClockInTimes(sb.toString());
|
|
|
+ List<UserInterviewProjectBo> userInterviewProjectBos = userInterviewProjectMapper.selectByPrdId(outPublicDtails.getPrdId());
|
|
|
+ if (userInterviewProjectBos.size()>0){
|
|
|
+ StringBuilder builder = new StringBuilder();
|
|
|
+ userInterviewProjectBos.forEach(e -> {
|
|
|
+ if (e.getName()!=null)builder.append(e.getName());
|
|
|
+ if (e.getExamineStatus()!=null){
|
|
|
+ if (e.getExamineStatus()==1){
|
|
|
+ builder.append("(初次审核)");
|
|
|
+ }else if (e.getExamineStatus()==2){
|
|
|
+ builder.append("(复审 ").append(e.getExamineStatusOther()).append(")");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (e.getBuyStatus()!=null){
|
|
|
+ if (e.getBuyStatus()==1){
|
|
|
+ builder.append("(新购)");
|
|
|
+ }else if (e.getBuyStatus()==2){
|
|
|
+ builder.append("(复购 ").append(e.getBuyStatusOther()).append(")");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ builder.append(",");
|
|
|
+ });
|
|
|
+ outPublicDtails.setInterviewProject(builder.substring(0,builder.length()-1));
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
@Override
|