• 大小: 2.17M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 销售  源码  系统  

资源简介

一、源码描述
    这是一款专门为广告公司打字复印店销售收银系统,功能十分的全面,界面也比较
    美观大方,可以作为公司自用,也可用作二次开发,感兴趣的可以下载看看。 
二、功能介绍
    该源码的具体功能介绍如下:
    1、销售管理:销售收银、客户退货。
    2、进货管理:新货上架、商品补货。
    3、库存管理:商品管理、库存报警。
    4、业务查询:店铺销售查询、进退货明细。
    5、会员管理:增加会员、会员列表、增加积分、扣除积分。
    6、个人设置:修改密码。
    7、系统设置I:店主管理、商铺管理、分店设置、参数设置I、员工管理、职务管理、模块管理、
    系统日志。
三、注意事项

开发环境为Visual Studio 2010,数据库为SQL Server 2005,数据库文件在DB_sql文件夹中,使用.net 4.0开发。
默认数据库连接字符串在webconfig配置文件中修改。
该源码有完善的会员管理机制、系统日志、打印小票等功能,值得推荐一下。   



资源截图

代码片段和文件信息

using System;
using System.Management;
using System.Web;
using System.Web.Security;
using System.Web.UI;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender EventArgs e)
    {
        if (!IsPostBack)
        {
            //清除cookie
            HttpCookie aCookie;
            string cookieName;
            int limit = Request.Cookies.Count;
            for (int i = 0; i < limit; i++)
            {
                cookieName = Request.Cookies[i].Name;
                aCookie = new HttpCookie(cookieName);
                Response.Cookies.Add(aCookie);
            }

            if (Request.Cookies[“username“] != null)
            {
                txtUserName.Value = Server.HtmlEncode(Request.Cookies[“username“].Value);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-04-02 12:37  DB_sql\
     文件     2097152  2018-04-02 12:37  DB_sql\HDAD_DB_Data.MDF
     文件     1048576  2018-04-02 12:37  DB_sql\HDAD_DB_Log.LDF
     目录           0  2018-04-02 12:37  GoodsManage\
     文件        8654  2018-04-02 12:37  GoodsManage\DeportAlarm.aspx
     文件        4872  2018-04-02 12:37  GoodsManage\DeportAlarm.aspx.cs
     文件       10175  2018-04-02 12:37  GoodsManage\GoodsSetUp.aspx
     文件        6751  2018-04-02 12:37  GoodsManage\GoodsSetUp.aspx.cs
     文件        7950  2018-04-02 12:37  GoodsManage\GoodsSetUpAdd.aspx
     文件        5645  2018-04-02 12:37  GoodsManage\GoodsSetUpAdd.aspx.cs
     文件        8855  2018-04-02 12:37  GoodsManage\GoodsSetUpAddW.aspx
     文件        6271  2018-04-02 12:37  GoodsManage\GoodsSetUpAddW.aspx.cs
     文件        8323  2018-04-02 12:37  GoodsManage\GoodsSetUpEdit.aspx
     文件        3857  2018-04-02 12:37  GoodsManage\GoodsSetUpEdit.aspx.cs
     文件        8844  2018-04-02 12:37  GoodsManage\GoodsSetUpValue.aspx
     文件        5440  2018-04-02 12:37  GoodsManage\GoodsSetUpValue.aspx.cs
     文件        2288  2018-04-02 12:37  GoodsManage\IntegralReport.aspx
     文件        2709  2018-04-02 12:37  GoodsManage\IntegralReport.aspx.cs
     文件        8980  2018-04-02 12:37  GoodsManage\PrintItemID.aspx
     文件        5515  2018-04-02 12:37  GoodsManage\PrintItemID.aspx.cs
     文件        2998  2018-04-02 12:37  GoodsManage\PrintItemIDCount.aspx
     文件        3263  2018-04-02 12:37  GoodsManage\PrintItemIDCount.aspx.cs
     文件        8642  2018-04-02 12:37  GoodsManage\StockManage.aspx
     文件        5436  2018-04-02 12:37  GoodsManage\StockManage.aspx.cs
     文件        4225  2018-04-02 12:37  GoodsManage\StockManageEnter.aspx
     文件        3585  2018-04-02 12:37  GoodsManage\StockManageEnter.aspx.cs
     文件        4218  2018-04-02 12:37  GoodsManage\StockManageGo.aspx
     文件        3690  2018-04-02 12:37  GoodsManage\StockManageGo.aspx.cs
     目录           0  2018-04-02 12:37  images\
     目录           0  2018-04-02 12:37  images\btn\
     文件         101  2018-04-02 12:37  images\btn\485_bg1.gif
............此处省略509个文件信息

评论

共有 条评论