codetypetabs.jsp

来自「国外的一套开源CRM」· JSP 代码 · 共 31 行

JSP
31
字号
<%@ page import="com.sourcetap.sfa.ui.UIScreenSection" %>
<%@ include file="/includes/header.jsp" %>
<!--%@ include file="/includes/tabControlWithIframes.jsp" %>-->
<%@ include file="/includes/tabControlWithIframes.jsp" %>
<%
	String codeTypeId = "";
	if(request.getParameter("codeTypeId") != null) {
		codeTypeId = request.getParameter("codeTypeId");
	}
	String parentCodeTypeId = "";
	if(request.getParameter("parentCodeTypeId") != null) {
		parentCodeTypeId = request.getParameter("parentCodeTypeId");
	}
//	if (parentCodeTypeId.equals("") && !codeTypeId.equals("")) parentCodeTypeId = codeTypeId;
%>
   <DIV id=oMTExplanation style="DISPLAY: none"><br></DIV>
   <DIV id=oMT  title="Code Type <%=codeTypeId%> Details" style='width:100%;'>

    <!-- CodeTypeCodeList -->
    <DIV  style="VISIBILITY: visible" tabName="Codes" targetURL="<ofbiz:url>/codeTypeCodeList</ofbiz:url>?action=<%=UIScreenSection.ACTION_QUERY%>&codeTypeId=<%=codeTypeId%>">
    </DIV>

    <!-- CodeChildCodeTypesList -->
    <DIV  style="VISIBILITY: visible" tabName="Child Code Types" targetURL="<ofbiz:url>/codeTypeChildCodeTypeList</ofbiz:url>?action=<%=UIScreenSection.ACTION_QUERY%>&parentCodeTypeId=<%=parentCodeTypeId%>">
    </DIV>

   </DIV>

<%@ include file="/includes/footer.jsp" %>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?