Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.

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

Open
psxjoy wants to merge 5 commits intoalibaba:masterfrom
psxjoy:master
Open

fix 修复fill填充空数据,可能导致行数据错乱的问题#3792
psxjoy wants to merge 5 commits intoalibaba:masterfrom
psxjoy:master

Conversation

@psxjoy
Copy link
Collaborator

@psxjoy psxjoy commented May 16, 2024

fix #3783

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

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

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

@CLAassistant
Copy link

CLAassistant commented May 16, 2024

CLA assistant check
All committers have signed the CLA.

mengnankkkk
mengnankkkk approved these changes Jul 4, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

使用ExcelWriter#fill方法进行填充list数据时,存在问题会使不同行的数据错乱

3 participants