📄 jobs.jsp
字号:
<%-- * Description: None * Copyright (c) 2002 The Open For Business Project - www.ofbiz.org * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * *@author Andy Zeneski *@version $Rev: 5462 $ *@since 2.0--%><%@ page import="java.util.*" %><%@ page import="org.ofbiz.security.*, org.ofbiz.entity.*" %><%@ page import="org.ofbiz.base.util.*, org.ofbiz.webapp.pseudotag.*" %><%@ taglib uri="ofbizTags" prefix="ofbiz" %><jsp:useBean id="security" type="org.ofbiz.security.Security" scope="request" /><jsp:useBean id="delegator" type="org.ofbiz.entity.GenericDelegator" scope="request" /><%if(security.hasPermission("WEBTOOLS_VIEW", session)) {%><% List jobs = delegator.findAll("JobSandbox", UtilMisc.toList("-runTime")); if (jobs != null) pageContext.setAttribute("jobs", jobs);%><div class="head2">Scheduled Jobs</div><a href="<ofbiz:url>/jobList</ofbiz:url>" class="buttontext">[Refresh]</a> <a href="<ofbiz:url>/threadList</ofbiz:url>" class="buttontext">[Thread List]</a><a href="<ofbiz:url>/serviceList</ofbiz:url>" class="buttontext">[Service Log]</a> <a href="<ofbiz:url>/scheduleJob</ofbiz:url>" class="buttontext">[Schedule Job]</a><br/><br/><table cellpadding="2" cellspacing="0" border="1" width="100%"> <tr> <td><div class="tableheadtext">Job</div></td> <td><div class="tableheadtext">Pool</div></td> <td><div class="tableheadtext">Run Time</div></td> <td><div class="tableheadtext">Start Time</div></td> <td><div class="tableheadtext">Service</div></td> <td><div class="tableheadtext">Finish Time</div></td> <td> </td> </tr> <ofbiz:iterator name="job" property="jobs"> <% String finishTime = job.getString("finishDateTime"); String cancelTime = job.getString("cancelDateTime"); String endTime = finishTime; if (endTime == null) { endTime = cancelTime; } String serviceName = job.getString("serviceName"); %> <tr> <td><a href="#" class="buttontext"><%=UtilFormatOut.checkNull(job.getString("jobName")," ")%></a></td> <td><div class="tabletext"><%=UtilFormatOut.checkNull(job.getString("poolId"), " ")%></div></td> <td><div class="tabletext"><%=UtilFormatOut.checkNull(job.getString("runTime")," ")%></div></td> <td><div class="tabletext"><%=UtilFormatOut.checkNull(job.getString("startDateTime")," ")%></div></td> <td><div class="tabletext"><a href="<ofbiz:url>/availableServices?sel_service_name=<%=serviceName%></ofbiz:url>" class="buttontext"><%=UtilFormatOut.checkNull(serviceName," ")%></a></div></td> <td> <div class="tabletext"> <%if (endTime != null && cancelTime != null && endTime.equals(cancelTime)) {%> <font color="red"> <%}%> <%=UtilFormatOut.checkNull(endTime," ")%> <%if (endTime != null && cancelTime != null && endTime.equals(cancelTime)) {%> </font> <%}%> </div> </td> <%--<td align='center'><a href="#" class="buttontext">[View Data]</a></td>--%> <td align="center"> <%if (job.getString("startDateTime") != null || endTime != null) {%> <%}else{%> <nobr><a href="<ofbiz:url>/cancelJob?jobId=<%=job.getString("jobId")%></ofbiz:url>" class="buttontext">[Cancel Job]</a></nobr> <%}%> </td> </tr> </ofbiz:iterator></table><%}else{%> <hr> <div>You do not have permission to use this page.</div><%}%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -