olddeclarations.jsp

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

JSP
46
字号
<!-- [oldDeclarations.jsp] Start -->

<% GenericValue userLogin = (GenericValue)session.getAttribute("_USER_LOGIN_"); %>
<% UserInfo userInfo  = (UserInfo) session.getAttribute("userInfo"); %>

<%  String partyId = "";
	if (userLogin != null )
       partyId = userLogin.getString("partyId");
%>

<%
   DecimalFormat decimalFormat = new DecimalFormat("#,###.##");
   SimpleDateFormat simpleDateFormat = new SimpleDateFormat("MM/dd/yyyy");
   SimpleDateFormat simpleTimeFormat = new SimpleDateFormat("K:mm a");
%>

<%String controlPath=(String)request.getAttribute("_CONTROL_PATH_");%>
<%String contextRoot=(String)request.getAttribute("_CONTEXT_ROOT_");%>

<%String pageName = UtilFormatOut.checkNull((String)pageContext.getAttribute("PageName"));%>

<%String companyName = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "company.name");%>
<%String companySubtitle = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "company.subtitle");%>
<%String headerImageUrl = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "header.image.url");%>

<%String headerBoxBorderColor = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "header.box.border.color", "black");%>
<%String headerBoxBorderWidth = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "header.box.border.width", "1");%>
<%String headerBoxTopColor = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "header.box.top.color", "#336699");%>
<%String headerBoxBottomColor = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "header.box.bottom.color", "#cccc99");%>
<%String headerBoxBottomColorAlt = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "header.box.bottom.alt.color", "#eeeecc");%>
<%String headerBoxTopPadding = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "header.box.top.padding", "4");%>
<%String headerBoxBottomPadding = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "header.box.bottom.padding", "2");%>

<%String boxBorderColor = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "box.border.color", "black");%>
<%String boxBorderWidth = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "box.border.width", "1");%>
<%String boxTopColor = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "box.top.color", "#336699");%>
<%String boxBottomColor = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "box.bottom.color", "white");%>
<%String boxBottomColorAlt = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "box.bottom.alt.color", "white");%>
<%String boxTopPadding = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "box.top.padding", "4");%>
<%String boxBottomPadding = UtilProperties.getPropertyValue(contextRoot + "/WEB-INF/sfa.properties", "box.bottom.padding", "4");%>
<%String userStyleSheet = "/sfa/includes/maincss.css"; %>
<%String alphabet[]={"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "*"};%>

<!-- [oldDeclarations.jsp] End -->

⌨️ 快捷键说明

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