基于Web的库存管理系统 摘 要 本文在研究现代库存管理理论的基础上,使用JSP作为开发工具,用ACCESS数据库完成设置后台数据库设计工作,完成了一个电子商务环境下的B2B模拟库存管理系统的分析、设计与开发的完整过程。通过这样的系统,可以在线入库出库,在线管理仓库,查询统计,盘点库存,解决了传统库存管理在时间空间上的限制以及效率低下等问题,具有一定的使用价值。 本论文分为五个部分,第一部分介绍了库存管理系统的选题意义及研究现状。第二部分介绍了系统设计环境。第三部分着重介绍了系统的总体设计思想和具体功能实现。第四部分介绍了系统开发的难点和关键原代码分析。第五部分是论文的小结。文章最后附有参考文献和附录代码。 关键词:库存管理系统、电子商务、JSP、ACCESS INVENTORY MANAGEMENT SYSTEM BASED ON WEB ABSTRACT This thesis realizes a B2B e-commerce simulation inventory management system by the usage of Java Server Pages (JSP) and ACCESS database . Based on research of moden inventory management theory, the analysis, design and development process are described in this thesis. This system has realized the online in-out storage management, online warehouse management, statistical query and storage inventory. It greatly improves the whole system to guarantee the practical usage and solves the restriction on the space and low efficiency, which existed in traditional stock design and development process. Under this background, this thesis is divided into five parts: section 1 introduces the research significance and trend of the inventory management system. Section 2 discusses the whole design platform and language of the system. Section 3 highlights the system design methods and specific functions realization. Section 4 presents the key technique and fundamental module analysis of the original code. Finally is conclusion, which contains references and appendices code. KEYWORDS:inventory management system,e-commerce ,JSP,ACCESS 目 录 第一章 引言……………………………………………………………..7 1.1 选题意义………………………………………………………………7 1.2 研究现状………………………………………………………………8 1.2.1 理论研究现状与趋势………………………………………………8 1.2.2 库存管理系统的现状与趋势……………………………………..8 1.2.3 库存管理系统目前的不足……………………………………….9 第二章 系统设计环境…………………………………………….10 2.1 系统模型的比较………………………………………………………10 2.2系统模型的选择……………………………………………………….11 2.3 系统采用的技术比较………………………………………………….12 2.4 开发工具……………………………………………………………..13 2.4.1 JSP技术 ……………………………………………………...13 2.4.2 Microsoft Office Access……………………………………..14 2.4.3 Dreamweaver MX 2004………………………………………….14 2.5 系统运行环境………………………………………………………...14 第三章 系统功能概述…………………………………………….15 3.1 系统总体设计思想…………………………………………………….15 3.2 系统功能构架………………………………………………………...16 3.3 数据库设计…………………………………………………………..17 3.4 模块设计思想………………………………………………………...22 3.4.1 入库模块 ……………………………………………………..24 3.4.2 转库模块 ……………………………………………………..27 3.4.3 出库模块 ……………………………………………………..28 3.4.4 仓库管理 ……………………………………………………..29 3.4.5 盘点模块 ……………………………………………………..30 3.4.6 查询统计 ……………………………………………………..31 第四章 系统开发的难点和关键原代码分析……………………..33 4.1 转库模块 ……………………………………………………………33 4.2仓库管理的一些问题 …………………………………………………35 第五章 小结………………………………………………………..38 致谢……………………………………………………………………..39 参考文献………………………………………………………………..40 附录(核心代码)………………………………………………………..41 基于Web的库存管理系统 第一章 引言 1.1选题意义 库存管理管理系统是一个企业不可缺少的部分,它的内容对于企业的决策者和管理者来说都至关重要,所以仓库库存管理系统应该能够为用户提供充足的信息和快捷的查询手段。但一直以来人们使用传统人工的方式管理仓库中的各种物资设备,这种管理方式存在着许多缺点,如:效率低、另外时间一长,将产生大量的文件和数据,这对于查找、更新和维护都带来了不少的困难。 随着科学技术的不断提高,计算机科学日渐成熟,其强大的功能已为人们深刻认识,它已进入人类社会的各个领域并发挥着越来越重要的作用。 作为计算机应用的一部分,使用计算机对物资信息进行管理,具有手工管理所无法比拟的优点.例如:检索迅速、查找方便、可*性高、存储量大、保密性好、寿命长、成本低等。这些优点能够极大地提高人事劳资管理的效率,也是企业的科学化、正规化管理,与世界接轨的重要条件。 |
|