四人小组-----车辆管理系统+员工管理
项目选题:车辆管理系统+员工管理
小组名称:好好学习
项目组长:林莉
组员:王东涵,胡丽娜,宫丽君
本周任务:
1.发布申请
功能列表:
管理员登录需要进行验证,管理员可以对店内的员工进行增加,删除,修改,查找,还可以对车辆进行增加,删除,修改,查找。查找时需要按不同的类型进行查找,同时删除记录只是逻辑上的删除,不能真实的删除(数据库要有保留)。
2.展示:
以图片方式展示:
3.SCRUM
我们在9月26日进行一次Scrum会议,再次讨论所需要的功能,(展示如上)。分配任务,页面搭建。
目前完成一个登录页面的搭建,在登录login.html页面主要代码如下:
1 <div class="row-fluid">
<h1><font color="#586683">车辆及员工管理系统</font></h1>
<form action="view/employee/testing.jsp" method="post">
<p>
<label>帐 号:<input name="userName" type="text" id="uname" /></label>
</p>
<p>
<label>密 码:<input name="userPwd" type="password" id="pwd" /></label>
</p>
<p class="tip"> </p>
<hr />
<input type="submit" value=" 登 录 " class="btn btn-primary btn-large login" />
<a href="login.html"><input type="button" value=" 取 消 " class="btn btn-large" /></a>
</form>
</div>
我们在9月27日进行第二次Scrum会议,再次讨论完成一个登录的验证,在登录text.jsp页面主要代码如下:
1 <% 2 request.setCharacterEncoding("utf-8"); 3 String userName = request.getParameter("userName"); 4 String userPwd = request.getParameter("userPwd"); 5 DBTools db = DBTools.getDB(); 6 //密码和账号验证 并且是在职人员 7 String sql = "select emId,emName,emPwd,emPower,emSign from employee where emName = '"+userName+"' and emPwd = '"+userPwd+"' and emSign !='离职'"; 8 // System.out.println(sql); 9 ResultSet rs = db.chaxun(sql); 10 if(rs.next() == true) { 11 if(rs.getString("emPower").equals("经理")) { 12 //经理页面 13 response.sendRedirect("admin.jsp"); 14 }else{ 15 //员工页面 16 response.sendRedirect("employee.jsp"); 17 } 18 }else{ 19 //登录页面 20 response.sendRedirect("http://localhost:8888/car/login.html"); 21 } 22 %>
我们在9月28日进行第三次Scrum会议,再次讨论完成了登录之后该进入的页面,在登录之后跳到的页面主要代码如下:
1 <div align="center"> 2 <a class="one">员工信息</a> 3 <ul class="kid"> 4 <li><a target="Conframe" href="showEmployee.jsp">基本信息</a></li> 6 <li><a target="Conframe" href="leaveEmployee.jsp">离职名单</a></li> 7 </ul> </div>
1 <% 2 request.setCharacterEncoding("utf-8"); 3 String userName = request.getParameter("userName"); 4 String userPwd = request.getParameter("userPwd"); 5 DBTools db = DBTools.getDB(); 6 //密码和账号验证 并且是在职人员 7 String sql = "select emId,emName,emPwd,emPower,emSign from employee where emName = '"+userName+"' and emPwd = '"+userPwd+"' and emSign !='离职'"; 8 // System.out.println(sql); 9 ResultSet rs = db.chaxun(sql); 10 if(rs.next() == true) { 11 if(rs.getString("emPower").equals("经理")) { 12 //经理页面 13 response.sendRedirect("admin.jsp"); 14 }else{ 15 //员工页面 16 response.sendRedirect("employee.jsp"); 17 } 18 }else{ 19 //登录页面 20 response.sendRedirect("http://localhost:8888/car/login.html"); 21 } 22