Commit 7a955fe6 authored by 38823's avatar 38823

付款单关闭查询优化

parent e82b77bb
......@@ -9,7 +9,7 @@
},
{
name : 'if_history',
queryexpression : "((${@if_history} ='N' and (t1.if_history = 'N' or t1.if_history is null)) or (${@if_history} ='Y' and (t1.if_history in ('N','Y') or t1.if_history is null)))"
queryexpression : "((${@if_history} ='N' and t1.if_history = 'N') or (${@if_history} ='Y' and t1.if_history in ('N','Y')))"
}
];
......
......@@ -9,7 +9,7 @@
},
{
name : 'if_history',
queryexpression : "((${@if_history} ='N' and (t1.if_history = 'N' or t1.if_history is null)) or (${@if_history} ='Y' and (t1.if_history in ('N','Y') or t1.if_history is null)))"
queryexpression : "((${@if_history} ='N' and t1.if_history = 'N') or (${@if_history} ='Y' and t1.if_history in ('N','Y')))"
}
];
......
......@@ -17,7 +17,7 @@
},
{
name : 'if_history',
queryexpression : "((${@if_history} ='N' and (t1.if_history = 'N' or t1.if_history is null)) or (${@if_history} ='Y' and (t1.if_history in ('N','Y') or t1.if_history is null)))"
queryexpression : "((${@if_history} ='N' and t1.if_history = 'N') or (${@if_history} ='Y' and t1.if_history in ('N','Y')))"
}
];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment