




已阅读5页,还剩16页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
苏州科技学院 管理信息系统课程设计说 明书 设设计计题题目目药店管理系统药店管理系统 院院 系系电子与信息工程学院电子与信息工程学院 专专 业业计算机科学与技术计算机科学与技术 学学生生姓姓名名徐徐明明惠惠学学号号040421212 起起迄迄日日期期2008年年06月月31日日 2008年年07月月08日日 设设计计地地点点天平学院计算中心天平学院计算中心 班建民班建民职职称称副教授副教授 指指导导教教师师 职职称称 1 设计目的设计目的 巩固数据库的基本概念 结合实际的操作和设计 使学生掌握数据库系 统的基本概念 原理和技术 将理论与实际相结合 应用现有的数据建模工具 和数据库管理系统软件 规范 科学地完成一个小型数据库的设计与实现 巩固 C 程序设计基础知识 主要包括语言基础 窗体界面设计 文本文 件操作 数据库访问 数据绑定等 注意要养成良好的编码习惯 包括缩进 遵循命名规范等 结合软件工程知识了解一个实用系统的面向对象设计方法 功能描述 系统设计 模块设计 类设计 本例中仅窗体类 培养学生调查研究 查阅技术文献 资料 手册以及编写技术文献的能 力 把理论与实践相结合 提高其实际动手能力和创新能力 学会从用户的角度考虑界面构成 合理划分模块功能 使系统结构清晰 易于设计和维护 2 系统描述系统描述 药店管理管理系统要求实现对药品的进 销 存 包括药品的入库 库存 查询及出库 进行计算机管理 该系统主要包括以下内容 操作员身份验证 进货要求更新库存表 添加新行 打印入库单 本设计仅包括入库表单 不打印 入库单表只许新增 不许修改和删除 库存要求查询功能 要求灵活地按照各字段模糊查询 销售要求更新库存表 减少数量 数量为 0 时删除库存记录 打印出库 单 本设计仅包括出库表单 不打印 出库单表只许新增 不许修改和删除 简单财务功能 本设计不包含 3 系统分析与设计系统分析与设计 3 1 系统总体设计系统总体设计 其总体结构设计如下图 身份验证 修改密码入库库存出 库 DBMS 文件 主模块 图 3 1 系统总体结构 3 2 模块分析与设计模块分析与设计 身份验证模块 用户名密码无误方可进入主模块 系统主模块 调用各子模块 入库子模块 提供以下五种功能 浏览入库单据信息 添加入库单据 可以由操作员录入药品信息 提供撤消编辑功能 保存新记录到数据库入库单表 并更新库存表 自动计算该药品的总金额 不许编辑已经保存到数据库的入库单信息 库存子模块 提供灵活的库存查询功能 并显示查找结果 提供从库存界面直接出库的方便操作 出库子模块 提供灵活的出库查询功能 并显示查找结果 进行模糊查询 身份修改子模块 可以根据需要修改用户名和密码 3 3 数据结构数据结构 药品信息的相关数据表结构 入库单数据表结构 列名数据类型长度允许空 序号 主键 int 标识列 自 动增量 1 种子 1 4否 入库单编号Char20是 来货单位Nchar50是 药品名称Nchar50是 类别Nchar10是 规格Nchar10是 单位Nchar10是 数量Int4是 单价decimal9是 总计decimal9是 付款方式Nchar10是 经办人Nchar10是 入库日期Nchar10是 产地Nchar50是 生产日期Nchar10是 有效期Nchar10是 库存数据表结构 列名数据类型长度允许空 序号 主键 int 标识列 自 动增量 1 种子 1 4否 来货单位Nchar50是 药品名称Nchar50是 类别Nchar10是 规格Nchar10是 单位Nchar10是 产地Nchar50是 入库日期Nchar10是 生产日期Nchar10是 数量Int4是 单价decimal9是 总计decimal9是 有效期Nchar10是 出库单数据表结构 列名数据类型长度允许空 序号 主键 出库单编号Char20否 购买单位Nchar50是 药品名称Nchar50是 类别Nchar10是 规格Nchar10是 单位Nchar10是 数量Int4是 单价decimal9是 总计decimal9是 付款方式Nchar10是 经办人Nchar10是 出库日期Nchar10是 产地Nchar50是 生产日期Nchar10是 有效期Nchar10是 窗体类数据结构 包括六个窗体 身份验证窗体 系统主模块窗体 入库窗体 库存窗体 出库窗体 身份修改窗体 3 4 算法分析算法分析 总计总计 单价单价 数量数量 this textBoxzongji Text Convert ToDecimal this textBoxdanjia Text Convert ToDecimal this textBoxshuliang Text ToString 4 各功能模块主要界面各功能模块主要界面 4 1 身份验证模块身份验证模块 身份验证设计界面图如下 图 4 1 身份验证设计界面 4 2 主模块主模块 主模块设计界面图如下 图 4 2 主模块设计界面 4 3 入库子模块入库子模块 入库子模块设计界面如下图 图 4 3 入库子模块界面 4 4 库存子模块库存子模块 库存子模块设计界面图如下 图 4 4 库存子模块设计界面 4 5 出库子模块出库子模块 出库子模块设计界面图如下 图 4 5 出库子模块界面 4 6 身份修改子模块身份修改子模块 库存子模块设计界面图如下 图 4 6 身份修改模块界面 5 程序主要代码程序主要代码 5 1 登录的代码登录的代码 namespace kechengsheji public partial class Form1 Form private SqlConnection conn private SqlCommand com public int i 0 private SqlDataReader reader public Form1 InitializeComponent conn new SqlConnection server local database coursedesign integrated security true com new SqlCommand conn com CommandText select from mima private void 登录button Click object sender EventArgs e string name string pwd conn Open reader com ExecuteReader if reader Read name reader 0 ToString pwd reader 1 ToString if textBoxMima Text Trim pwd Trim myform2 Show else MessageBox Show 密码或用户名错误 textBoxname Text textBoxMima Text i this Show if i 3 MessageBox Show this 你的输入错误大于 次 关闭 提示 MessageBoxButtons OK MessageBoxIcon Information this Close reader Close conn Close private void 取消button Click object sender EventArgs e this Close 5 2 药品进销存系统的设计的代码药品进销存系统的设计的代码 namespace kechengsheji public partial class formzhuchangti Form private SqlConnection conn private SqlCommand com private SqlDataReader reader public formzhuchangti InitializeComponent conn new SqlConnection server local database coursedesign integrated security true com new SqlCommand conn com CommandText select from mima private void button2 Click object sender EventArgs e Form5 myform5 new Form5 myform5 Show private void 入库ToolStripMenuItem Click object sender EventArgs e Formruku myform3 new Formruku myform3 MdiParent this myform3 Show private void 库存ToolStripMenuItem Click object sender EventArgs e Formkucun myform4 new Formkucun myform4 MdiParent this myform4 Show private void 出库ToolStripMenuItem Click object sender EventArgs e Form5 myform5 new Form5 myform5 MdiParent this myform5 Show private void form2 Load object sender EventArgs e conn Open reader com ExecuteReader if reader Read this toolStripStatusLabel2 Text DateTime Now ToString this toolStripStatusLabel1 Text 操作员 reader 0 ToString reader Close conn Close private void 修改用户信息ToolStripMenuItem Click object sender EventArgs e Formxiugai myform6 new Formxiugai myform6 MdiParent this myform6 Show 5 3 入库单代码的设置入库单代码的设置 namespace kechengsheji public partial class Formruku Form private SqlConnection conn private SqlCommand com public Formruku InitializeComponent private void label3 Click object sender EventArgs e private void comboBox1 SelectedIndexChanged object sender EventArgs e private void bindingNavigator1 RefreshItems object sender EventArgs e private void Form3 Load object sender EventArgs e TODO 这行代码将数据加载到表 courseDesignDataSet input 中 您可以 根据需要移动或移除它 this inputTableAdapter Fill this courseDesignDataSet input textBoxbiaohao DataBindings Add new Binding text inputBindingSource 入 库单编号 textBoxlaihuodanwei DataBindings Add new Binding text inputBindingSource 来货单位 textBoxyaopinmingcheng DataBindings Add new Binding text inputBindingSource 药品名称 textBoxguige DataBindings Add new Binding text inputBindingSource 规格 textBoxchandi DataBindings Add new Binding text inputBindingSource 产地 textBoxshengchanriqi DataBindings Add new Binding text inputBindingSource 生产日期 textBoxdanjia DataBindings Add new Binding text inputBindingSource 单价 textBoxzongji DataBindings Add new Binding text inputBindingSource 总计 comboBoxfukuanfangshi DataBindings Add new Binding text inputBindingSource 付款方式 textBoxruluriqi DataBindings Add new Binding text inputBindingSource 入库 日期 textBoxyouxiaoqi DataBindings Add new Binding text inputBindingSource 有 效期 textBoxdanwei DataBindings Add new Binding text inputBindingSource 单位 textBoxshuliang DataBindings Add new Binding text inputBindingSource 数 量 textBoxjingbanren DataBindings Add new Binding text inputBindingSource 经办人 comboBoxleibie DataBindings Add new Binding text inputBindingSource 类 别 this toolStripStatusLabel2 Text 第 bindingNavigatorPositionItem Text 页 this toolStripStatusLabel4 Text 共 bindingNavigatorCountItem Text 页入 库单 private void button1 Click object sender EventArgs e this textBoxzongji Text Convert ToDecimal this textBoxdanjia Text Convert ToDecimal this textBoxshuliang Text ToString private void bindingNavigatorMoveNextItem1 Click object sender EventArgs e private void toolStripStatusLabel1 Click object sender EventArgs e private void toolStripStatusLabel2 Click object sender EventArgs e private void toolStripButton1 Click object sender EventArgs e private void bindingNavigatorAddNewItem1 Click object sender EventArgs e textBoxbiaohao Text I DateTime Now ToString textBoxruluriqi Text DateTime Now ToString private void toolStripButton4 Click object sender EventArgs e this inputBindingSource EndEdit this inputTableAdapter Update this courseDesignDataSet input conn new SqlConnection server local database coursedesign integrated security true com new SqlCommand conn com CommandText insert into store values textBoxbiaohao Text textBoxlaihuodanwei Text textBoxyaopinmingcheng Text textBoxguige Text textBoxchandi Text textBoxshengchanriqi Text textBoxdanjia Text textBoxzongji Text textBoxyouxiaoqi Text textBoxruluriqi Text textBoxdanwei Text textBoxshuliang Text textBoxjingbanren Text comboBoxleibie Text comboBoxfukuanfangshi Text private void bindingNavigatorDeleteItem1 Click object sender EventArgs e textBoxbiaohao Text I DateTime Now ToString textBoxlaihuodanwei Text textBoxyaopinmingcheng Text textBoxguige Text textBoxchandi Text textBoxshengchanriqi Text textBoxdanjia Text textBoxzongji Text textBoxruluriqi Text DateTime Now ToString textBoxyouxiaoqi Text textBoxdanwei Text textBoxshuliang Text textBoxjingbanren Text comboBoxleibie Text comboBoxfukuanfangshi Text private void toolStripButton3 Click object sender EventArgs e textBoxbiaohao Text I DateTime Now ToString textBoxlaihuodanwei Text textBoxyaopinmingcheng Text textBoxguige Text textBoxchandi Text textBoxshengchanriqi Text textBoxdanjia Text textBoxzongji Text textBoxruluriqi Text DateTime Now ToString textBoxyouxiaoqi Text textBoxdanwei Text textBoxshuliang Text textBoxjingbanren Text comboBoxleibie Text comboBoxfukuanfangshi Text 5 4 库存查询的相关代码库存查询的相关代码 namespace kechengsheji public partial class Formkucun Form SqlConnection conn SqlCommand com SqlDataAdapter ad BindingSource sour DataTable ta public Formkucun InitializeComponent private void storeBindingNavigatorSaveItem Click object sender EventArgs e this Validate this storeBindingSource EndEdit this storeTableAdapter Update this courseDesignDataSet store private void Form4 Load object sender EventArgs e TODO 这行代码将数据加载到表 courseDesignDataSet store 中 您可以 根据需要移动或移除它 this storeTableAdapter Fill this courseDesignDataSet store private void storeBindingNavigator RefreshItems object sender EventArgs e private void toolStripButton1 Click object sender EventArgs e conn new SqlConnection server local database coursedesign integrated security true com new SqlCommand select from store where chaxun SelectedItem ToString like zhi Text conn ad new SqlDataAdapter com sour new BindingSource ta new DataTable sour DataSource ta ad Fill ta storeDataGridView DataSource sour private void toolStripComboBox1 Click object sender EventArgs e private void fillByToolStripButton Click object sender EventArgs e try this storeTableAdapter FillBy this courseDesignDataSet store catch System Exception ex System Windows Forms MessageBox Show ex Message 5 5 出库相关代码出库相关代码 namespace kechengsheji public partial class Form5 Form public Form5 InitializeComponent private void outputBindingNavigatorSaveItem Click object sender EventArgs e this Validate this outputBindingSource EndEdit this outputTableAdapter Update this courseDesignDataSet output private void Form5 Load object sender EventArgs e TODO 这行代码将数据加载到表 courseDesignDataSet output 中 您可 以根据需要移动或移除它 this outputTableAdapter Fill this courseDesignDataSet output private void bindingNavigatorAddNewItem Click object sender EventArgs e private void bindingNavigatorMovePreviousItem Click object sender EventArgs e private void outputDataGridView CellContentClick object sender DataGridViewCellEventArgs e 5 6 用户信息修改代码用户信息修改代码 namespace kechengsheji public partial class Formxiugai Form private SqlConnection conn private SqlCommand com comm public Formxiugai InitializeComponent private void button1 Click object sender EventArgs e if xinyonghuming Text if xinmima Text conn new SqlConnection server local database coursedesign integrated security true com new SqlCommand conn com CommandText select from mima this m
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 含连带责任保证人借款合同
- 企业外包服务合同样本
- 糖尿病教学教案
- 辐射台使用过程中突发意外情况的应急预案及流程
- 供热公司清运合同样本
- 悬浮式拼装运动地板施工方案
- 除数是两位数的除法教案
- 初中物理教学经验介绍
- 中日双语外贸合同样本
- 中山办公家具购销合同标准文本
- 2025年四川省成都市青白江区招聘50人历年高频重点提升(共500题)附带答案详解
- 2025年浙江嘉兴市众业供电服务限公司招聘38人高频重点提升(共500题)附带答案详解
- 【课件】第12课+理想与典范-古希腊与古罗马美术+课件高中美术人教版(2019)美术鉴赏
- 建筑行业安全隐患举报奖励机制
- 公司事故隐患内部报告奖励机制
- Unit10 How to stay safe 教学设计-2023-2024学年教科版(广州)英语五年下册
- 家禽委托屠宰合同协议书
- 小学生诗词大赛练习资料
- 铝板幕墙监理细则
- 全过程工程咨询管理服务方案投标方案(技术方案)
- 光储电站储能系统调试方案
评论
0/150
提交评论