fix: 修复项目清单更新流程中企标状态没有显示的BUG
This commit is contained in:
+8
-3
@@ -460,7 +460,7 @@ public class SarStandProjectLibraryServiceImpl extends ServiceImpl<SarStandProje
|
|||||||
//cars传回值为1时判断是从车型项目库中调取
|
//cars传回值为1时判断是从车型项目库中调取
|
||||||
|
|
||||||
QueryWrapper<SarStandardsInfo> wrapper1 = new QueryWrapper<>();
|
QueryWrapper<SarStandardsInfo> wrapper1 = new QueryWrapper<>();
|
||||||
wrapper1.select("ID","STAND_NUMBER","STAND_SORT","STAND_YEAR","STAND_NAME","STAND_EN_NAME","TEXT_STATUS","STAND_TYPE","(select count(*) from sar_stand_unqualified " +
|
wrapper1.select("ID","STAND_NUMBER","STAND_SORT","STAND_YEAR","STAND_NAME","STAND_EN_NAME","TEXT_STATUS","STAND_TYPE","ISSUE_TIME","(select count(*) from sar_stand_unqualified " +
|
||||||
" where STAND_ID = r.stand_id and CLOSE_STATE = '1' ) as unCount ","(select count(*) from sar_stand_unqualified" +
|
" where STAND_ID = r.stand_id and CLOSE_STATE = '1' ) as unCount ","(select count(*) from sar_stand_unqualified" +
|
||||||
" where STAND_ID = r.stand_id and CLOSE_STATE = '2' ) as counts ",
|
" where STAND_ID = r.stand_id and CLOSE_STATE = '2' ) as counts ",
|
||||||
"(select GROUP_CONCAT( DISTINCT DATE_FORMAT( PLAN_CLOSE_TIME, '%Y-%m-%d' ) ORDER BY PLAN_CLOSE_TIME ) from sar_stand_unqualified where " +
|
"(select GROUP_CONCAT( DISTINCT DATE_FORMAT( PLAN_CLOSE_TIME, '%Y-%m-%d' ) ORDER BY PLAN_CLOSE_TIME ) from sar_stand_unqualified where " +
|
||||||
@@ -474,8 +474,9 @@ public class SarStandProjectLibraryServiceImpl extends ServiceImpl<SarStandProje
|
|||||||
"STAND_YEAR," +
|
"STAND_YEAR," +
|
||||||
"STAND_NAME," +
|
"STAND_NAME," +
|
||||||
"STAND_EN_NAME," +
|
"STAND_EN_NAME," +
|
||||||
"'' as TEXT_STATUS," +
|
"TEXT_STATUS_BUSS as TEXT_STATUS," +
|
||||||
"'' as STAND_TYPE," +
|
"'BUSINESS_STAND' as STAND_TYPE," +
|
||||||
|
"ISSUE_TIME,"+
|
||||||
"( SELECT count( * ) FROM sar_stand_unqualified WHERE STAND_ID = r.stand_id AND CLOSE_STATE = '1' ) AS unCount," +
|
"( SELECT count( * ) FROM sar_stand_unqualified WHERE STAND_ID = r.stand_id AND CLOSE_STATE = '1' ) AS unCount," +
|
||||||
"( SELECT count( * ) FROM sar_stand_unqualified WHERE STAND_ID = r.stand_id AND CLOSE_STATE = '2' ) AS counts," +
|
"( SELECT count( * ) FROM sar_stand_unqualified WHERE STAND_ID = r.stand_id AND CLOSE_STATE = '2' ) AS counts," +
|
||||||
"(" +
|
"(" +
|
||||||
@@ -526,6 +527,7 @@ public class SarStandProjectLibraryServiceImpl extends ServiceImpl<SarStandProje
|
|||||||
p.setStandType(s.getStandType());
|
p.setStandType(s.getStandType());
|
||||||
p.setStandEnName(s.getStandEnName());
|
p.setStandEnName(s.getStandEnName());
|
||||||
p.setTextStatus(s.getTextStatus());
|
p.setTextStatus(s.getTextStatus());
|
||||||
|
|
||||||
if (s.getUnCount()==0L && s.getCounts()>0L) {
|
if (s.getUnCount()==0L && s.getCounts()>0L) {
|
||||||
p.setUnCount(s.getUnCount());
|
p.setUnCount(s.getUnCount());
|
||||||
}else if (s.getUnCount() == 0L && s.getCounts()==0L){
|
}else if (s.getUnCount() == 0L && s.getCounts()==0L){
|
||||||
@@ -542,6 +544,9 @@ public class SarStandProjectLibraryServiceImpl extends ServiceImpl<SarStandProje
|
|||||||
p.setZRBM(a.getZrbm());
|
p.setZRBM(a.getZrbm());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if(StringUtils.equals(s.getStandType(),"BUSINESS_STAND")){
|
||||||
|
p.setSSRQ(s.getIssueTime());
|
||||||
|
}
|
||||||
list.add(p);
|
list.add(p);
|
||||||
}
|
}
|
||||||
IPage<StandAttrInfoDto> userIPage = new Page<>();
|
IPage<StandAttrInfoDto> userIPage = new Page<>();
|
||||||
|
|||||||
Reference in New Issue
Block a user