|
本生产ERP解决方案从企业精细化管理需求的角度入手,构建体现精细精神,是一个为中小型企业贴身定做的一种优化的生产管理系统,以生产进销存为主流程,以生产管理为核心,以成本核算为亮点。从根本上可以解决企业以下问题:
规范企业流程管理,提高工作效率。
企业内部信息查询简单快捷。
经营财务报表分析自动化。
业务授权权限分工明确。
及时了解公司业绩和生产成本情况,快速进行市场决策。
节省更多的日常管理时间。
节约大量生产物料成本。生产计划、派工分工明确
工人生产计件更准确、科学,提高资金利用率。
提高客户服务速度,客户服务更周到。
客户远程查单,给客户更大的自主权。
实用于集团化和多级公司业务管理。适用于:产品生产ERP,非标生产ERP,包装生产ERP
开发语言:ASP.NET C#
数据库:sqlserver2008
开发工具:VS2010
基本代码:- #region 页面缓存清空
- /// <summary>
- /// 页面缓存清空(为了防止没有使用modalWin.htm来打开窗体,页面不能更新的问题)
- /// </summary>
- public void ClearPageBuffer()
- {
- HttpContext.Current.Response.Buffer = true;
- HttpContext.Current.Response.Expires = 0;
- HttpContext.Current.Response.ExpiresAbsolute = DateTime.Now.AddDays(-1);
- HttpContext.Current.Response.AddHeader("pragma", "no-cache");
- HttpContext.Current.Response.AddHeader("cache-control", "private");
- HttpContext.Current.Response.CacheControl = "no-cache";
- }
- #endregion
- #region 过滤SQL参数
- /// <summary>
- /// 过滤html,防止SQL页面注入
- /// </summary>
- /// <param name="text"></param>
- /// <returns></returns>
- public string FilterSQL(string text)
- {
- string validSql = "";
- if (text != null)
- {
- text = text.Replace(""", "");
- text = text.Replace(";", "");
- text = text.Replace("%25", "");
- text = text.Replace("%0a", "");
- text = text.Replace("%22", "");
- text = text.Replace("%27", "");
- text = text.Replace("%5c", "");
- text = text.Replace("%2f", "");
- text = text.Replace("%3c", "");
- text = text.Replace("%3e", "");
- text = text.Replace("%26", "");
- text = text.Replace("<", "");
- text = text.Replace(">", "");
- validSql = text;
- }
- return validSql;
- }
- #endregion
复制代码 界面截图:
界面截图
源码下载:注意:本源码来源于互联网,仅用于学习研究用途,请勿作为商业用途,源码下载后需24小时内删除。
|
|