业务申请,业务审批表页面解决空指针

This commit is contained in:
user 2018-07-04 14:18:48 +08:00
parent 5477fce051
commit 5fa0037fa4

View File

@ -18,6 +18,9 @@
String flowunid = CurPage.getParameter("FlowUnid");
String clean_lease_money = Sqlca.getString("select CLEAN_LEASE_MONEY from LC_CALC_CONDITION_TEMP where flowunid='"+flowunid+"'");
//int money = Integer.parseInt(clean_lease_money);
if(clean_lease_money==null){
clean_lease_money="0";
}
double money = Double.parseDouble(clean_lease_money);
System.out.print("========================="+money);