登录

  • 登录
  • 忘记密码?点击找回

注册

  • 获取手机验证码 60
  • 注册

找回密码

  • 获取手机验证码60
  • 找回
毕业论文网 > 毕业论文 > 计算机类 > 计算机科学与技术 > 正文

小企业进销存管理系统的设计与实现毕业论文

 2022-03-26 05:03  

论文总字数:29098字

摘 要

随着信息全球化和“互联网 ”时代的到来,中小企业特别是传统的制造业、销售业等,进销存管理一直是其核心业务体现。而单纯依靠传统单一的人工化管理方式已不能满足其快速发展的要求,只有利用信息化的管理手段将传统企业从手工操作中解放出来,才能达到加速生产效率提升,提升管理水平,继而全面提高企业竞争力。随着企业信息化进程的不断发展,进销存管理系统在企业管理中有着广泛的应用前景。

本文实现小企业的进销存管理系统的设计,主要适用对象为企业内部的管理人员,分为入库管理员模块、销售员管理模块和系统管理员模块。入库模块实现了商品进货入库、退货出库,商品报损报溢,供应商资料维护,商品信息维护等功能;销售员模块实现了对商品销售出库、客户退货入库,客户资料维护等功能;管理员模块实现了对阶段性统计报表的查看和系统用户管理,角色权限管理的功能。

本系统开发采用Java语言、J2EE技术完成了整体设计与实现,采用My SQL数据库对数据存储操作。运用JSP、EXTJS、CSS等对界面进行美化和设计,并使用MyEclipse10开发工具实现。

关键词:进销存管理 Java J2EE JSP EXTJS My SQL

Design and Implementation of Inventory Management System

Abstract

With the advent of the age of information globalization and the "Internet ", small and medium-sized enterprises, especially traditional manufacturing, sales, etc., the management of in-coming inspection,sales and inventory has always been the core business. But relying on single traditional artificial management can not satisfy the speed of development, only using the informational management means can improve the production efficiency and reduce the enterprise cost and then improve the core competitiveness of enterprises in an all-round way. With the continuous development of enterprise information management, the inventory management System has extensive application prospect in the enterprise management.

This thesis realized the design of the inventory management system, which is appropriate for the enterprise internal management personnel. The system has been divided into storage module, sales module and administrator module. Storage module achieved the functions such as stock inventory, return of the outbound, goods reported loss and to overflow, data maintenance for supplier and goods; Sales module id mainly responsible for sales of outbound, customer returns and client data maintenance; Administrator module realized the function of viewing statistics, the management of users and role authorization .

This system adopted JAVA language, J2EE framework to complete the design and implementation of the overall system, and use My SQL database to operate data. The design of interactive interface depended on JSP, EXTJS and CSS. All of the system has achieved by MyEclipse10.

Keywords:Inventory Management System;EXTJS; J2EE; JSP;My SQL.

目 录

摘 要 I

Abstract II

第一章 绪论 1

1.1课题背景 1

1.2课题研究意义 2

1.3课题主要研究内容 2

第二章 开发语言与环境简介 4

2.1 J2EE技术 4

2.2 JSP组件 5

2.2.1JSP组件概述 5

2.2.2JSP脚本元素 6

2.2.4 JSP内置对象 6

2.3EXTJS框架概述 6

2.3.1EXTJS优势 6

2.3.2常用包介绍 7

2.4MySQL数据库 7

2.4.1MySQL概述 7

2.4.2MySQL支持的数据类型 7

2.5MyEclipse开发工具 8

第三章 系统需求分析 10

3.1 可行性分析 10

3.2系统需求分析 10

3.2.1前期分析阶段 10

3.2.2登陆和主页模块需求 11

3.2.3入库管理员用户需求 11

3.2.4销售管理员用户需求 12

3.2.5系统管理员用户需求 13

3.3本章小结 14

第四章 系统详细设计 15

4.1系统总流程设计 15

4.2系统功能模块的划分 16

4.2.1 入库管理员功能 16

4.2.2 销售管理员功能 17

4.2.3 系统管理员功能 18

4.3数据库表的设计与实现 19

4.3.1 报损单表 bsd 20

4.3.2 报损单商品表 bsdsp 20

4.3.3 报溢单表 byd 21

4.3.4 报溢单商品表bydsp 21

4.3.5 销售出库单表ckd 21

4.3.6销售单商品表 ckdsp 22

4.3.7供应商表gys 22

4.3.8进货单表 jhd 23

4.3.9进货单商品表 jhdsp 24

4.3.10客户表 kh 24

4.3.11导航表 menu 25

4.3.12角色表 role 25

4.3.13角色功能权限表 rolemenu 25

4.3.14单位表 spdw 26

4.3.15类别表 splb 26

4.3.16商品信息表 spxx 26

4.3.18退库单商品表 thdsp 27

4.3.19客户退货单据表 tkd 28

4.3.20客户退货单商品表 tkdsp 28

4.3.21用户表 users 29

4.4界面总体框架设计 29

4.5本章小结 30

第五章 系统的实现 31

5.1数据库连接 31

5.2登陆与主页 32

5.2.1登陆模块 32

5.2.2系统主页 33

5.3系统管理员功能 34

5.3.1统计报表模块 34

5.3.2基础资料模块 35

5.3.3系统管理模块 36

5.4入库管理员功能 38

5.4.1进货管理模块 38

5.4.2库存管理模块 39

5.4.4基础资料模块 41

5.5销售管理员功能 42

5.5.1销售管理模块 42

5.5.2统计报表模块 44

5.5.3基础资料模块 44

5.6本章小结 45

第六章 总结与展望 47

6.1 总结 47

6.2 系统开发不足 47

6.3 展望 48

参考文献 49

致 谢 50

第一章 绪论

1.1课题背景

互联网的兴起和电子商务的迅速发展给中小企业带来了与大型企业公平竞争的机会。特别是对于传统的制造业、销售业等,进销存管理一直是其经营活动的核心所在。而一个优秀的企业,不仅需要优质的供货渠道,稳定的客户资源,更应该协调好客户需求和存货之间的供需关系。通过自动化的信息管理取代人工的数据录入,及时发现客户潜在需求,宏观调控库存积压量,做到客户有求必应,库存积压最低,销售人才一目了然,才能达到最大的经济效益。

管理信息系统替代了繁杂易错的人工数据操作方式,用户通过系统的自动化数据统计直观企业的盈亏状况,及时发现管理漏洞,有效规避商业风险。我国企业在现代化建设发展过程中正从依靠资本和资源的大量投入转向科学化非盲目化的企业管理,进销存管理系统的使用将有效促进企业管理的效率和商业决策的准确性。

请支付后下载全文,论文总字数:29098字

您需要先支付 80元 才能查看全部内容!立即支付

企业微信

Copyright © 2010-2022 毕业论文网 站点地图