apzl_leasing/WebContent/Accounting/Config/TransactionParameterList.jsp
2018-06-03 22:26:41 +08:00

29 lines
850 B
Plaintext

<%@ page contentType="text/html; charset=GBK"%>
<%@ include file="/Frame/resources/include/include_begin_list.jspf"%>
<%
String PG_TITLE = "交易模板参数信息"; // 浏览器窗口标题 <title> PG_TITLE </title>
String attribute1 = (String)CurPage.getParameter("attribute1");
if(attribute1==null) attribute1="";
ASObjectModel doTemp = new ASObjectModel("TransactionParameterList");//交易对应的输入要素模板
ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request);
dwTemp.Style="1"; //设置DW风格 1:Grid 2:Freeform
dwTemp.ReadOnly = "1"; //设置是否只读 1:只读 0:可写
dwTemp.setPageSize(50);
//生成HTMLObjectWindow
dwTemp.genHTMLObjectWindow(attribute1);
String sButtons[][] = {
};
%>
<%@include file="/Frame/resources/include/ui/include_list.jspf"%>
<%@ include file="/Frame/resources/include/include_end.jspf"%>