%@ page contentType="text/html; charset=GBK"%>
<%@ include file="/Frame/resources/include/include_begin_info.jspf"%>
<%
String PG_TITLE = "会计分录定义详情"; // 浏览器窗口标题
PG_TITLE
//定义变量
String sSortID = (String)CurComp.getParameter("SortID");//分录序号
String sTransID = (String)CurComp.getParameter("TransID");//交易编号
String inputparatemplete = (String)CurComp.getParameter("Inputparatemplete");//该分录模板
if(sSortID==null) sSortID="";
if(sTransID==null) sTransID="";
if(inputparatemplete==null) inputparatemplete="";
ASObjectModel doTemp = new ASObjectModel("TransEntryConfigInfo");//分录模板设置
ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request);
dwTemp.Style="2"; //设置DW风格 1:Grid 2:Freeform
dwTemp.ReadOnly = "0"; //设置是否只读 1:只读 0:可写
//生成HTMLObjectWindow
dwTemp.genHTMLObjectWindow(sTransID+","+sSortID);
String sButtons[][] = {
{"true","","Button","保存","保存记录","saveRecord()","","","",""},
};
%>
<%@include file="/Frame/resources/include/ui/include_info.jspf"%>
<%@ include file="/Frame/resources/include/include_end.jspf"%>