在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#数据库操作 → C#进销存系统源码(仓库管理)

C#进销存系统源码(仓库管理)

C#数据库操作

下载此实例
  • 开发语言:C#
  • 实例大小:2.56M
  • 下载次数:510
  • 浏览次数:5580
  • 发布时间:2017-10-29
  • 实例类别:C#数据库操作
  • 发 布 人:190351861
  • 文件格式:.rar
  • 所需积分:6
 相关标签: C# 系统 c 进销存 进销存系统

实例介绍

【实例简介】

XRD仓库管理系统源码

源码描述:
一、源码特点
    仓库管理、后台管理、登陆验证、div css、登陆注册等
二、功能介绍
    此系统包括用户登录注册,用户,仓库,货物等基本信息的添加、修改、删除、查询;货物的进货、出货管理等,以及紧急货物采购提醒等一系列仓库管理所涉及的方面。
三、菜单功能
    1、登陆
    2、个人信息管理:添加人员信息;修改人员信息
    3、仓库信息管理:添加仓库信息;修改仓库信息
    4、存储规则管理:添加存储规则;修改存储规则
    5、查看进出信息:查看入库登陆信息;浏览出库登记信息
    6、货物信息管理:添加货物信息;修改货物信息
    7、个人密码修改
    8、返回登陆界面
四、注意事项
    1、开发环境为Visual Studio 2010,数据库为SQLServer2012,使用.net 3.5开发。数据库连接文件:App_Code/WMS.cs
    2、管理员登陆名密码均为:admin 

【实例截图】

from clipboard


from clipboard


from clipboard


from clipboard


【核心代码】

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

public partial class AddInOut : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            bindData();
        }
    }
    private void bindData()
    {
        string st = "select * from Goods,Store where Goods.GID=Store.SGID and SWID='" Session["Udep"].ToString() "'order by GID desc";
        SqlConnection con = WMS.createCon();
        con.Open();
        SqlCommand da = new SqlCommand(st, con);
        SqlDataReader cn = da.ExecuteReader();
        while(cn.Read())
        {
            DropDownList1.Items.Add(new ListItem (cn["GID"].ToString()));
        }
        con.Close();
        BindTextBox();
    }
    private void BindTextBox()
    {
        string st1 = "select SQuantity,STopLine from Store where SGID='"   DropDownList1.Text  "'";
        SqlConnection con = WMS.createCon();
        con.Open();
        SqlCommand da = new SqlCommand(st1, con);
        SqlDataReader dr = da.ExecuteReader();
        if (dr.Read())
        {
            TextBox2.Text = dr["SQuantity"].ToString();
            TextBox3.Text = dr["STopLine"].ToString();
            TextBox4.Text = dr["SQuantity"].ToString();
            TextBox5.Text = Convert.ToString(int.Parse(TextBox3.Text) - int.Parse(TextBox2.Text));
        }
        else
        {
            Response.Write("<script language=javascript>alert('对不起,没有该产品信息')</script>");
        }
        if (RadioButton1.Checked == true)
        {
            RangeValidator1.MaximumValue = TextBox5.Text;
            RangeValidator1.MinimumValue = "0";
        }
        if (RadioButton2.Checked == true)
        {
            RangeValidator1.MaximumValue = TextBox4.Text;
            RangeValidator1.MinimumValue ="0";
        }
    }
    // 下载于www.mycodes.net
    protected void Button1_Click1(object sender, EventArgs e)
    {
        string newSQuantity;
        string str1 = "insert into Records(RGID,RWID,RQuantity,Rtype,RHandler) values ('"   DropDownList1.Text   "','"   Session["Udep"].ToString()   "','"   TextBox6.Text   "',' 1 ','"   TextBox7.Text   "')";
        string str2 = "insert into Records(RGID,RWID,RQuantity,Rtype,RHandler) values ('"   DropDownList1.Text   "','"   Session["Udep"].ToString()   "','"   TextBox6.Text   "',' 2 ','"   TextBox7.Text   "')";
        
        SqlConnection con = WMS.createCon();
        con.Open();
        if (RadioButton1.Checked == true)
        {
            SqlCommand comm = new SqlCommand(str1,con);
            comm.ExecuteNonQuery();
            con.Close();
        }
        if (RadioButton2.Checked == true)
        {
            SqlCommand comm = new SqlCommand(str2, con);
            comm.ExecuteNonQuery();
            con.Close();
        }
       
        SqlConnection cn = WMS.createCon();
        cn.Open();
        if (RadioButton1.Checked == true)
        {
            newSQuantity = Convert.ToString(int.Parse(TextBox2.Text)   int.Parse(TextBox6.Text));
            string str3 = "update Store set SQuantity='"   newSQuantity   " 'where SGID='"   DropDownList1.Text   "'";
            SqlCommand com = new SqlCommand(str3, cn);
            com.ExecuteNonQuery();
            cn.Close();
            Response.Write("<script language='javascript'>alert('入库信息添加成功!');</script>");
        }
        if (RadioButton2.Checked == true)
        {
            newSQuantity = Convert.ToString(int.Parse(TextBox2.Text) - int.Parse(TextBox6.Text));
            string str3 = "update Store set SQuantity='"   newSQuantity   " 'where SGID='"   DropDownList1.Text   "'";
            SqlCommand com = new SqlCommand(str3, cn);
            com.ExecuteNonQuery();
            cn.Close();
            Response.Write("<script language='javascript'>alert('出库信息添加成功!');</script>");
        }
        BindTextBox();             
    }

    protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {
        BindTextBox();
    }
}

实例下载地址

C#进销存系统源码(仓库管理)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

第 1 楼 sqq1074633942 发表于: 2020-08-17 14:01 30
下载了为什么没反应啊

支持(0) 盖楼(回复)

发表评论

(您的评论需要经过审核才能显示)

查看所有1条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警