小言_互联网的博客

超市进销存管理系统(C#+SQL Server实现)C#窗体应用、数据库应用,生成可执行安装包程序

339人阅读  评论(0)

超市进销存管理系统(C#+SQL Server实现)窗体应用、数据库应用,设计模式

 

目录

超市进销存管理系统(C#+SQL Server实现)窗体应用、数据库应用,设计模式

设计环境及开发工具:

需求分析

系统设计

数据流图及程序结构框图

数据库概念结构设计

数据库逻辑结构设计

数据库物理结构设计

系统实现(C#语言)

最后生成可执行的安装包程序


期末大作业纷涌而来,长时间没有更新博客,更新一个SQL server的大作业,使用C#实现超市进销存管理系统,对数据库进行概念设计、逻辑设计、物理设计以及实现,确定需求目标,画出程序结构图,写出数据字典以及数据流程图,分析各实体集的属性及其之间的关系,系统实现。

超市管理系统是一个典型的进销存管理系统,其旨在解决超市商品的采购、销售、仓储等一系列操作流程中的数据信息的处理问题,提供一系列的数据分析 ,帮助经营者合理的调整各个经营运作环节的运作节奏,并对商品流转过程进行了全程跟踪管理、相应款项流通的全程记录管理和票据信息统计的管理。因此超市进销存管理系统的全面应用,规范业务流程、提高了超市的管理水平,提高资金流动的透明度,加快商品资金周转速度,进而全面提高了超市的经营水平、进而全面提升了超市的经济效益。

超市管理系统采用. NET技术和大型数据库SQL Server 2016 开发,主要是处理超市商品的采购、库存和销售各个环节的活动,具有良好的人机界面;考虑到系统的使用对象可能较多,权限管理良好;数据查询方便,支持多条件查询;系统支持良好的数据备份和还原操作,有效保护数据,减少意外损失;在相应的权限下,可方便地删除数据;数据计算自动完成,尽量减少人工干预。

设计环境及开发工具:

操作系统: Windows 10。

数据库管理系统:选用Mircrosoft 公司的Sql Server 2016数据库管理系统。

开发工具:选用visual studio 2019

需求分析

超市管理是多数大型超市日常经营管理中十分重要的一个组成部分,传统的手工管理方式呈现出越来越多的弊端。在手工管理模式下,统计,汇总处理时的工作量极其繁重,处理效率非常低,领导也无法及时了解超市资金占用的实际状况。通过系统管理,企业可以直观分析超市的情况,提高超市的竞争能力。

通过资料与实际调查,要求本系统具有以下功能。

1.具有良好的人机界面。

2.如果系统的使用对象较多, 则要求有良好的权限管理。

3.方便的数据查询,支持多条件查询。

4.系统支持良好的数据备份和还原操作,有效保护数据,减少意外损失。

5.在相应的权限下,可方便地删除数据。

6.数据计算自动完成, 尽量减少人工干预。

7.销售情况打印功能。

8.动态查询

系统设计

超市管理系统主要由基本信息管理、进货管理、销售管理、库存管理、系统维护等模块组成,具体规划如下:

基本信息管理模块。基本信息管理模块主要用于实现系统基本数据的录入。

进货管理模块。 该模块主要用于实现商品的进货数据录入、退货数据录入和进货查询分析。

销售管理模块。该模块主要用于实现商品的销售数据录入、客户退货数据录入和销售信息查询。

库存管理模块。库存管理模块主要用于实现库存调拨、库存商品数量上限报警和库存数据查询。

系统维护模块。系统维护模块用于实现系统用户设置、操作权限设置、密码修改、数据备份和数据恢复。

数据流图及程序结构框图

                                 

                        

数据库概念结构设计

本系统后台数据库中的数据表有:

tb_Company(公司基本信息表)

tb_Customer(会员基本信息表)

tb_Department(部门基本信息表)

tb_Depot(仓库类别信息表)

tb_Goods(商品进货信息表)

tb_Popedom(系统权限信息表)

tb_Post(员工职位表)

tb_ReGoods(商品退货信息表)

tb_Sell(商品销售信息表)

tb_Stock(库存信息表)

tb_StockTemp(库存调拨信息表)

tb_Unit(商品信息表)

tb_User(员工基本信息表)

                             

数据库逻辑结构设计

实体集:

       商品信息实体、员工信息实体、退货商品实体、商品销售实体、商品库存实体,商品调拨信息实体

实体属性:

    商品信息实体:商品进货ID,进货员工ID,进货公司,仓库类别,商品名称,进货数量,进货时间,进货价格,销售价格

    员工信息实体:员工姓名,员工性别,系统登陆名,系统登陆密码,所在部门,员工职位,

    家庭住址,家庭电话,联系电话

    退货商品实体:退货商品ID,商品名称,客户ID,公司名称,仓库名称,退货时间,退货数量,退货原因

    商品销售实体:销售ID,商品ID,销售数量,商品规格,销售价格,应付金额,实付金额

    商品库存实体:库存ID,商品ID,库存名称,商品名称,库存数量,报警数量,应付金额,实付金额

    商品调拨信息实体:调拨ID,操作员ID,商品ID,商品名称,调出仓库,调入仓库,调动数量

数据库物理结构设计

部分表如下:

                                             

                                             

                                       

                                 

系统实现(C#语言)

部分窗体及代码如下:

                                             


  
  1. public partial class Login : Form{
  2. SqlBaseClass G_SqlExecute = new SqlBaseClass(); //声明类对象
  3. PropertyClass G_Property = new PropertyClass();
  4. WinOperationClass G_WinFormClass = new WinOperationClass();
  5. private void Login_Load(object sender, EventArgs e){
  6. string cmdtxt = "SELECT DISTINCT SysUserSort FROM tb_Popedom";
  7. this.cbxDegree.BeginUpdate();
  8. this.cbxDegree.DataSource = G_SqlExecute.GetDs(cmdtxt).Tables[ 0];
  9. this.cbxDegree.DisplayMember = "SysUserSort";
  10. this.cbxDegree.ValueMember = "SysUserSort";
  11. this.cbxDegree.EndUpdate();}
  12. private void btnOK_Click_1(object sender, EventArgs e){
  13. if ( this.txtUid.Text.Length == 0)
  14. { this.errAllInfo.SetError( this.txtUid, "用户名不能为空!");}
  15. if ( this.txtPwd.Text.Length < 6){ this.errAllInfo.SetError( this.txtPwd, "密码不能小于6位!");}
  16. string cmdtxt = "SELECT UserID,SysLoginName,Pwd,SysUserSort,PopedomID FROM v_UserView WHERE SysLoginName='" + this.txtUid.Text.Trim() + "'"+ "AND Pwd='" + this.txtPwd.Text.Trim() + "' AND SysUserSort='" + this.cbxDegree.SelectedValue.ToString() + "'";
  17. SqlDataReader P_dr = G_SqlExecute.GetReader(cmdtxt);
  18. P_dr.Read();
  19. if (P_dr.HasRows){
  20. AppMain AppForm = new AppMain();
  21. this.Hide();
  22. PropertyClass.SendNameValue = this.txtUid.Text;
  23. PropertyClass.SendPopedomValue = P_dr[ "PopedomID"].ToString();
  24. PropertyClass.SendUserIDValue = P_dr[ "UserID"].ToString();
  25. PropertyClass.SavePassword = P_dr[ "Pwd"].ToString();
  26. AppForm.Show();}
  27. else{
  28. MessageBox.Show( "用户名、密码或身份不正确!", "登录提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Information);
  29. P_dr.Close();}
  30. P_dr.Close();}
  31. private void btnCancel_Click(object sender, EventArgs e)
  32. {
  33. this.Close();
  34. }
  35. }

                            


  
  1. public partial class AppMain : Form
  2. {
  3. SqlBaseClass G_SqlClass = new SqlBaseClass();
  4. // 根据用户权限分配显示菜单
  5. public void MenuIsVisible()
  6. {
  7. ArrayList arylst = new ArrayList();
  8. ToolStripMenuItem[] menu = new ToolStripMenuItem[] {
  9. this.menuEmployee, this.menuCompany, this.menuCustomer, this.menuGoodsIn, this.menuGoodsOut, this.menuSellGoods,
  10. this.menuGoodsBack, this.menuDepotChange, this.menuDepotAlarm, this.menuSysUser, this.menuPopedomSet, this.menuDatabak, this.menuReBakData};
  11. DataSet P_ds = G_SqlClass.GetDs( "SELECT * FROM v_UserView WHERE SysLoginName = '"+ PropertyClass.SendNameValue+ "'");
  12. for ( int i = 0; i < 13; i++)
  13. {
  14. arylst.Add(P_ds.Tables[ 0].Rows[ 0][ 14+i].ToString());
  15. }
  16. for ( int j = 0; j < arylst.Count; j++)
  17. {
  18. if (arylst[j].ToString() == "False")
  19. {
  20. menu[j].Visible = false;
  21. }
  22. else
  23. {
  24. menu[j].Visible = true;
  25. }
  26. }
  27. }
  28. private void timer1_Tick(object sender, EventArgs e)
  29. {
  30. this.statusTime.Text = "当前时间:" + DateTime.Now.ToString();
  31. }
  32. private void AppMain_Load(object sender, EventArgs e)
  33. {
  34. this.timer1.Start();
  35. this.statusUser.Text = "系统操作员:"+PropertyClass.SendNameValue;
  36. MenuIsVisible();
  37. }
  38. private void Menu_Click(object sender, EventArgs e)
  39. {
  40. WinOperationClass P_Menu = new WinOperationClass();
  41. P_Menu.ShowForm((ToolStripMenuItem)sender, this);
  42. }
  43. private void AppMain_FormClosed_1(object sender, FormClosedEventArgs e)
  44. {
  45. if (MessageBox.Show( "确定要退出吗?", "提示对话框", MessageBoxButtons.YesNo, MessageBoxIcon.Information) == DialogResult.Yes)
  46. {
  47. Application.Exit();
  48. this.Dispose();
  49. }
  50. else
  51. {
  52. AppMain app = new AppMain();
  53. app.Show();
  54. }
  55. }
  56. }

                                       


  
  1. public partial class CompanyInfo : Form
  2. {
  3. SqlBaseClass G_SqlClass = new SqlBaseClass(); //声明数据库操作类的对象
  4. WinOperationClass G_OperationForm = new WinOperationClass();
  5. int G_Int_status; //保存操作按钮数据
  6. private void ControlStatus()
  7. {
  8. this.toolSave.Enabled = ! this.toolSave.Enabled;
  9. this.toolAdd.Enabled = ! this.toolAdd.Enabled;
  10. this.toolCancel.Enabled = ! this.toolCancel.Enabled;
  11. this.toolAmend.Enabled = ! this.toolAmend.Enabled;
  12. this.txtAddress.ReadOnly = ! this.txtAddress.ReadOnly;
  13. this.txtCompanyName.ReadOnly = ! this.txtCompanyName.ReadOnly;
  14. this.txtDirector.ReadOnly = ! this.txtDirector.ReadOnly;
  15. this.txtFax.ReadOnly = ! this.txtFax.ReadOnly;
  16. this.txtPhone.ReadOnly = ! this.txtPhone.ReadOnly;
  17. this.txtRemark.ReadOnly = ! this.txtRemark.ReadOnly;
  18. }
  19. private void FillControls()
  20. {
  21. try
  22. {
  23. this.txtCompanyName.Text = this.dgvCompanyInfo[ 1, this.dgvCompanyInfo.CurrentCell.RowIndex].Value.ToString();
  24. this.txtDirector.Text = this.dgvCompanyInfo[ 2, this.dgvCompanyInfo.CurrentCell.RowIndex].Value.ToString();
  25. this.txtFax.Text = this.dgvCompanyInfo[ 4, this.dgvCompanyInfo.CurrentCell.RowIndex].Value.ToString();
  26. this.txtPhone.Text = this.dgvCompanyInfo[ 3, this.dgvCompanyInfo.CurrentCell.RowIndex].Value.ToString();
  27. this.txtRemark.Text = this.dgvCompanyInfo[ 6, this.dgvCompanyInfo.CurrentCell.RowIndex].Value.ToString();
  28. this.txtAddress.Text = this.dgvCompanyInfo[ 5, this.dgvCompanyInfo.CurrentCell.RowIndex].Value.ToString();
  29. }
  30. catch { }
  31. }
  32. private void ClearControls()
  33. {
  34. this.txtAddress.Text = "";
  35. this.txtCompanyName.Text = "";
  36. this.txtDirector.Text = "";
  37. this.txtFax.Text = "";
  38. this.txtPhone.Text = "";
  39. this.txtRemark.Text = "";
  40. }
  41. private void CompanyInfo_Load(object sender, EventArgs e)
  42. {
  43. string cmdtxt = "SELECT CompanyID as 供应商ID,CompanyName as 供应商名称,CompanyDirector as 供应商主管,CompanyPhone as 供应商电话";
  44. cmdtxt += ",CompanyFax as 供应商传真,CompanyAddress as 供应商地址,CompanyRemark as 备注 FROM tb_Company";
  45. this.dgvCompanyInfo.DataSource = G_SqlClass.GetDs(cmdtxt).Tables[ 0];
  46. this.cbxCondition.SelectedIndex = 0;
  47. this.dgvCompanyInfo.Columns[ 0].Visible = false;
  48. }
  49. private void toolSave_Click(object sender, EventArgs e)
  50. {
  51. string P_Str_condition, P_Str_cmdtxt;
  52. switch (G_Int_status)
  53. {
  54. case 1:
  55. //下面是要执行的SQL语句
  56. P_Str_cmdtxt = "INSERT INTO tb_Company(CompanyName,CompanyDirector,CompanyPhone,CompanyFax,CompanyAddress,CompanyRemark)";
  57. P_Str_cmdtxt += " VALUES('" + this.txtCompanyName.Text + "','" + this.txtDirector.Text + "','" + this.txtPhone.Text + "'";
  58. P_Str_cmdtxt += ",'" + this.txtFax.Text + "','" + this.txtAddress.Text + "','" + this.txtRemark.Text + "')";
  59. if ( this.txtCompanyName.Text == "")
  60. {
  61. MessageBox.Show( "供应商名称不能为空!", "提示对话框", MessageBoxButtons.OK, MessageBoxIcon.Information);
  62. return;
  63. }
  64. else
  65. {
  66. //执行SQL语句并返回执行结果
  67. if (G_SqlClass.GetExecute(P_Str_cmdtxt))
  68. {
  69. MessageBox.Show( "数据添加成功!");
  70. ControlStatus();
  71. }
  72. else
  73. {
  74. MessageBox.Show( "数据添加失败!");
  75. }
  76. }
  77. break;
  78. case 2:
  79. P_Str_condition = this.dgvCompanyInfo[ 0, this.dgvCompanyInfo.CurrentCell.RowIndex].Value.ToString();
  80. P_Str_cmdtxt = "UPDATE tb_Company SET CompanyName='" + this.txtCompanyName.Text + "',CompanyDirector='" + this.txtDirector.Text + "'";
  81. P_Str_cmdtxt += ",CompanyPhone='" + this.txtPhone.Text + "',CompanyFax='" + this.txtFax.Text + "'";
  82. P_Str_cmdtxt += ",CompanyAddress='" + this.txtAddress.Text + "',CompanyRemark='" + this.txtRemark.Text + "'";
  83. P_Str_cmdtxt += " WHERE CompanyID=" + P_Str_condition + "";
  84. if (G_SqlClass.GetExecute(P_Str_cmdtxt))
  85. {
  86. MessageBox.Show( "数据修改成功!");
  87. ControlStatus();
  88. }
  89. else
  90. {
  91. MessageBox.Show( "数据修改失败!");
  92. }
  93. break;
  94. default:
  95. break;
  96. //绑定数据显示控件
  97. }
  98. string cmdtxt = "SELECT CompanyID as 供应商ID,CompanyName as 供应商名称,CompanyDirector as 供应商主管,CompanyPhone as 供应商电话";
  99. cmdtxt += ",CompanyFax as 供应商传真,CompanyAddress as 供应商地址,CompanyRemark as 备注 FROM tb_Company";
  100. this.dgvCompanyInfo.DataSource = G_SqlClass.GetDs(cmdtxt).Tables[ 0];
  101. }
  102. private void toolCancel_Click(object sender, EventArgs e)
  103. {
  104. ControlStatus();
  105. ClearControls();
  106. }
  107. private void toolAdd_Click(object sender, EventArgs e)
  108. {
  109. ControlStatus();
  110. ClearControls();
  111. G_Int_status = 1;
  112. }
  113. private void toolAmend_Click(object sender, EventArgs e)
  114. {
  115. ControlStatus();
  116. G_Int_status = 2;
  117. }
  118. private void toolDelete_Click(object sender, EventArgs e)
  119. {
  120. string P_Str_condition = this.dgvCompanyInfo[ 0, this.dgvCompanyInfo.CurrentCell.RowIndex].Value.ToString();
  121. string P_Str_cmdtxt = "DELETE FROM tb_Company WHERE CompanyID=" + P_Str_condition + "";
  122. if (G_SqlClass.GetExecute(P_Str_cmdtxt))
  123. {
  124. MessageBox.Show( "数据删除成功!");
  125. }
  126. else
  127. {
  128. MessageBox.Show( "数据删除失败!");
  129. }
  130. string cmdtxt = "SELECT CompanyID as 供应商ID,CompanyName as 供应商名称,CompanyDirector as 供应商主管,CompanyPhone as 供应商电话";
  131. cmdtxt += ",CompanyFax as 供应商传真,CompanyAddress as 供应商地址,CompanyRemark as 备注 FROM tb_Company";
  132. this.dgvCompanyInfo.DataSource = G_SqlClass.GetDs(cmdtxt).Tables[ 0];
  133. }
  134. private void toolreflush_Click(object sender, EventArgs e)
  135. {
  136. string P_Str_cmdtxt = "SELECT CompanyID as 供应商ID,CompanyName as 供应商名称,CompanyDirector as 供应商主管,CompanyPhone as 供应商电话";
  137. P_Str_cmdtxt += ",CompanyFax as 供应商传真,CompanyAddress as 供应商地址,CompanyRemark as 备注 FROM tb_Company";
  138. this.dgvCompanyInfo.DataSource = G_SqlClass.GetDs(P_Str_cmdtxt).Tables[ 0];
  139. }
  140. private void txtOK_Click(object sender, EventArgs e)
  141. {
  142. string P_Str_cmdtxt = String.Empty;
  143. string P_Str_selectcondition = this.cbxCondition.Items[ this.cbxCondition.SelectedIndex].ToString();
  144. switch (P_Str_selectcondition)
  145. {
  146. case "供应商名称":
  147. P_Str_cmdtxt = "SELECT CompanyID as 供应商ID,CompanyName as 供应商名称,CompanyDirector as 供应商主管,CompanyPhone as 供应商电话";
  148. P_Str_cmdtxt += ",CompanyFax as 供应商传真,CompanyAddress as 供应商地址,CompanyRemark as 备注 FROM tb_Company ";
  149. P_Str_cmdtxt += " WHERE CompanyName LIKE '%" + this.txtKeyWord.Text + "%'";
  150. this.dgvCompanyInfo.DataSource = G_SqlClass.GetDs(P_Str_cmdtxt).Tables[ 0];
  151. break;
  152. case "供应商主管":
  153. P_Str_cmdtxt = "SELECT CompanyID as 供应商ID,CompanyName as 供应商名称,CompanyDirector as 供应商主管,CompanyPhone as 供应商电话";
  154. P_Str_cmdtxt += ",CompanyFax as 供应商传真,CompanyAddress as 供应商地址,CompanyRemark as 备注 FROM tb_Company ";
  155. P_Str_cmdtxt += " WHERE CompanyDirector LIKE '%" + this.txtKeyWord.Text + "%'";
  156. this.dgvCompanyInfo.DataSource = G_SqlClass.GetDs(P_Str_cmdtxt).Tables[ 0];
  157. break;
  158. default:
  159. break;
  160. }
  161. }

最后生成可执行的安装包程序

                                                      

从设计之初到完成,看似庞大的任务细分每一项,克服当中的困难,是非常有收获的!

完整程序可私信交流。


转载:https://blog.csdn.net/Zzehao11/article/details/107138568
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场