1、OAS设计文档新1Web开发与应用技术设计文档项目名称:办公自动化系统 完成日期:2012-01-05 目 录第一章 系统设计背景3第二章 系统需求分析3第三章 系统功能介绍3第四章 系统流程图8第五章 系统模块划分 8第六章 数据库的设计9第七章 详细设计及实现9第八章 主界面预览效果图20一、系统设计背景办公自动化(Office Automation System,OAS)系统,是利用先进的计算机信息技术和现代办公设备构成的人机信息处理系统,辅助管理人员进行各种办公活动。办公自动化系统由办公机构、办公人员、办公设备、网络环境、办公信息等几个基本要素构成。本系统开发的目的是紧密结合目前政府机
2、关和企事业单位的办公业务流程和管理特点,开发一套先进的、综合的、完整的、并且能有效的在局域网和广域网运行的办公自动化系统。通过该系统的使用,可有效地提高政府机关和企事业单位的工作效率,提升应用单位信息化管理的水平,减少工作人员的工作量,降低政府机关和企事业单位的成本。二、系统需求分析1.数据层上,实现对员工部门信息的修改、删除、更新等操作,同时记录考勤状况。2.业务层上,实现各种与数据层的交互工作。3.视觉上,尽可能的做到人机交互,简明、易懂。4.主界面上显示当前日期,展示经理风采。三、系统功能介绍 登录功能【系统管理员】 查看公告 考勤管理(设置上下班时间,管理员工的签到、签退等) 系统设置
3、(设置个人密码,为系统设置新的管理员等) 部门管理(编辑新增加的部门以及部门信息的维护工作)【普通用户】 个人操作(包括查看系统公告,修改个人登录密码) 考勤签到(完成个人考勤,即签到和签退功能的实现) 查看系统公告 上下班签到时间设置 上下班签到功能 密码重置功能 添加新管理员设置 新建部门功能 更新部门信息四、系统流程图五、系统模块划分【模块划分】登录模块员工管理模块管理员和普通员工模块数据维护模块上班签到的查询部门增删信息更新模块六、数据库设计数据库中存在8个表单分别如下:七、详细设计及实现1. 连接数据库:Web.configue:BaseClass这个实现连接的类:using Sys
4、tem;using System.Data;using System.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 c
5、lass BaseClass : System.Web.UI.Page public BaseClass() / / TODO: 在此处添加构造函数逻辑 / #region 显?示?客户端?对?话框 / / WebMessageBox用?来?在客户端?弹獭?出?对?话框。 / / 对?话框显?示?内容 / public string MessageBox(string TxtMessage) string str; str = alert( + TxtMessage + ); return str; #endregion #region 执行DSQL语?句? / / 用?来?执行DSQL语?句
6、? / / sQueryString SQL字?符?串? / 操作痢?是?否?成功|(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(); retur
7、n true; else con.Close(); return false; / / 公?告?信?息添 ?加 / / 标括?题琣 / 公?告?内容 / 发?布?公?告?人? / public Boolean ExecProcNotice(string title, string content, string person)/执行D公?告?程序 SqlConnection con = new SqlConnection(ConfigurationManager.AppSettingsconStr); con.Open(); SqlCommand cmd = new SqlCommand(in
8、sert_tb_notice, con); cmd.CommandType = 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.Te
9、xt, 0); /0为aText默?认?存?储洹?的?最?大洙?值 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; e
10、lse con.Close(); return false; #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 =
11、ConfigurationManager.ConnectionStringsconStr.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
12、;using System.Data;using System.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
13、.UI.Page protected void Page_Load(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 departmen
14、t values( + txtName.Text + , + 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;usin
15、g System.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_BaseDepartmentManager : System.Web.UI.Page BaseClass
16、bc = new BaseClass(); protected 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
17、.DataBind(); protected void GridView1_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.GridVi
18、ew1.DataKeyse.RowIndex.Value.ToString() + ); 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 Syste
19、m.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_BaseDepartmentUpdate : System.Web.UI.Page BaseClass bc = new BaseClass(); protected void Page_Load(object sender
20、, EventArgs e) if (SessionloginName = 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
21、.Text = ds.Tables0.Rows02.ToString(); 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(部?门?基本?信
22、?息修T改?成功|!); Response.Write(this.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; td style=vertical-align: top; width: 224px; height: 173px c
copyright@ 2008-2022 冰豆网网站版权所有
经营许可证编号:鄂ICP备2022015515号-1