|
@@ -400,7 +400,7 @@ 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);
|
|
|
- totalLoss = "(" + totalLoss.substring(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));
|
|
@@ -409,7 +409,7 @@ 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);
|
|
|
- lossPercentage = "(" + lossPercentage.substring(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));
|