|
|
@@ -132,6 +132,10 @@ public class PdfController {
|
|
|
for (int c = 0; c < usedRange.getColumnCount(); c++) {
|
|
|
IRange cell = worksheet.getRange(r, c);
|
|
|
if (!(cell.getCellType() instanceof CheckBoxCellType cbType)) {
|
|
|
+ if(cell.getCellType() instanceof ComboBoxCellType){
|
|
|
+ cell.setCellType(null);
|
|
|
+ cell.setValue(cell.getValue());
|
|
|
+ }
|
|
|
continue;
|
|
|
}
|
|
|
Object val = cell.getValue();
|