|
|
@ -30,7 +30,7 @@ public static String createDepartId(HttpServletRequest request,HttpServletRespon
|
|
|
|
String departId="";
|
|
|
|
String departId="";
|
|
|
|
Login login=(Login)request.getSession().getAttribute("login");
|
|
|
|
Login login=(Login)request.getSession().getAttribute("login");
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
conn=DbConn.getConn();//093010 0000
|
|
|
|
conn=DbConn.getConn();//0930 10 0000
|
|
|
|
String queryDepartId="select max(substr(departid,7,4)) departId from tab_department";
|
|
|
|
String queryDepartId="select max(substr(departid,7,4)) departId from tab_department";
|
|
|
|
String queryFrameworkId="select frameworkid from tab_framework";
|
|
|
|
String queryFrameworkId="select frameworkid from tab_framework";
|
|
|
|
String queryAreaId="select areaid from tab_department where departid=?";
|
|
|
|
String queryAreaId="select areaid from tab_department where departid=?";
|
|
|
@ -39,6 +39,12 @@ public static String createDepartId(HttpServletRequest request,HttpServletRespon
|
|
|
|
HashFmlBuf areaBuf=(HashFmlBuf)JDBCUtils.query(conn, queryAreaId,new Object[]{login.getDepartid()},new HashFmlBufResultSetHandler());
|
|
|
|
HashFmlBuf areaBuf=(HashFmlBuf)JDBCUtils.query(conn, queryAreaId,new Object[]{login.getDepartid()},new HashFmlBufResultSetHandler());
|
|
|
|
String framework=frameworkBuf.fget("frameworkid",0);
|
|
|
|
String framework=frameworkBuf.fget("frameworkid",0);
|
|
|
|
String area=areaBuf.fget("areaid",0);
|
|
|
|
String area=areaBuf.fget("areaid",0);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String areaid = request.getParameter("qj");
|
|
|
|
|
|
|
|
String frameworkid = request.getParameter("sj");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String departInfo=departBuf.fget("departId",0);
|
|
|
|
String departInfo=departBuf.fget("departId",0);
|
|
|
|
String departids="";
|
|
|
|
String departids="";
|
|
|
|
int departno=0;
|
|
|
|
int departno=0;
|
|
|
@ -62,7 +68,7 @@ public static String createDepartId(HttpServletRequest request,HttpServletRespon
|
|
|
|
}else{
|
|
|
|
}else{
|
|
|
|
departids=departno+"";
|
|
|
|
departids=departno+"";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
departId=framework+area+departids; //0930 10 101
|
|
|
|
departId=frameworkid+areaid+departids; //0930 10 101
|
|
|
|
return departId;
|
|
|
|
return departId;
|
|
|
|
} catch (Exception e) {
|
|
|
|
} catch (Exception e) {
|
|
|
|
// TODO: handle exception
|
|
|
|
// TODO: handle exception
|
|
|
|