Merge branch 'develop' of git@git2.tenwa.com.cn:ApzlDev/apzl_leasing.git into like
This commit is contained in:
commit
9a226b0ee5
@ -240,7 +240,7 @@ public class ProductBaseLoanTools {
|
||||
}
|
||||
|
||||
public static String getNowTotal(String productId) throws JBOException {
|
||||
String nowTotal = "";
|
||||
String nowTotal = "99999999";
|
||||
BizObject bo = JBOFactory
|
||||
.createBizObjectQuery(FLOW_BUSSINESS_OBJECT.CLASS_NAME,
|
||||
"typeno=:productID")
|
||||
@ -254,8 +254,8 @@ public class ProductBaseLoanTools {
|
||||
.createBizObjectQuery(LB_EQUIPMENT_CAR_TEMP.CLASS_NAME,
|
||||
"PROJECT_ID=:projectId")
|
||||
.setParameter("projectId", projectId).getSingleResult(false);
|
||||
nowTotal = (bo1 == null) ? ""
|
||||
: bo1.getAttribute("NOW_TOTAL") == null ? "" : bo1
|
||||
nowTotal = (bo1 == null) ? nowTotal
|
||||
: bo1.getAttribute("NOW_TOTAL") == null ? nowTotal : bo1
|
||||
.getAttribute("NOW_TOTAL").getString();
|
||||
return nowTotal;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user