📄 archive_query_dept_modify.jsp
字号:
<%@ page contentType="text/html; charset=utf-8"%>
<%@ page import = "java.util.*"%>
<%@ page import = "cn.js.fan.util.*"%>
<%@ page import = "cn.js.fan.web.*"%>
<%@ page import = "com.redmoon.oa.person.*"%>
<%@ page import = "com.redmoon.oa.archive.*"%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>用户档案查询</title>
<link href="../common.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style2 {font-size: 14px}
-->
</style>
<script>
function findObj(theObj, theDoc)
{
var p, i, foundObj;
if(!theDoc) theDoc = document;
if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
{
theDoc = parent.frames[theObj.substring(p+1)].document;
theObj = theObj.substring(0,p);
}
if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
for (i=0; !foundObj && i < theDoc.forms.length; i++)
foundObj = theDoc.forms[i][theObj];
for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++)
foundObj = findObj(theObj,theDoc.layers[i].document);
if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
return foundObj;
}
function ShowChild(imgobj, name)
{
var tableobj = findObj("childof"+name);
if (tableobj.style.display=="none")
{
tableobj.style.display = "";
if (imgobj.src.indexOf("i_puls-root-1.gif")!=-1)
imgobj.src = "../images/i_puls-root.gif";
if (imgobj.src.indexOf("i_plus-1-1.gif")!=-1)
imgobj.src = "../images/i_plus2-2.gif";
if (imgobj.src.indexOf("i_plus-1.gif")!=-1)
imgobj.src = "../images/i_plus2-1.gif";
}
else
{
tableobj.style.display = "none";
if (imgobj.src.indexOf("i_puls-root.gif")!=-1)
imgobj.src = "../images/i_puls-root-1.gif";
if (imgobj.src.indexOf("i_plus2-2.gif")!=-1)
imgobj.src = "../images/i_plus-1-1.gif";
if (imgobj.src.indexOf("i_plus2-1.gif")!=-1)
imgobj.src = "../images/i_plus-1.gif";
}
}
function setDepts(deptCodes) {
var depts = deptCodes;
var ary = depts.split(",");
for(var i=0; i<form1.elements.length; i++) {
if (form1.elements[i].type=="checkbox"){
for (var j=0; j<ary.length; j++) {
if (form1.elements[i].name==ary[j]) {
form1.elements[i].checked = true;
break;
}
}
}
}
}
function getDepts(){
var ary = new Array();
var j = 0;
for(var i=0; i<form1.elements.length; i++) {
if (form1.elements[i].type=="checkbox"){
if (form1.elements[i].checked) {
ary[j] = new Array();
ary[j][0] = "'" + form1.elements[i].name + "'";
//ary[j][1] = form1.elements[i].value;
j ++;
}
}
}
return ary;
}
function selDepts() {
form1.deptCode.value = getDepts();
}
function checkAll(isChecked){
var ary = new Array();
var j = 0;
for(var i=0; i<form1.elements.length; i++) {
if (form1.elements[i].type=="checkbox"){
if(form1.elements[i].disabled == false){
form1.elements[i].checked = isChecked;
}
}
}
return ary;
}
function handlerOnClick() {
var obj = window.event.srcElement;
if (obj.type=="checkbox") {
;
}
}
function window_onload(deptCodes) {
shrink();
setDepts(deptCodes);
}
function shrink() {
for(var i=0; i<document.images.length; i++) {
var imgObj = document.images[i];
try {
if (imgObj.tableRelate!="") {
ShowChild(imgObj, imgObj.tableRelate);
}
}
catch (e) {
}
}
}
</script>
</head>
<%
int id = ParamUtil.getInt(request, "id");
ArchiveQueryDb aqd = new ArchiveQueryDb();
aqd = aqd.getArchiveQueryDb(id);
String deptCodes = aqd.getDeptCode();
deptCodes = deptCodes.replaceAll("'", "");
%>
<body onLoad="window_onload('<%=deptCodes%>')">
<jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
<%
if (!privilege.isUserPrivValid(request, "archive.query")) {
out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "pvg_invalid")));
return;
}
%>
<form name="form1" method="post" action="archive_query_do.jsp?op=modifyDeptCode">
<table width="460" border="0" align="center" cellpadding="0" cellspacing="0" class="tableframe">
<tr>
<td height="24" colspan="2" align="center" background="images/top-right.gif" class="right-title">选择查询部门</td>
</tr>
<tr>
<td height="24" colspan="2" align="center"><input type="button" value="选择全部" onClick="checkAll(true)">
<input type="button" value="清除选择" onClick="checkAll(false)">
<input type="submit" value="确定" onClick="selDepts()">
</td>
</tr>
<tr>
<td width="24" height="87"> </td>
<td width="249">
<%
DeptMgr dm = new DeptMgr();
DeptDb dd = dm.getDeptDb(DeptDb.ROOTCODE);
DeptView tv = new DeptView(dd);
String userName = privilege.getUser(request);
UserDb ud = new UserDb();
ud = ud.getUserDb(userName);
String[] deptCodeArr = ud.getAdminDepts();
tv.ListFuncWithCheckbox(out, "", "func", "", "", deptCodeArr);
%></td>
</tr>
<tr align="center">
<td height="28" colspan="2">
<input type="button" value="选择全部" onClick="checkAll(true)">
<input type="button" value="清除选择" onClick="checkAll(false)">
<input type="submit" value="确定" onClick="selDepts()">
<input type="hidden" name="deptCode"><input type="hidden" name="id" value="<%=id%>"></td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -