• 大小: 46.71MB
    文件类型: .zip
    金币: 2
    下载: 10 次
    发布日期: 2023-07-18
  • 语言: 数据库
  • 标签: 源码  

资源简介

一、源码介绍 所有行业的ERP系统/进销存/仓库系统,该系统为vs2012 .net+MsSQL版,目前标准版功能简单、明了、满足公司正常使用,已有多家企业正常使用,成熟稳定,有需要的可以下载看看。 二、主要功能 1、电商管理(可以和公众号、小程序对接) 微信订单、小程序订单、公众号订单 参数设置:轮播图片设置、分类导航设置、小程序参数设置、公众号参数设置 2、销售管理:销售订单、销售出库 3、采购管理:采购订单、采购入库 4、生产管

资源截图

代码片段和文件信息

using System;
using System.IO;
using System.Data;
using System.Collections.Generic;
using Lanwei.Weixin.Common;

namespace LanweiBLL
{
    /// 
    /// 系统频道表
    /// 

    public partial class channel
    {
        private readonly Lanwei.Weixin.Model.siteconfig siteConfig = new LanweiBLL.siteconfig().loadConfig(); //获得站点配置信息
        private readonly Lanwei.Weixin.DAL.channel dal;

        public channel()
        {
            dal = new Lanwei.Weixin.DAL.channel(siteConfig.sysdatabaseprefix);
        }

        #region 基本方法========================================

        /// 
        /// 是否存在该记录
        /// 

        public bool Exists(int id)
        {
            return dal.Exists(id);
        }

        /// 
        /// 查询频道名称是否存在
        /// 

        public bool Exists(string name)
        {
            //与站点目录下的一级文件夹是否同名
            if (DirPathExists(siteConfig.webpath name))
            {
                return true;
            }
            //与站点aspx目录下的一级文件夹是否同名
            if (DirPathExists(siteConfig.webpath + “/“ + MXKeys.DIRECTORY_REWRITE_ASPX + “/“ name))
            {
                return true;
            }
            //与存在的频道名称是否同名
            if (dal.Exists(name))
            {
                return true;
            }
            return false;
        }

        /// 
        /// 返回数据总数
        /// 

        public int GetCount(string strWhere)
        {
            return dal.GetCount(strWhere);
        }

        /// 
        /// 增加一条数据
        /// 

        public int Add(Lanwei.Weixin.Model.channel model)
        {
            //取得所属频道分类的生成目录
            string build_path =new LanweiBLL.channel_category().GetBuildPath(model.category_id);
            if (string.IsNullOrEmpty(build_path))
            {
                return 0;
            }
            //开始插入频道信息
            int channelId = dal.Add(model);
            if (channelId > 0)
            {
                //添加导航菜单
                int newNavId = new LanweiBLL.navigation().Add(“channel_“ + build_path “channel_“ + model.name model.title ““ model.sort_id channelId “Show“);
                if (newNavId < 1)
                {
                    dal.Delete(channelId);
                    return 0;
                }
                //添加子导航菜单
                new LanweiBLL.navigation().Add(“channel_“ + model.name “channel_“ + model.name + “_list“ “内容管理“ “article/article_list.aspx“ 99 channelId “ShowViewAddEditDeleteAudit“);
                new LanweiBLL.navigation().Add(“channel_“ + model.name “channel_“ + model.name + “_category“ “栏目类别“ “article/category_list.aspx“ 100 channelId “ShowViewAddEditDelete“);
                new LanweiBLL.navigation().Add(“channel_“ + model.name “channel_“ + model.name + “_comment“ “评论管理“ “article/comment_list.aspx“ 101 channelId

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-12-14 13:33  01.code\
     文件        6120  2019-10-24 21:41  01.code\Lanwei.Weixin.ERP_2019.sln
     文件      120320  2019-10-24 22:53  01.code\Lanwei.Weixin.ERP_2019.v11.suo
     目录           0  2019-12-14 13:28  01.code\LanweiBLL\
     文件        3506  2017-10-06 08:59  01.code\LanweiBLL\Lanwei.Weixin.BLL.csproj
     目录           0  2019-12-14 13:28  01.code\LanweiBLL\Properties\
     文件        1338  2016-06-17 05:04  01.code\LanweiBLL\Properties\AssemblyInfo.cs
     目录           0  2020-02-24 14:37  01.code\LanweiBLL\bin\
     文件        8345  2017-10-06 08:47  01.code\LanweiBLL\channel.cs
     文件        8723  2017-10-06 08:47  01.code\LanweiBLL\channel_category.cs
     文件        3564  2016-06-17 05:04  01.code\LanweiBLL\manager.cs
     文件        3101  2016-06-17 05:04  01.code\LanweiBLL\manager_log.cs
     文件        2582  2016-06-17 05:04  01.code\LanweiBLL\manager_role.cs
     文件        4838  2017-10-06 08:47  01.code\LanweiBLL\navigation.cs
     目录           0  2019-12-14 13:28  01.code\LanweiBLL\obj\
     目录           0  2019-12-14 13:28  01.code\LanweiBLL\obj\Debug\
     文件        7292  2019-10-24 22:51  01.code\LanweiBLL\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件        6184  2019-10-24 22:52  01.code\LanweiBLL\obj\Debug\Lanwei.Weixin.BLL.csproj.FileListAbsolute.txt
     文件       50701  2019-10-24 22:52  01.code\LanweiBLL\obj\Debug\Lanwei.Weixin.BLL.csprojResolveAssemblyReference.cache
     文件       18432  2019-10-24 21:57  01.code\LanweiBLL\obj\Debug\Lanwei.Weixin.BLL.dll
     文件       81408  2019-10-24 21:57  01.code\LanweiBLL\obj\Debug\Lanwei.Weixin.BLL.pdb
     文件        9076  2017-09-28 23:45  01.code\LanweiBLL\obj\Debug\LanweiBLL.csproj.FileListAbsolute.txt
     文件       20635  2017-10-04 13:05  01.code\LanweiBLL\obj\Debug\LanweiBLL.csprojResolveAssemblyReference.cache
     目录           0  2020-02-24 14:37  01.code\LanweiBLL\obj\Debug\TempPE\
     文件           0  2016-06-17 05:04  01.code\LanweiBLL\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
     文件           0  2016-06-17 05:04  01.code\LanweiBLL\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
     文件           0  2016-06-17 05:04  01.code\LanweiBLL\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
     文件        1349  2017-10-06 08:47  01.code\LanweiBLL\siteconfig.cs
     文件        5417  2017-10-06 08:47  01.code\LanweiBLL\url_rewrite.cs
     文件        4266  2017-10-06 08:47  01.code\LanweiBLL\user_amount_log.cs
     文件        1333  2017-10-06 08:47  01.code\LanweiBLL\user_config.cs
............此处省略7988个文件信息

评论

共有 条评论