资源简介
在使用本系统时,请按照以下流程进行操作:
(1)通过“基本档案/员工信息”菜单项:对员工信息进行添加、修改、删除和查询操作。
(2)通过“系统维护”菜单中的菜单项添加用户、设置用户管理权限及更改登录用户的密码等操作。
注意:添加用户时,用户密码必须是6位以上。
(3)通过“基本档案/供应商信息”菜单项:对供应商信息进行添加、修改、删除和查询操作。
(4)通过“基本档案/客户档案”菜单项:对客户档案信息进行添加、修改、删除和查询操作。
(5)通过“进货管理/采购进货”菜单项:对采购进货信息进行添加、修改和删除操作。
(6)通过“进货管理/采购退货”菜单项:对采购退货信息进行添加、修改和删除操作。
(7)通过“进货管理/采购查询”菜单项:对采购进货和采购退货信息查询操作。
(8)通过“销售管理/商品销售”菜单项:对商品销售信息进行添加、修改和删除操作。
(9)通过“销售管理/客户退货”菜单项:对客户退货信息进行添加、修改和删除操作。
(10)通过“销售管理/销售查询”菜单项:对销售货物信息进行查询操作。
(11)通过“库存管理/库存调拨”菜单项:对库存调拨信息进行添加和删除操作。
(12)通过“库存管理/库存警报”菜单项:可以对库存警报的数量进行修改操作。库存报警数量默认为10,当商品库存数量不足10时,将会显示在该模块中。
(13)通过“库存管理/库存查询”菜单项:对库存里的信息进行查询操作。
(14)通过“报表设计/员工信息报表”菜单项:对员工信息进行查询并在报表中显示结果。
(15)通过“报表设计/供应商信息报表”菜单项:对供应商信息进行查询并在报表中显示结果。
(16)通过“报表设计/进货商品报表”菜单项:对进货商品信息进行查询并在报表中显示结果。
(17)通过“报表设计/员工销售报表”菜单项:对员工销售信息进行查询并在报表中显示结果。
(18)通过“报表设计/商品进货分析报表”菜单项:对商品进货信息进行查询并在报表中以图表的形式显示结果。
(19)通过“报表设计/销售价格分析报表”菜单项:对销售价格信息进行查询并在报表中以图表的形式显示结果。
(20)通过“报表设计/员工销售分析报表”菜单项:对员工销售分析信息进行查询并在报表中以图表的形式显示结果。
(21)通过“系统维护/数据备份”菜单项:对数据库进行备份。
(22)通过“系统维护/数据还原”菜单项:对数据库进行还原。

代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using GoodsReportManage.ItemClass;
using GoodsReportManage.Goods;
using System.Collections;
namespace GoodsReportManage
{
public partial class AppMain : Form
{
public AppMain()
{
InitializeComponent();
}
SqlbaseClass G_SqlClass = new SqlbaseClass();
///
/// 根据用户权限分配显示菜单
///
public void MenuIsVisible()
{
ArrayList arylst = new ArrayList();
ToolStripMenuItem[] menu = new ToolStripMenuItem[] {
this.menuEmployeethis.menuCompanythis.menuCustomerthis.menuGoodsInthis.menuGoodsOutthis.menuSellGoods
this.menuGoodsBackthis.menuDepotChangethis.menuDepotAlarmthis.menuSysUserthis.menuPopedomSetthis.menuDatabakthis.menuReBakData
};
DataSet P_ds = G_SqlClass.GetDs(“SELECT * FROM v_UserView WHERE SysLoginName = ‘“+ PropertyClass.SendNameValue+“‘“);
for (int i = 0; i < 13; i++)
{
arylst.Add(P_ds.Tables[0].Rows[0][14+i].ToString());
}
for (int j = 0; j < arylst.Count; j++)
{
if (arylst[j].ToString() == “False“)
{
menu[j].Visible = false;
}
else
{
menu[j].Visible = true;
}
}
}
private void timer1_Tick(object sender EventArgs e)
{
this.statusTime.Text = “当前时间:“ + DateTime.Now.ToString();
}
private void AppMain_Load(object sender EventArgs e)
{
this.timer1.Start();
this.statusUser.Text = “系统操作员:“+PropertyClass.SendNameValue;
MenuIsVisible();
}
private void AppMain_FormClosing(object sender FormClosingEventArgs e)
{
}
private void Menu_Click(object sender EventArgs e)
{
WinOperationClass P_Menu = new WinOperationClass(); //声明对WinForm窗体进行操作的类对象
P_Menu.ShowForm((ToolStripMenuItem)sender this); //调用类中的方法,完成对窗体中ToolStripMenuItem控件相应项的操作
}
private void AppMain_FormClosed_1(object sender FormClosedEventArgs e)
{
if (MessageBox.Show(“确定要退出吗?“ “提示对话框“ MessageBoxButtons.YesNo MessageBoxIcon.Information) == DialogResult.Yes)
{
Application.Exit();
this.Dispose();
}
else
{
AppMain app = new AppMain();
app.Show();
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2932 2008-04-23 14:09 GoodsReportManage\GoodsReportManage\AppMain.cs
文件 27472 2008-04-23 14:09 GoodsReportManage\GoodsReportManage\AppMain.Designer.cs
文件 476162 2008-04-23 14:09 GoodsReportManage\GoodsReportManage\AppMain.resx
文件 9817 2008-04-23 14:06 GoodsReportManage\GoodsReportManage\ba
文件 19737 2008-04-23 14:06 GoodsReportManage\GoodsReportManage\ba
文件 17233 2008-04-23 14:06 GoodsReportManage\GoodsReportManage\ba
文件 10257 2008-04-23 14:05 GoodsReportManage\GoodsReportManage\ba
文件 20579 2008-04-23 14:05 GoodsReportManage\GoodsReportManage\ba
文件 15274 2008-04-23 14:05 GoodsReportManage\GoodsReportManage\ba
文件 12168 2008-04-23 14:04 GoodsReportManage\GoodsReportManage\ba
文件 22134 2008-04-23 14:03 GoodsReportManage\GoodsReportManage\ba
文件 18610 2008-04-23 14:03 GoodsReportManage\GoodsReportManage\ba
文件 811008 2008-04-23 16:52 GoodsReportManage\GoodsReportManage\bin\Debug\GoodsReportManage.exe
文件 429568 2008-04-23 16:52 GoodsReportManage\GoodsReportManage\bin\Debug\GoodsReportManage.pdb
文件 5632 2005-11-11 22:25 GoodsReportManage\GoodsReportManage\bin\Debug\GoodsReportManage.vshost.exe
文件 1102 2008-04-23 14:02 GoodsReportManage\GoodsReportManage\CrystalReport\CompanyReport.cs
文件 8181 2008-04-23 14:02 GoodsReportManage\GoodsReportManage\CrystalReport\CompanyReport.Designer.cs
文件 7766 2008-04-23 14:02 GoodsReportManage\GoodsReportManage\CrystalReport\CompanyReport.resx
文件 1722 2008-04-23 14:02 GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeReport.cs
文件 9372 2008-04-23 14:02 GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeReport.Designer.cs
文件 8110 2008-04-23 14:02 GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeReport.resx
文件 1751 2008-04-23 14:02 GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeSellAnalysisReport.cs
文件 12652 2008-04-23 14:02 GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeSellAnalysisReport.Designer.cs
文件 9186 2008-04-23 14:02 GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeSellAnalysisReport.resx
文件 1202 2008-04-23 14:02 GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeSellReport.cs
文件 9287 2008-04-23 14:02 GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeSellReport.Designer.cs
文件 8128 2008-04-23 14:02 GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeSellReport.resx
文件 1775 2008-04-23 14:01 GoodsReportManage\GoodsReportManage\CrystalReport\GoodsInAnalysisReport.cs
文件 11693 2008-04-23 14:01 GoodsReportManage\GoodsReportManage\CrystalReport\GoodsInAnalysisReport.Designer.cs
文件 8833 2008-04-23 14:01 GoodsReportManage\GoodsReportManage\CrystalReport\GoodsInAnalysisReport.resx
............此处省略168个文件信息
相关资源
- 超市进销存管理系统 Sqlserver 数据库文
- 用C#绘制正弦曲线,要用到Form1_Resiz
- 随机抽题系统C#源代码
- 医院业务管理系统(C#源代码)
- 远程监控(C#源代码)
- C#进销存管理系统(Access数据库)英文
- delta机器人运动学算法正向逆向求解
- 精伦台式具名身份证阅读器机具C#源代
- 强烈推荐:完整的C#源代码之 网上商
- 年会抽奖小程序c#源代码 亲测可用
- C#+SQL超市进销存管理系统
- 串口通讯助手C#源代码
- C#医疗系统C#源代码
- 酒店管理系统C#源代码编写SQL Server数
- 网上书店asp.net+c#源代码+答辩ppt+毕业
- 餐饮管理系统+(SQL 数据库C#源代码)
- C#源代码 库存管理系统
- 强烈推荐:完整的C#源代码之 库存管
- 基于C#技术的企业进销存管理系统开发
- 超市库存管理系统 C#源代码
- ASP.NET班级网站信息系统C#源代码
- 餐饮管理系统(C#源代码)(含概要设
- C#进销存管理系统C#进销存管理系统
- 数独游戏c#源代码
- 五子棋源代码(C#源代码)
- C#.NET 在线商城系统(进销存管理系统
- 优傲机器人ur robot点动控制程序c#源代
- 强烈推荐:完整的C#源代码之 高校教
- c#源码进销存管理系统
- 进销存管理系统及毕业设计论文全套
评论
共有 条评论