|
@@ -3929,13 +3929,13 @@ func (this *TargetController) ExcelDataAdd() {
|
|
|
closeVal := req.Data[i][j].(map[string]interface{})
|
|
|
if item, ok := secNameToDateMap[secNameList[j-1]]; ok {
|
|
|
tmpVal, ok := closeVal["m"].(string)
|
|
|
- if !ok {
|
|
|
+ if !ok || tmpVal == "" {
|
|
|
continue
|
|
|
}
|
|
|
item[date] = tmpVal
|
|
|
} else {
|
|
|
tmpVal, ok := closeVal["m"].(string)
|
|
|
- if !ok {
|
|
|
+ if !ok || tmpVal == "" {
|
|
|
continue
|
|
|
}
|
|
|
secNameToDateMap[secNameList[j-1]] = map[string]string{
|