parent
6e18060411
commit
7296f5be49
|
@ -362,8 +362,9 @@ public class ContractFormPlugin extends AbstractFormPlugin implements UploadLis
|
||||||
try {
|
try {
|
||||||
BigDecimal results =BigDecimal.valueOf(Double.parseDouble(engine.eval(expression).toString()));
|
BigDecimal results =BigDecimal.valueOf(Double.parseDouble(engine.eval(expression).toString()));
|
||||||
contractsummarylist.set("qeug_decimalqty", results);
|
contractsummarylist.set("qeug_decimalqty", results);
|
||||||
} catch (ScriptException e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
this.getView().showErrorNotification("清单汇总识别--生成明细失败:"+e.getMessage());
|
||||||
|
return ;
|
||||||
// 处理计算失败的情况
|
// 处理计算失败的情况
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -375,27 +376,48 @@ public class ContractFormPlugin extends AbstractFormPlugin implements UploadLis
|
||||||
try {
|
try {
|
||||||
BigDecimal results =BigDecimal.valueOf(Double.parseDouble(engine.eval(expression).toString()));
|
BigDecimal results =BigDecimal.valueOf(Double.parseDouble(engine.eval(expression).toString()));
|
||||||
contractsummarylist.set("qeug_unitprice",results);//综合单价
|
contractsummarylist.set("qeug_unitprice",results);//综合单价
|
||||||
} catch (ScriptException e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
this.getView().showErrorNotification("清单汇总识别--生成明细失败:"+e.getMessage());
|
||||||
|
return ;
|
||||||
// 处理计算失败的情况
|
// 处理计算失败的情况
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 8:
|
case 8:
|
||||||
if (StringUtils.isNotEmpty(cell.toString())) {
|
Cell cell1 = row.getCell(6);
|
||||||
String expression = cell.toString();
|
Cell cell2 = row.getCell(7);
|
||||||
ScriptEngine engine = new ScriptEngineManager().getEngineByName("JavaScript");
|
if (cell1 != null && cell2 != null && StringUtils.isNotEmpty(cell1.toString()) && StringUtils.isNotEmpty(cell2.toString())) {
|
||||||
BigDecimal results = BigDecimal.ZERO;
|
BigDecimal results = BigDecimal.ZERO;
|
||||||
try {
|
try {
|
||||||
results =BigDecimal.valueOf(Double.parseDouble(engine.eval(expression).toString()));
|
double value1 = cell1.getNumericCellValue();
|
||||||
contractsummarylist.set("qeug_amounttotal",results);//综合单价
|
double value2 = cell2.getNumericCellValue();
|
||||||
} catch (ScriptException e) {
|
results = BigDecimal.valueOf(value1 * value2);
|
||||||
e.printStackTrace();
|
contractsummarylist.set("qeug_amounttotal", results); // 合计金额
|
||||||
// 处理计算失败的情况
|
} catch (Exception e) {
|
||||||
|
this.getView().showErrorNotification("清单汇总识别--生成明细失败:" + e.getMessage());
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
amounttotal = amounttotal.add(results);
|
amounttotal = amounttotal.add(results);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
// case 8:
|
||||||
|
// Cell cell1 = row.getCell(6);
|
||||||
|
// Cell cell2 = row.getCell(7);
|
||||||
|
// if (StringUtils.isNotEmpty(cell.toString())) {
|
||||||
|
// String expression = cell.toString();
|
||||||
|
// ScriptEngine engine = new ScriptEngineManager().getEngineByName("JavaScript");
|
||||||
|
// BigDecimal results = BigDecimal.ZERO;
|
||||||
|
// try {
|
||||||
|
// results =BigDecimal.valueOf(Double.parseDouble(engine.eval(expression).toString()));
|
||||||
|
// contractsummarylist.set("qeug_amounttotal",results);//综合单价
|
||||||
|
// } catch (Exception e) {
|
||||||
|
// this.getView().showErrorNotification("清单汇总识别--生成明细失败:"+e.getMessage());
|
||||||
|
// return ;
|
||||||
|
// // 处理计算失败的情况
|
||||||
|
// }
|
||||||
|
// amounttotal = amounttotal.add(results);
|
||||||
|
// }
|
||||||
|
// break;
|
||||||
case 9:
|
case 9:
|
||||||
if (StringUtils.isNotEmpty(cell.toString())) {
|
if (StringUtils.isNotEmpty(cell.toString())) {
|
||||||
contractsummarylist.set("qeug_artificial",BigDecimal.valueOf(Double.parseDouble(cell.toString())));//人工单价
|
contractsummarylist.set("qeug_artificial",BigDecimal.valueOf(Double.parseDouble(cell.toString())));//人工单价
|
||||||
|
|
Loading…
Reference in New Issue