收藏 分销(赏)

C版进销库存商品标准管理系统.doc

上传人:a199****6536 文档编号:3027359 上传时间:2024-06-13 格式:DOC 页数:33 大小:3.80MB
下载 相关 举报
C版进销库存商品标准管理系统.doc_第1页
第1页 / 共33页
C版进销库存商品标准管理系统.doc_第2页
第2页 / 共33页
C版进销库存商品标准管理系统.doc_第3页
第3页 / 共33页
C版进销库存商品标准管理系统.doc_第4页
第4页 / 共33页
C版进销库存商品标准管理系统.doc_第5页
第5页 / 共33页
点击查看更多>>
资源描述

1、目 录第一章 开发背景和环境3第二章 程序功效分析及描述3-4第三章 总体和具体设计5-11第四章 实现源码12-27第五章 总结 27第一章【开发背景】 伴随中国大小企业经营规模越来越大,企业需要随时更新产品进销信息,不停更改商品信息,并对商品进行系统分析。所以企业商品进销管理系统需要引进新管理软件,实现企业庞大进销商品管理规范化,从而方便企业进销商品决议。【开发环境】 开发平台:Microsoft Visual Studio 开发语言:Visual C# 后台数据库管理系统软件:Microsoft SQL Server运行平台:Windows 7 第二章 【程序功效分析及描述】在对企业销售

2、管理系统有了深刻认识后,为了处理企业销售人员在商品管理和日常销售中所存在不足,让企业工作人员有愈加好、更方便使用计算机对企业相关数据进行管理,以实现无纸化操作方面进行分析,企业系统应进行以下功效实现。登录模块登录模块依据用户角色不一样在登陆成功以后被给予对应操作权限,对管理系统有对进货商品录入、销售商品录入等部分操作权限。登陆主窗体模块 进入主窗口时,用户能够依据自己交易选择不一样窗口进行操作。商品进货信息模块 商品进货信息模块是对每笔进货业务进货编号、商品名称、进货单价和数量录入功效实现。进货信息查询模块进货信息查询模块是操作人员对进货业务查询功效,能够经过查询条件,查找对应信息。商品销售信

3、息模块商品销售信息模块是对每笔销售业务销售编号、商品名称、销售单价和数量录入功效实现。商品退货信息模块商品退货信息模块是针对用户销售退回业务信息进行查询。供给商信息模块 供给商信息模块是对商品供给商信息录入,方便查询。退出提醒系统模块当用户退出时,会提醒用户是否决定退出系统 意见反馈模块意见反馈模块,是提供一个平台,将使用者使用意见反馈给系统程序员,对该系统改善和提升。 注册登录新用户模块注册新用户信息。第三章【总体和具体设计】 企业进销库存销售管理管理系统功效结构图:请输入留言供给商电话供给商名称退货编号销售数量销售单价商品名称销售编号查询条件进货数量进货单价商品名称【逻辑设计】商品进货表:

4、字段名数据类型是否为主键描述IDInt是bhnchar否进货编号mcnchar是商品名称djnchar是订货单价slnchar是订货数量供给商信息表:字段名数据类型是否为主键描述IDInt是mcnchar否供货商名称dhnchar否供货商电话【窗体设计】 登录窗口: 主窗口:商品进货信息窗口:进货信息查询窗口:商品销售信息窗口:退货查询窗口:供给商信息窗口:退出系统提醒窗口:意见反馈窗口:注册信息窗口:【源代码实现】登录模块登录模块依据用户角色不一样在登陆成功以后被给予对应操作权限,对管理系统有对进货商品录入、销售商品录入等部分操作权限。using System;using System.Co

5、llections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Data.SqlClient;namespace csharp public partial class Form1 : Form public Form1() InitializeComponent(); private void button2_Click(object s

6、ender, EventArgs e) private void button1_Click(object sender, EventArgs e) SqlConnection con = new SqlConnection(server=SDJS-0220WP;database=CS;Integrated Security =true); con.Open(); SqlDataAdapter da = new SqlDataAdapter(select * from log where name= + textBox1.Text.Trim() + and psw= + textBox2.Te

7、xt.Trim() + , con); DataSet ds = new DataSet(); da.Fill(ds); if (ds.Tables0.Rows.Count = 0) MessageBox.Show(用户名和密码有误.请重新输入, 系统提醒, MessageBoxButtons.OK, MessageBoxIcon.Error); return; else MessageBox.Show(登陆成功,欢迎进入!, 系统提醒, MessageBoxButtons.OK, MessageBoxIcon.Information); Form2 f2= new Form2(); f2.S

