|
@@ -1062,9 +1062,10 @@ func handlerDateCalculate(dateCalculateList []string, calculateCellMap map[strin
|
|
|
|
|
|
val, tmpErr, tmpErrMsg := DateCalculatePrepare(calculateCellMap, cell.Value)
|
|
|
if tmpErr != nil {
|
|
|
- errMsg = tmpErrMsg
|
|
|
- err = tmpErr
|
|
|
- return
|
|
|
+ cell.ShowValue = ""
|
|
|
+ config[cellPosition.Column][cellPosition.Row] = cell
|
|
|
+ utils.FileLog.Error(fmt.Sprintf("%s 日期计算报错:Err:%s:%s", cellKey, tmpErr, tmpErrMsg))
|
|
|
+ continue
|
|
|
}
|
|
|
|
|
|
cell.ShowValue = utils.FormatMixTableDataShowValue(val)
|