Commit 41a0ba86 authored by 田熠's avatar 田熠

【流程任务维护】修改处理人列表中人员成员列进行选人时的问题

1.修改为使用orgTree的查询
parent bee98ee6
......@@ -227,7 +227,7 @@ $(document).ready(function() {
{ name: "orgName", display: "机构名称", width: 100, minWidth: 60, type: "string", align: "left" },
{ name: "deptName", display: "部门名称", width: 100, minWidth: 60, type: "string", align: "left" },
{ name: "positionName", display: "岗位名称", width: 100, minWidth: 60, type: "string", align: "left" },
{ name: "handlerName", display: "人员成员", width: 100, minWidth: 60, type: "string", align: "left",
/*{ name: "handlerName", display: "人员成员", width: 100, minWidth: 60, type: "string", align: "left",
editor: { type: 'select', data: { type:"sys", name: "orgSelect",
getParam: function(){
return { orgKindId: "psm" };
......@@ -235,7 +235,24 @@ $(document).ready(function() {
deptId: "deptId", deptName: "deptName", positionId: "positionId", positionName: "positionName",
id: "handlerId", name: "handlerName" }
} }},
} }}, */
{ name: "handlerName", display: "人员成员", width: 100, minWidth: 60, type: "string", align: "left",
editor: { type: 'tree',required: true,isLookup:false,
beforeChange:function(values,editParm) {
var type = values['orgKindId'];
if (type != 'psm') {
return false;
}
return true;
},
data:{name: 'org',minWidth: 300,searchType: 'sys', searchName: 'orgSelect',
getParam: function(){
return { orgRoot: 'orgRoot', org_kind_id: "ogn,dpt,pos,psm" };
}, back:{fullId: "fullId", fullName: "fullName", orgId: "orgId", orgName: "orgName",
deptId: "deptId", deptName: "deptName", positionId: "positionId", positionName: "positionName",
id: "handlerId", name: "handlerName" }
} }},
{ name: "status", display: "状态", width: 60, minWidth: 60, type: "string", align: "left",
editor: { type: 'combobox', data: statusData, required: true },
render: function (item)
......
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