easyexcel icon indicating copy to clipboard operation
easyexcel copied to clipboard

fix 修复fill填充空数据,可能导致行数据错乱的问题

Open psxjoy opened this issue 9 months ago • 1 comments

fix #3783

ExcelWriteFillExecutor中的doFill函数中有这样一个逻辑:

String variable = analysisCell.getVariableList().get(0);
if (!dataKeySet.contains(variable)) {
    continue;
}

这会导致空数据不进行写操作,直接进入下一行的数据操作。

psxjoy avatar May 16 '24 08:05 psxjoy