资源简介

针织行业进销存系统源码 源码描述: 一、源码介绍 针织布匹行业批发类进销存,该系统为原版本进行二次优化开发成.net版,目前标准版功能简单、明了、满足日常门市正常使用,已有多家正常使用,成熟稳定,有需要的可以下载看看。 二、主要功能 1、订货单、订货记录 2、进货管理:进货单、进货记录 3、销售管理:销售单、销售记录 4、仓库:入库单、出库单、调拨单、盘点单。 5、资金管理:收款单、付款单、供应商对账单、客户对账单 6、基本设置:仓库管理、供应商管理、客户管理、商品类别、商品管理 7、辅助设置:计量单位、账户设置、结算方式设置。 8、高级设置:权限设置、角色设置、账号管理 三、注意事项 1、开发环境为Visual Studio 2010,数据库为SQL SERVER2008R2,使用.net 4.0开发。 2、数据库文件在DB文件夹中,附加即可 3、默认数据库连接字符串在web.config配置文件中修改 4、后台登陆密码 admin admin 采用ASP.NET 4.0开发

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.xml;
using System.Configuration;

namespace DAL
{
   
    public class ConfigSettings
    {
        public static string ReadSetting(string key)
        {
            return ConfigurationSettings.AppSettings[key];
        }

        public static void WriteSetting(string key string value)
        {
            // load config document for current assembly
            xmlDocument doc = loadConfigDocument();

            // retrieve appSettings node
            xmlNode node = doc.SelectSingleNode(“//appSettings“);

            if (node == null)
                throw new InvalidOperationException(“appSettings section not found in config file.“);

            try
            {
                // select the ‘add‘ element that contains the key
                xmlElement elem = (xmlElement)node.SelectSingleNode(string.Format(“//add[@key=‘{0}‘]“ key));

                if (elem != null)
                {
                    // add value for key
                    elem.SetAttribute(“value“ value);
                }
                else
                {
                    // key was not found so create the ‘add‘ element 
                    // and set it‘s key/value attributes 
                    elem = doc.CreateElement(“add“);
                    elem.SetAttribute(“key“ key);
                    elem.SetAttribute(“value“ value);
                    node.AppendChild(elem);
                }
                doc.Save(getConfigFilePath());
            }
            catch
            {
                throw;
            }
        }

        public static void RemoveSetting(string key)
        {
            // load config document for current assembly
            xmlDocument doc = loadConfigDocument();

            // retrieve appSettings node
            xmlNode node = doc.SelectSingleNode(“//appSettings“);

            try
            {
                if (node == null)
                    throw new InvalidOperationException(“appSettings section not found in config file.“);
                else
                {
                    // remove ‘add‘ element with coresponding key
                    node.RemoveChild(node.SelectSingleNode(string.Format(“//add[@key=‘{0}‘]“ key)));
                    doc.Save(getConfigFilePath());
                }
            }
            catch (NullReferenceException e)
            {
                throw new Exception(string.Format(“The key {0} does not exist.“ key) e);
            }
        }

        private static xmlDocument loadConfigDocument()
        {
            xmlDocument doc = null;
            try
            {
                doc = new xmlDocument();
                doc.Load(getConfigFilePath());
                return doc;
            }
            catch (System.IO.FileNotFoundException e)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      17408  2018-06-07 20:24  DAL\bin\Debug\DAL.dll

     文件      48640  2018-06-07 20:24  DAL\bin\Debug\DAL.pdb

     文件       3277  2018-03-17 09:05  DAL\ConfigSettings.cs

     文件       2816  2018-03-17 09:05  DAL\DAL.csproj

     文件        208  2014-04-09 13:49  DAL\DAL.csproj.user

     文件      23155  2018-03-17 07:25  DAL\DBHelper.CS

     文件       3012  2018-06-07 20:24  DAL\obj\Debug\DAL.csproj.FileListAbsolute.txt

     文件      17408  2018-06-07 20:24  DAL\obj\Debug\DAL.dll

     文件      48640  2018-06-07 20:24  DAL\obj\Debug\DAL.pdb

     文件       6558  2018-08-11 15:56  DAL\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件       4096  2010-08-09 11:46  DAL\obj\Debug\Refactor\DAL.dll

     文件       1362  2010-08-06 10:01  DAL\Properties\AssemblyInfo.cs

     文件      16062  2018-03-17 07:27  DAL\ReportData.cs

     文件   13959168  2018-06-07 20:42  DB\Invoice.mdf

     文件    9437184  2018-06-07 20:42  DB\Invoice_log.ldf

     文件         93  2018-05-21 14:36  WebApp\ajax\addinfo.ashx

     文件       2482  2018-05-21 14:37  WebApp\ajax\addinfo.ashx.cs

     文件         84  2018-05-21 15:10  WebApp\ajax\login.ashx

     文件       6830  2018-05-21 15:11  WebApp\ajax\login.ashx.cs

     文件        105  2018-05-21 14:41  WebApp\ajax\Main_frm_list.ashx

     文件       6351  2018-05-21 14:40  WebApp\ajax\Main_frm_list.ashx.cs

     文件         91  2018-05-21 15:12  WebApp\ajax\tousyj.ashx

     文件       2104  2018-05-21 15:12  WebApp\ajax\tousyj.ashx.cs

     文件         91  2018-05-21 15:15  WebApp\ajax\Upload.ashx

     文件       2139  2018-05-21 15:16  WebApp\ajax\Upload.ashx.cs

     文件        101  2018-05-21 15:15  WebApp\ajax\uploadPhoto.ashx

     文件       4085  2018-05-21 15:16  WebApp\ajax\uploadPhoto.ashx.cs

     文件    2049862  2018-08-11 15:58  WebApp\App_Data\App_Data.rar

     文件   13959168  2018-05-28 11:11  WebApp\App_Data\Invoice.mdf

     文件    9437184  2018-05-28 11:11  WebApp\App_Data\Invoice_log.ldf

............此处省略732个文件信息

评论

共有 条评论