|
@@ -415,9 +415,9 @@ public class TDailyProductionReportServiceImpl implements ITDailyProductionRepor
|
|
|
tDailyProductionReport.setPguAeuLossPercentage(this.roundDecimal(this.getCellDataString(sheet, 39, 18), 2));
|
|
|
// rowIndex = 40
|
|
|
String totalLoss = this.roundDecimal(this.getCellDataString(sheet, 40, 2), 0);
|
|
|
- if (totalLoss.indexOf("-") != -1) {
|
|
|
- totalLoss = totalLoss.substring(1);
|
|
|
- }
|
|
|
+// if (totalLoss.indexOf("-") != -1) {
|
|
|
+// totalLoss = totalLoss.substring(1);
|
|
|
+// }
|
|
|
tDailyProductionReport.setTotalLoss(totalLoss);
|
|
|
tDailyProductionReport.setPguOffgasProduced(this.roundDecimal(this.getCellDataString(sheet, 40, 10), 0));
|
|
|
tDailyProductionReport.setPguOffgasChange(this.roundDecimal(this.getCellDataString(sheet, 40, 11), 0));
|
|
@@ -426,9 +426,9 @@ public class TDailyProductionReportServiceImpl implements ITDailyProductionRepor
|
|
|
tDailyProductionReport.setPguAeuFeedLoadPercentage(this.roundPercentage(this.getCellDataString(sheet, 40, 18), 2));
|
|
|
// rowIndex = 41
|
|
|
String lossPercentage = this.roundDecimal(this.getCellDataString(sheet, 41, 2), 3);
|
|
|
- if (lossPercentage.indexOf("-") != -1) {
|
|
|
- lossPercentage = lossPercentage.substring(1);
|
|
|
- }
|
|
|
+// if (lossPercentage.indexOf("-") != -1) {
|
|
|
+// lossPercentage = lossPercentage.substring(1);
|
|
|
+// }
|
|
|
tDailyProductionReport.setLossPercentage(lossPercentage);
|
|
|
tDailyProductionReport.setPguTotalFeed(this.roundDecimal(this.getCellDataString(sheet, 41, 6), 0));
|
|
|
tDailyProductionReport.setPguC5YeildPercentage(this.roundPercentage(this.getCellDataString(sheet, 41, 10), 2));
|