apzl_leasing/WebContent/InfoManage/ASQuery/ClearRelativeObjectComlun.jsp
2018-06-03 22:26:41 +08:00

15 lines
538 B
Plaintext

<%@page import="com.amarsoft.asquery.*"%>
<%@page contentType="text/html; charset=GBK"%><%@ include file="/IncludeBeginMDAJAX.jsp"%><%
/*
Content: 获取JBO对象在查询界面展示的html
*/
String jboClass = CurPage.getParameter("jboClass"); //待获取html的JBO类
if(jboClass==null) jboClass="";
//构造query
ASQuery query = (ASQuery)session.getAttribute("AdvanceXQuery");
//清除关联对象的查询列
String array [] = jboClass.split("@");
for(String a : array){
query.removeColumnList(a);
}
%><%@ include file="/IncludeEndAJAX.jsp"%>