修正HTTP报表action显示,去除无用国际化代码

This commit is contained in:
zhangwenqing
2018-12-19 19:21:16 +08:00
parent f59d87b7d0
commit 7f77856051
6 changed files with 17 additions and 68 deletions

View File

@@ -380,7 +380,14 @@ white-space:nowrap;
<spring:message code="total"/>
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="action">
<c:if test="${action.itemCode eq service.action}">
<spring:message code="${service.actionCode}"/>
<c:choose>
<c:when test="${(service.serviceId eq 40) || (service.serviceId eq 152)}">
<spring:message code="keywords"/> <spring:message code="${action.itemValue}"/>
</c:when>
<c:otherwise>
<spring:message code="${action.itemValue}"/>
</c:otherwise>
</c:choose>
</c:if>
</c:forEach>
<span>0</span>
@@ -415,7 +422,14 @@ white-space:nowrap;
<c:forEach items="${serviceList}" var="service" >
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.serviceId ne 37)&& (service.serviceId ne 149) }">
<form:option value="${service.serviceId}"><spring:message code="${service.actionCode}"/></form:option>
<c:choose>
<c:when test="${(service.serviceId eq 40) || (service.serviceId eq 152)}">
<form:option value="${service.serviceId}"><spring:message code="keywords"/> <spring:message code="${dict.itemValue}"/></form:option>
</c:when>
<c:otherwise>
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
</c:otherwise>
</c:choose>
</c:if>
</c:forEach>
</c:forEach>