|
@@ -1367,6 +1367,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -1429,6 +1432,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -1487,6 +1493,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -1519,6 +1528,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -1551,6 +1563,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -1587,6 +1602,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -1621,6 +1639,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -1653,6 +1674,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -1687,6 +1711,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -1737,6 +1764,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -1787,6 +1817,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -1837,6 +1870,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -1887,6 +1923,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -1921,6 +1960,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -1959,6 +2001,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -1999,6 +2044,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -2069,6 +2117,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -2109,6 +2160,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -2161,6 +2215,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -2203,6 +2260,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -2247,6 +2307,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -2317,6 +2380,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -2349,6 +2415,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|
|
@@ -2401,6 +2470,9 @@ public class TMonthlyQualityReportController extends BaseController
|
|
|
for (int j = 0; j < cellNum; j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
String cellValue = ExcelUtils.getCellValue(cell);
|
|
|
+ if (cellValue.indexOf("<") != -1) {
|
|
|
+ cellValue = cellValue.substring(cellValue.indexOf("<") + 1);
|
|
|
+ }
|
|
|
if (j == 0) {
|
|
|
entity.setLocationName(cellValue);
|
|
|
} else if (j == 1) {
|