8、how(); this.Hide(); private void label3_Click(object sender, EventArgs e) Form10 f10 =new Form10(); f10.Show(); this.Hide(); private void Form1_Load(object sender, EventArgs e) 登陆主窗体模块进入主窗口时,用户能够依据自己交易选择不一样窗口进行操作。using System;using System.Collections.Generic;using System.ComponentModel;using System.

9、Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace csharp public partial class Form2 : Form public Form2() InitializeComponent(); private void label1_Click(object sender, EventArgs e) private void 基础档案BToolStripMenuItem_Click(object sender, EventArgs e

10、) Form3 f3 = new Form3(); f3.Show(); this.Hide(); private void 进货管理CToolStripMenuItem_Click(object sender, EventArgs e) Form4 f4 = new Form4(); f4.Show(); this.Hide(); private void 销售管理SToolStripMenuItem_Click(object sender, EventArgs e) Form5 f5= new Form5(); f5.Show(); this.Hide(); private void 库存

11、管理DToolStripMenuItem_Click(object sender, EventArgs e) Form6 f6 = new Form6(); f6.Show(); this.Hide(); private void 供给商信息ToolStripMenuItem_Click(object sender, EventArgs e) Form8 f8 = new Form8(); f8.Show(); this.Hide(); private void 系统维护KToolStripMenuItem_Click_1(object sender, EventArgs e) Form6 f

12、6 = new Form6(); f6.Show(); this.Hide(); private void label1_Click_1(object sender, EventArgs e) private void button1_Click(object sender, EventArgs e) Form9 f9 = new Form9(); f9.Show(); this.Hide(); private void button2_Click(object sender, EventArgs e) Form1 f1=new Form1(); f1.Show(); this.Hide();

13、 private void 意见反馈ToolStripMenuItem_Click(object sender, EventArgs e) Form11 f11 = new Form11(); f11.Show(); this.Hide(); ; private void Form2_Load(object sender, EventArgs e) 商品进货信息模块商品进货信息模块是对每笔进货业务进货编号、商品名称、进货单价和数量录入功效实现。using System;using System.Collections.Generic;using System.ComponentModel;us

14、ing System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Data.SqlClient;namespace csharp public partial class Form3 : Form public Form3() InitializeComponent(); private void textBox3_TextChanged(object sender, EventArgs e) private void Form3_Lo

15、ad(object sender, EventArgs e) private void button1_Click(object sender, EventArgs e) SqlConnection conn = new SqlConnection(server=SDJS-0220WP;database=CS;Integrated Security =true); string strsql = insert into dd(bh,mc,dj,sl) values ( + textBox1.Text + , + textBox2.Text + , + textBox3.Text + , + t

16、extBox4.Text + ); SqlCommand comm = new SqlCommand(strsql, conn); if (conn.State = ConnectionState.Closed) conn.Open(); if (Convert.ToInt32(comm.ExecuteNonQuery() 0) MessageBox.Show(添加成功O(_)O, 提醒, MessageBoxButtons.OK, MessageBoxIcon.Information); else MessageBox.Show(对不起,失败了:_ 0) MessageBox.Show(添加

17、成功O(_)O, 提醒, MessageBoxButtons.OK, MessageBoxIcon.Information); else MessageBox.Show(对不起,失败了:_ 0) MessageBox.Show(退货成功,信息已删除,请返回O(_)O, 提醒, MessageBoxButtons.OK, MessageBoxIcon.Information); else MessageBox.Show(对不起,删除失败了:_ 0) MessageBox.Show(添加成功O(_)O, 提醒, MessageBoxButtons.OK, MessageBoxIcon.Information); else MessageBox.Show(对不起,失败了:_: , 提醒, MessageBoxButtons.OK, MessageBoxIcon.Information); conn.Close();

展开阅读全文
相似文档                                   自信AI助手自信AI助手
猜你喜欢                                   自信AI导航自信AI导航
搜索标签

当前位置:首页 > 包罗万象 > 大杂烩

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服