|
|
|
@ -541,6 +541,7 @@ public class WExcel<T> implements Serializable, Cloneable {
|
|
|
|
|
WRow wRow = this.rowList.get(i);
|
|
|
|
|
Row row = sheet.createRow(i + 1);
|
|
|
|
|
|
|
|
|
|
if(offset> 0){
|
|
|
|
|
if (this.rowList.get(i).hasError()) {
|
|
|
|
|
// 添加结果
|
|
|
|
|
List<String> errorList = wRow.getErrorList();
|
|
|
|
@ -562,6 +563,7 @@ public class WExcel<T> implements Serializable, Cloneable {
|
|
|
|
|
errsCell.setCellStyle(new SuccessCellStyle(workbook).getStyle());
|
|
|
|
|
errsCell.setCellValue("");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int j = 0; j < this.columnList.size(); j++) {
|
|
|
|
|
WColumn column = this.columnList.get(j);
|
|
|
|
|