《办公自动化系统设计文档.docx》由会员分享,可在线阅读,更多相关《办公自动化系统设计文档.docx(20页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、Web开发与应用技术设计文档项目名称:办公自动化系统 完成日期:2012-01-05 目 录3338第五章 系统模块划分8 一、系统设计背景办公自动化(Office Automation System,OAS)系统,是利用先进的计算机信息技术和现代办公设备构成的人机信息处理系统,辅助管理人员进行各种办公活动。办公自动化系统由办公机构、办公人员、办公设备、网络环境、办公信息等几个基本要素构成。本系统开发的目的是紧密结合目前政府机关和企事业单位的办公业务流程和管理特点,开发一套先进的、综合的、完整的、并且能有效的在局域网和广域网运行的办公自动化系统。通过该系统的使用,可有效地提高政府机关和企事业单
2、位的工作效率,提升应用单位信息化管理的水平,减少工作人员的工作量,降低政府机关和企事业单位的成本。二、系统需求分析1. 数据层上,实现对员工部门信息的修改、删除、更新等操作,同时记录考勤状况。2.业务层上,实现各种与数据层的交互工作。3.视觉上,尽可能的做到人机交互,简明、易懂。4.主界面上显示当前日期,展示经理风采。三、系统功能介绍 登录功能【系统管理员】 查看公告 考勤管理(设置上下班时间,管理员工的签到、签退等) 系统设置(设置个人密码,为系统设置新的管理员等) 部门管理(编辑新增加的部门以及部门信息的维护工作)【普通用户】 个人操作(包括查看系统公告,修改个人登录密码) 考勤签到(完成
3、个人考勤,即签到和签退功能的实现) 查看系统公告 上下班签到时间设置 上下班签到功能 密码重置功能 添加新管理员设置 新建部门功能 更新部门信息四、系统流程图 登录 系统管理员 普通职员修改个人信息修改密码信息修改部门信息修改考勤信息修改个人密码查看公告考勤签到签退五、系统模块划分【模块划分】登录模块员工管理模块管理员和普通员工模块数据维护模块上班签到的查询部门增删信息更新模块六、数据库设计数据库中存在8个表单分别如下:七、详细设计及实现1. 连接数据库:Web.configue:BaseClass这个实现连接的类:using System;using System.Data;using Sy
4、stem.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.Data.SqlClient;using System.Collections;/ / BaseClass 的摘要说明/ public class BaseClass : System.Web.UI
5、.Page public BaseClass() / / TODO: 在此处添加构造函数逻辑 / #region 显?示?客户端?对?话框 / / WebMessageBox用?来?在客户端?弹獭?出?对?话框。 / / 对?话框显?示?内容 / public string MessageBox(string TxtMessage) string str; str = alert( + TxtMessage + ); return str; #endregion #region 执行DSQL语?句? / / 用?来?执行DSQL语?句? / / sQueryString SQL字?符?串? /
6、 操作痢?是?否?成功|(TrueFalse) public Boolean ExecSQL(string sQueryString) SqlConnection con = new SqlConnection(ConfigurationManager.AppSettingsconStr); con.Open(); SqlCommand dbCommand = new SqlCommand(sQueryString, con); if (dbCommand.ExecuteNonQuery() 0) con.Close(); return true; else con.Close(); retu
7、rn false; / / 公?告?信?息添?加 / / 标括?题琣 / 公?告?内容 / 发?布?公?告?人? / public Boolean ExecProcNotice(string title, string content, string person)/执行D公?告?程序 SqlConnection con = new SqlConnection(ConfigurationManager.AppSettingsconStr); con.Open(); SqlCommand cmd = new SqlCommand(insert_tb_notice, con); cmd.Comma
8、ndType = CommandType.StoredProcedure; /公?告?标括?题琣 SqlParameter pTitle = new SqlParameter(noticeTitle, SqlDbType.VarChar, 80);/设?置?数簓据Y库a参?数簓 pTitle.Value = title; cmd.Parameters.Add(pTitle); /公?告?详细?内容 SqlParameter pContent = new SqlParameter(noticeContent, SqlDbType.Text, 0); /0为aText默?认?存?储洹?的?最?大洙
9、?值 pContent.Value = content; cmd.Parameters.Add(pContent); /公?告?发?布?人? SqlParameter pPerson = new SqlParameter(noticePerson, SqlDbType.VarChar, 20); pPerson.Value=person; cmd.Parameters.Add(pPerson); /判D断?运?行D结果? if (cmd.ExecuteNonQuery() 0) con.Close(); return true; else con.Close(); return false;
10、#endregion #region 查询SQL语?句? / /?执行D查询戗?戗?语?句? / / sQueryString SQL字?符?串? / TableName 数簓据Y表括?名?称? / public System.Data.DataSet GetDataSet(string sQueryString, string TableName) SqlConnection con = new SqlConnection(ConfigurationManager.AppSettingsconStr); /string s1 = ConfigurationManager.Connection
11、StringsconStr.ConnectionString; / SqlConnection con = new SqlConnection(s1); SqlDataAdapter dbAdapter = new SqlDataAdapter(sQueryString, con); DataSet dataset = new DataSet(); dbAdapter.Fill(dataset, TableName); return dataset; #endregion以部门信息修改为例写出各项数据绑定操作using System;using System.Data;using System
12、.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;public partial class BaseInfo_BaseDepartmentAdd : System.Web.UI.Page protected void Page_Lo
13、ad(object sender, EventArgs e) if (SessionloginName = null) Response.Write(this.parent.location.href=./Default.aspx); protected void imgBtnSave_Click(object sender, ImageClickEventArgs e) BaseClass bc = new BaseClass(); Boolean bl; bl = bc.ExecSQL(insert into department values( + txtName.Text + , +
14、txtContent.Text+ , +txtid.Text +); if (bl) Response.Write(bc.MessageBox(新建部门成功!); else Response.Write(bc.MessageBox(新建部门失败!); protected void imgBtnClear_Click(object sender, ImageClickEventArgs e) txtName.Text = ; txtContent.Text = ; using System;using System.Data;using System.Configuration;using Sy
15、stem.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;public partial class BaseInfo_BaseDepartmentManager : System.Web.UI.Page BaseClass bc = new BaseClass(); protected
16、 void Page_Load(object sender, EventArgs e) if (SessionloginName = null) Response.Write(this.parent.location.href=./Default.aspx); return; GridView1.DataSource = bc.GetDataSet(select * from department, department); GridView1.DataKeyNames = new String deptid ; GridView1.DataBind(); protected void Gri
17、dView1_PageIndexChanging(object sender, GridViewPageEventArgs e) GridView1.PageIndex = e.NewPageIndex; GridView1.DataBind(); protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e) try bc.ExecSQL(delete from department where deptid= + this.GridView1.DataKeyse.RowIndex.Value.To
18、String() + ); GridView1.DataSource = bc.GetDataSet(select * from department, department); GridView1.DataBind(); catch (Exception ex) Response.Write(bc.MessageBox(ex.Message); using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security
19、;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;public partial class BaseInfo_BaseDepartmentUpdate : System.Web.UI.Page BaseClass bc = new BaseClass(); protected void Page_Load(object sender, EventArgs e) if (Sessionlogin
20、Name = null) Response.Write(this.parent.location.href=./Default.aspx); return; if (!IsPostBack) DataSet ds = bc.GetDataSet(select * from department where deptid= + Request.QueryStringid.ToString() + , department); txtName.Text = ds.Tables0.Rows01.ToString(); txtContent.Text = ds.Tables0.Rows02.ToStr
21、ing(); protected void imgBtnSave_Click(object sender, ImageClickEventArgs e) Boolean bl = bc.ExecSQL(update department set deptname= + txtName.Text + ,deptmaid= + txtContent.Text + where deptid= + Request.QueryStringid + ); if (bl) Response.Write(bc.MessageBox(部?门?基本?信?息修T改?成功|!); Response.Write(thi
22、s.parent.MainFrame.location.href=BaseDepartmentManager.aspx); else Response.Write(bc.MessageBox(部?门?基本?信?息修T改?失败!); protected void imgBtnReturn_Click(object sender, ImageClickEventArgs e) Response.Write(this.parent.MainFrame.location.href=BaseDepartmentManager.aspx); 其他的数据实现类参见BaseInfo文件夹关于界面设计,以Default为例 办公?自?动化管理系统3 .style1 height: 166px; .style2 height: 166px; text-align: center; width: 268435344px; .style4 text-align: center;