21 lines
716 B
Plaintext
21 lines
716 B
Plaintext
<%@page import="com.amarsoft.are.jbo.BizObject"%>
|
|
<%@page import="jbo.app.tenwa.calc.VI_LC_RENT_PLAN"%>
|
|
<%@page import="com.amarsoft.are.jbo.JBOFactory"%>
|
|
<%@page import="com.amarsoft.are.jbo.JBOTransaction"%>
|
|
<%@page import="java.math.BigDecimal"%>
|
|
<%@ page contentType="text/html; charset=GBK"%>
|
|
<%@ include file="/IncludeBeginMDAJAX.jsp"%><%
|
|
String sql = CurPage.getParameter("sql");
|
|
sql = sql.replaceAll("¡÷", "+");
|
|
String result = "";
|
|
try{
|
|
sql = "select " + sql +" from lc_calc_condition";
|
|
SqlObject so = new SqlObject(sql);
|
|
result = Sqlca.getString(so);
|
|
}catch(Exception e){
|
|
result = "ERROR";
|
|
out.println(result);
|
|
return;
|
|
}
|
|
out.println(result);
|
|
%><%@ include file="/IncludeEndAJAX.jsp"%> |