|
|
@@ -253,7 +253,12 @@ public class FsStatisSalerWatchServiceImpl implements FsStatisSalerWatchService
|
|
|
if(item.getPeriodId() != null) {
|
|
|
QwSopLogs qwSopLogs = stringQwSopLogsMap.get(item.getPeriodId());
|
|
|
if(qwSopLogs != null) {
|
|
|
- item.setPeriodName(qwSopLogs.getSopTitle());
|
|
|
+ String qwSopLogNameBySopId = qwSopCacheService.getQwSopLogNameBySopId(item.getPeriodId());
|
|
|
+ if(StringUtils.isNotEmpty(qwSopLogNameBySopId)) {
|
|
|
+ item.setPeriodName(qwSopLogNameBySopId);
|
|
|
+ } else {
|
|
|
+ item.setPeriodName(qwSopLogs.getSopTitle());
|
|
|
+ }
|
|
|
}
|
|
|
} else {
|
|
|
item.setPeriodName("空营期");
|