增加两个页签的过滤条件
This commit is contained in:
parent
fd856b0eaa
commit
ede97a61b3
@ -30,7 +30,17 @@
|
||||
|
||||
<%/*~BEGIN~可编辑区~[Editable=true;CodeAreaID=List03;Describe=定义数据对象;]~*/%>
|
||||
<%
|
||||
String soft = CurPage.getParameter("soft");
|
||||
ASObjectModel doTemp = new ASObjectModel("FlowInstanceTrack");
|
||||
String ros = "true";
|
||||
if("业务申请分担".equals(soft)){
|
||||
ros = "false";
|
||||
doTemp.appendJboWhere(" FB.flow_name='业务申请流程' and O.PHASENAME='信审专员初审'");
|
||||
};
|
||||
if("付款业务分担".equals(soft)){
|
||||
ros = "false";
|
||||
doTemp.appendJboWhere(" FB.flow_name='付款申请(汽车)' and O.PHASENAME='运营部初审'");
|
||||
};
|
||||
ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request);
|
||||
dwTemp.Style="1"; //--设置为Grid风格--
|
||||
dwTemp.ReadOnly = "1"; //只读模式
|
||||
@ -42,9 +52,10 @@
|
||||
|
||||
<%/*~BEGIN~可编辑区~[Editable=true;CodeAreaID=List04;Describe=定义按钮;]~*/%>
|
||||
<%
|
||||
|
||||
String sButtons[][] = {
|
||||
{"true","All","Button","重新分配人员","重新分配人员","changeFlowOperator()","","","","btn_icon_resetuser",""},
|
||||
{"true","All","Button","重新路由","重新路由","flowChangeRoute()","","","","btn_icon_resetrouting",""}
|
||||
{ros,"All","Button","重新路由","重新路由","flowChangeRoute()","","","","btn_icon_resetrouting",""}
|
||||
};
|
||||
%>
|
||||
<%/*~END~*/%>
|
||||
@ -60,6 +71,7 @@
|
||||
<%/*~BEGIN~可编辑区~[Editable=false;CodeAreaID=List06;Describe=定义按钮事件;]~*/%>
|
||||
<script type="text/javascript">
|
||||
//在加载完表格后调用
|
||||
<%-- alert("<%=soft%>"); --%>
|
||||
function afterSearch(){
|
||||
for(var i=0;i<getRowCount(0);i++){
|
||||
var userId=getItemValue(0,i,"USERID");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user