|
@@ -190,7 +190,7 @@ public abstract class AutomaticReportTableValidate implements ReportTableValidat
|
|
|
JSONArray row = sheetData.getJSONArray(i);
|
|
|
for (int j = 0; j < row.size(); j++) {
|
|
|
JSONObject rowCol = row.getJSONObject(j);
|
|
|
- if (Blank.isNotEmpty(rowCol)) {
|
|
|
+ if (Blank.isNotEmpty(rowCol) && Blank.isNotEmpty(rowCol.get("v")) && Blank.isNotEmpty(rowCol.get("m"))) {
|
|
|
try {
|
|
|
JSONObject rowColJson = JSONObject.parseObject(rowCol.getString("celldata"));
|
|
|
if (rowColJson != null) {
|