修改ftp中dolog bug
This commit is contained in:
@@ -261,9 +261,6 @@
|
|||||||
<if test="functionId != null">
|
<if test="functionId != null">
|
||||||
AND a.function_id=#{functionId,jdbcType=INTEGER}
|
AND a.function_id=#{functionId,jdbcType=INTEGER}
|
||||||
</if>
|
</if>
|
||||||
<if test="doLog != null">
|
|
||||||
AND a.do_log=#{doLog,jdbcType=INTEGER}
|
|
||||||
</if>
|
|
||||||
<if test="ipPort!=null">
|
<if test="ipPort!=null">
|
||||||
AND a.compile_id in (select t.compile_id from ip_port_cfg t
|
AND a.compile_id in (select t.compile_id from ip_port_cfg t
|
||||||
<where>
|
<where>
|
||||||
@@ -284,7 +281,7 @@
|
|||||||
)
|
)
|
||||||
</if>
|
</if>
|
||||||
<if test="ntcSubscribeIdCfg != null">
|
<if test="ntcSubscribeIdCfg != null">
|
||||||
AND r.compile_id in (select f.compile_id from ntc_subscribe_id_cfg f
|
AND a.compile_id in (select f.compile_id from ntc_subscribe_id_cfg f
|
||||||
<where>
|
<where>
|
||||||
<if test="ntcSubscribeIdCfg.cfgKeywords != null and ntcSubscribeIdCfg.cfgKeywords != ''">
|
<if test="ntcSubscribeIdCfg.cfgKeywords != null and ntcSubscribeIdCfg.cfgKeywords != ''">
|
||||||
and f.cfg_keywords like concat(concat('%',#{ntcSubscribeIdCfg.cfgKeywords,jdbcType=VARCHAR}),'%')
|
and f.cfg_keywords like concat(concat('%',#{ntcSubscribeIdCfg.cfgKeywords,jdbcType=VARCHAR}),'%')
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
</style>
|
</style>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(function(){
|
$(function(){
|
||||||
initCommIpVal();
|
// initCommIpVal();
|
||||||
// $("#cancel").on("click",function(){
|
// $("#cancel").on("click",function(){
|
||||||
// window.history.back();
|
// window.history.back();
|
||||||
// });
|
// });
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<title><spring:message code="encrypted_tunnel_behavior"></spring:message></title>
|
<title><spring:message code="encrypted_tunnel_behavior"></spring:message></title>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(function(){
|
$(function(){
|
||||||
initCommIpVal();
|
// initCommIpVal();
|
||||||
/* $("#cancel").on("click",function(){
|
/* $("#cancel").on("click",function(){
|
||||||
window.history.back();
|
window.history.back();
|
||||||
}); */
|
}); */
|
||||||
@@ -35,7 +35,7 @@ $(function(){
|
|||||||
},
|
},
|
||||||
submitHandler: function(form){
|
submitHandler: function(form){
|
||||||
var flag = true;
|
var flag = true;
|
||||||
$("input[name$='cfgKeywords']").each(function(){
|
$(".boxSolid:visible").find("input[name$='cfgKeywords']").each(function(){
|
||||||
if($(this).val()==''){
|
if($(this).val()==''){
|
||||||
$(this).parents(".form-group").find(
|
$(this).parents(".form-group").find(
|
||||||
"div[for='"
|
"div[for='"
|
||||||
@@ -57,6 +57,10 @@ $(function(){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
var flag1=validateInvisibleCharTag();
|
||||||
|
if(flag){
|
||||||
|
flag=flag1;
|
||||||
|
}
|
||||||
if(flag){
|
if(flag){
|
||||||
//将disable属性的元素删除
|
//将disable属性的元素删除
|
||||||
$(".disabled").each(function(){
|
$(".disabled").each(function(){
|
||||||
|
|||||||
@@ -350,7 +350,7 @@
|
|||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('DO_LOG') }" var="dict">
|
<c:forEach items="${fns:getDictList('DO_LOG') }" var="dict">
|
||||||
<c:if test="${dict.itemCode eq cfg.doLog }">
|
<c:if test="${dict.itemCode eq indexCfg.doLog }">
|
||||||
<spring:message code="${dict.itemValue }"/>
|
<spring:message code="${dict.itemValue }"/>
|
||||||
</c:if>
|
</c:if>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
Reference in New Issue
Block a user