Commit 9f070353 authored by ZWT's avatar ZWT

feat(吉林演示): 松原

1.排查并修复各时段间开优化功能执行异常导致未执行间开优化问题;
2.排查并修复15天间开优化功能执行后,优化结果时间段展示错乱问题;

BREAKING CHANGE: 无

Closes 无

[skip ci]
parent 53d9ff90
......@@ -1659,7 +1659,11 @@ public class SpaceOptimizeBaseService {
if (CollUtil.isNotEmpty(unOptimizeWellheadList)) {
for (SpaceInstitutionWellheadView wellhead : unOptimizeWellheadList) {
String wellheadId = wellhead.getWellheadId();
String recordId = this.createOptimizeWellhead(wellheadDTOList, periodId, wellheadId, wellhead.getWellNumber(), wellhead.getStartSeq(), optimizeDate, BusinessConstant.ONE);
String wellNumber = wellhead.getWellNumber();
if (CharSequenceUtil.isBlank(wellNumber) || CharSequenceUtil.isBlank(wellheadId)) {
continue;
}
String recordId = this.createOptimizeWellhead(wellheadDTOList, periodId, wellheadId, wellNumber, wellhead.getStartSeq(), optimizeDate, BusinessConstant.ONE);
switch (wellhead.getIntervalTypeKey()) {
//小间开(不优化)
case "0":
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment