收藏 分享(赏)

OAS设计文档新1.docx

上传人:拉拉链 文档编号:13435076 上传时间:2022-08-23 格式:DOCX 页数:22 大小:949.97KB
下载 相关 举报
OAS设计文档新1.docx_第1页
第1页 / 共22页
OAS设计文档新1.docx_第2页
第2页 / 共22页
OAS设计文档新1.docx_第3页
第3页 / 共22页
亲,该文档总共22页,到这儿已超出免费预览范围,如果喜欢就下载吧!
资源描述

1、Web开发与应用技术设计文档项目名称:办公自动化系统 完成日期:2012-01-05 目 录第一章 系统设计背景3第二章 系统需求分析3第三章 系统功能介绍3第四章 系统流程图8第五章 系统模块划分 8第六章 数据库的设计9第七章 详细设计及实现9第八章 主界面预览效果图20一、系统设计背景办公自动化(Office Automation System,OAS)系统,是利用先进的计算机信息技术和现代办公设备构成的人机信息处理系统,辅助管理人员进行各种办公活动。办公自动化系统由办公机构、办公人员、办公设备、网络环境、办公信息等几个基本要素构成。本系统开发的目的是紧密结合目前政府机关和企事业单位的办

2、公业务流程和管理特点,开发一套先进的、综合的、完整的、并且能有效的在局域网和广域网运行的办公自动化系统。通过该系统的使用,可有效地提高政府机关和企事业单位的工作效率,提升应用单位信息化管理的水平,减少工作人员的工作量,降低政府机关和企事业单位的成本。二、系统需求分析1. 数据层上,实现对员工部门信息的修改、删除、更新等操作,同时记录考勤状况。2.业务层上,实现各种与数据层的交互工作。3.视觉上,尽可能的做到人机交互,简明、易懂。4.主界面上显示当前日期,展示经理风采。三、系统功能介绍 登录功能【系统管理员】 查看公告 考勤管理(设置上下班时间,管理员工的签到、签退等) 系统设置(设置个人密码,

3、为系统设置新的管理员等) 部门管理(编辑新增加的部门以及部门信息的维护工作)【普通用户】 个人操作(包括查看系统公告,修改个人登录密码) 考勤签到(完成个人考勤,即签到和签退功能的实现) 查看系统公告 上下班签到时间设置 上下班签到功能 密码重置功能 添加新管理员设置 新建部门功能 更新部门信息四、系统流程图 登录 系统管理员 普通职员修改个人信息修改密码信息修改部门信息修改考勤信息修改个人密码查看公告考勤签到签退五、系统模块划分【模块划分】登录模块员工管理模块管理员和普通员工模块数据维护模块上班签到的查询部门增删信息更新模块六、数据库设计数据库中存在8个表单分别如下:七、详细设计及实现1.

4、连接数据库:Web.configue:BaseClass这个实现连接的类:using System;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 Sy

5、stem.Collections;/ / BaseClass 的摘要说明/ public class BaseClass : System.Web.UI.Page public BaseClass() / / TODO: 在此处添加构造函数逻辑 / #region 显?示?客户端?对?话框 / / WebMessageBox用?来?在客户端?弹獭?出?对?话框。 / / 对?话框显?示?内容 / public string MessageBox(string TxtMessage) string str; str = alert( + TxtMessage + ); return str; #

6、endregion #region 执行DSQL语?句? / / 用?来?执行DSQL语?句? / / sQueryString SQL字?符?串? / 操作痢?是?否?成功|(TrueFalse) public Boolean ExecSQL(string sQueryString) SqlConnection con = new SqlConnection(ConfigurationManager.AppSettingsconStr); con.Open(); SqlCommand dbCommand = new SqlCommand(sQueryString, con); if (dbC

7、ommand.ExecuteNonQuery() 0) con.Close(); return true; else con.Close(); return false; / / 公?告?信?息添?加 / / 标括?题琣 / 公?告?内容 / 发?布?公?告?人? / public Boolean ExecProcNotice(string title, string content, string person)/执行D公?告?程序 SqlConnection con = new SqlConnection(ConfigurationManager.AppSettingsconStr); c

8、on.Open(); SqlCommand cmd = new SqlCommand(insert_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 =

9、 new SqlParameter(noticeContent, SqlDbType.Text, 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.Exe

10、cuteNonQuery() 0) con.Close(); return true; else 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(Configura

11、tionManager.AppSettingsconStr); /string s1 = ConfigurationManager.ConnectionStringsconStr.ConnectionString; / SqlConnection con = new SqlConnection(s1); SqlDataAdapter dbAdapter = new SqlDataAdapter(sQueryString, con); DataSet dataset = new DataSet(); dbAdapter.Fill(dataset, TableName); return datas

12、et; #endregion以部门信息修改为例写出各项数据绑定操作using System;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

13、class BaseInfo_BaseDepartmentAdd : System.Web.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(); Bool

14、ean bl; bl = bc.ExecSQL(insert into department 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

15、.Text = ; using System;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_BaseDepa

16、rtmentManager : System.Web.UI.Page BaseClass 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

17、.DataKeyNames = new String deptid ; GridView1.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(delet

18、e from department where deptid= + this.GridView1.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.Confi

19、guration;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_BaseDepartmentUpdate : System.Web.UI.Page BaseClass bc = new BaseCl

20、ass(); protected void Page_Load(object sender, 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.Te

21、xt = ds.Tables0.Rows01.ToString(); txtContent.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 + );

22、if (bl) Response.Write(bc.MessageBox(部?门?基本?信?息修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;

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 企业管理 > 企业信息化

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报