Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cd07f8bee3 | ||
| 58a559b7b7 | |||
|
|
52342d736d |
@@ -14,7 +14,7 @@
|
|||||||
where
|
where
|
||||||
pid = #{modelId}
|
pid = #{modelId}
|
||||||
and cl_dev = #{clDev}
|
and cl_dev = #{clDev}
|
||||||
and data_type in ('Stat',NULL)
|
and (data_type = 'Stat' or data_type IS NULL)
|
||||||
order by type,cl_dev
|
order by type,cl_dev
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|||||||
@@ -554,6 +554,7 @@ public class CsEquipmentDeliveryServiceImpl extends ServiceImpl<CsEquipmentDeliv
|
|||||||
csEquipmentDeliveryPO.setRunStatus(1);
|
csEquipmentDeliveryPO.setRunStatus(1);
|
||||||
csEquipmentDeliveryPO.setStatus(1);
|
csEquipmentDeliveryPO.setStatus(1);
|
||||||
csEquipmentDeliveryPO.setProcess(2);
|
csEquipmentDeliveryPO.setProcess(2);
|
||||||
|
csEquipmentDeliveryPO.setSort(100);
|
||||||
|
|
||||||
CsEquipmentProcessPO csEquipmentProcess = new CsEquipmentProcessPO();
|
CsEquipmentProcessPO csEquipmentProcess = new CsEquipmentProcessPO();
|
||||||
csEquipmentProcess.setDevId(csEquipmentDeliveryPO.getNdid());
|
csEquipmentProcess.setDevId(csEquipmentDeliveryPO.getNdid());
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ import lombok.RequiredArgsConstructor;
|
|||||||
import org.influxdb.dto.QueryResult;
|
import org.influxdb.dto.QueryResult;
|
||||||
import org.springframework.beans.BeanUtils;
|
import org.springframework.beans.BeanUtils;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.util.StringUtils;
|
||||||
|
|
||||||
import java.text.DecimalFormat;
|
import java.text.DecimalFormat;
|
||||||
import java.time.ZoneId;
|
import java.time.ZoneId;
|
||||||
@@ -273,7 +274,11 @@ public class StableDataServiceImpl implements StableDataService {
|
|||||||
List<CsLinePO> finalCsLinePOList = csLinePOList;
|
List<CsLinePO> finalCsLinePOList = csLinePOList;
|
||||||
data.forEach(epdPqd->{
|
data.forEach(epdPqd->{
|
||||||
String frequency = Optional.ofNullable(commonStatisticalQueryParam.getFrequency()).orElse("");
|
String frequency = Optional.ofNullable(commonStatisticalQueryParam.getFrequency()).orElse("");
|
||||||
|
if(StringUtils.isEmpty(commonStatisticalQueryParam.getFrequency())){
|
||||||
|
frequency ="";
|
||||||
|
}else {
|
||||||
|
frequency = "_"+commonStatisticalQueryParam.getFrequency();
|
||||||
|
}
|
||||||
String finalFrequency1 = frequency;
|
String finalFrequency1 = frequency;
|
||||||
List<CommonQueryParam> commonQueryParams = csLinePOList1.stream().map(temp -> {
|
List<CommonQueryParam> commonQueryParams = csLinePOList1.stream().map(temp -> {
|
||||||
CommonQueryParam commonQueryParam = new CommonQueryParam();
|
CommonQueryParam commonQueryParam = new CommonQueryParam();
|
||||||
|
|||||||
Reference in New Issue
Block a user