超市库存管理系统

2020-06-03 14:19

四川大学锦江学院计算机学院

毕业论文(设计)

题 目 超市库存管理系统

系 部 计算机科学与技术

专 业

学生姓名

学 号 090512024

指导教师 叶晓鸣

第 1 页

四川大学锦江学院计算机学院

超市库存管理系统

计算机学院计算机科学与技术2009级(2)班

【摘 要】超市库存管理系统是典型的信息管理系统(MIS),其开发主要包括后台数据库的建立和维护以及前端应用程序的开发两个方面。对于前者要求建立起数据一致性和完整性强、数据安全性好的库。而对于后者则要求应用程序功能完备,易使用等特点。

本系统主要完成对超市的管理,包括进货管理,销售管理,库存管理和员工管理四个方面。系统可以完成对各类信息的浏览、查询、添加、删除、修改等功能。

系统的核心是销售、库存查询和进货管理三者之间的联系,每一个表的修改都将联动的影响其它的表,当完成销售或进货操作时系统会自动地完成相对应信息的修改。查询功能也是系统的核心之一,在系统中主要根据商品编号和商品名称等进行查询,其目的都是为了方便用户使用,以求更快的查找到各个物料和产品品质的基本信息。系统有完整的用户添加、删除和密码修改功能,系统采用MySql来设计数据库,并使用当前优秀的开发工具—MyEclipse ,它有着最为灵活的数据库结构,对数据库应用有着良好的支持。

论文主要介绍了本课题的开发背景,所要完成的功能和开发的过程。重点说明了系统的设计思想、难点技术和解决方案。

【关键词】: 数据库 超市 信息系统 库存管理

Supermarket Stock Manage System

第 2 页

四川大学锦江学院计算机学院

Abstract

This system chiefly accomplishes the stock management to the storehouse, includes being put in storage, goes out the warehouse and stocks, and staff’s information, six aspects such as supplier's information as well as cryptogram management etc. What the system can accomplish to various kind the information glances over and the function such as inquires about ads, deletes and modification etc.

The systematic nucleus is put in storage, stocks and goes out the contact between the warehouse, and when accomplishes being put in storage or going out a warehouse, the system can accomplish voluntarily the modification of stock to other table of influence that the modification of every table all will be link geed when operating. Inquiring about the function also is one of systematic nucleus, namely having the wall scroll spare to inquire about and inquires about with many conditions in the system, also having accurately the query to inquire about with blurring, not only there is the condition query of static state in the system, also having the condition query of trends formations, his purpose all is using for convenient user. The system has complete user to add, deletes and the cipher modification function, and has the report form and prints the function. The Access 2000 that the system adopted among Microsoft Office comes the design data warehouse, and use before one Zorach development tool - MyEclipse, it has the most nimble data base structure, and the application has the good support to the data warehouses.

The development background of this the subject, course of function and the development that will be accomplished were chiefly introduced to thesis.

The emphatic explanation focal point of systems design, design thought and difficult point technology and settlement scheme.

Key words: data base supermarket information system Stock manage

目 录

第 3 页

四川大学锦江学院计算机学院

第1章 绪 论 ................................................................................................ 6 1.1系统开发背景和选题意义 ................................................................. 6 1.2 国内外研究现状 ............................................................................... 7 1.3 研究思路和方法 .............................................................................. 10 1.4 研究框架和主要研究内容 .............................................................. 10 第2章 系统相关技术概述 ......................................................................... 11 2.1 MySql简介 ........................................................................................ 11 2.2 MyEclipse 8.5简介 ........................................................................... 11 2.3 Struts2框架结构及工作原理 ........................................................... 12 2.4 Hibernate概述 ................................................................................... 13 2.5 Spring 概述 ....................................................................................... 13 2.6 JSP技术............................................................................................. 15 第3章 系统设计.......................................................................................... 16 3.1需求分析............................................................................................ 16 3.2 系统分析......................................................................................... 17 3.2系统资源需求 ................................................................................... 18 3.3 组织机构图 ..................................................................................... 19 3.4业务流程图........................................................................................ 19 3.5数据流程图........................................................................................ 20 3.6 功能模块的设计 ............................................................................ 22 3.7数据库设计........................................................................................ 23 3.7.1数据库设计 .............................................................................. 23 3.7.2 数据库表 ................................................................................. 24 第4章 详细设计与实现 ........................................................................... 29 4.1主界面模块设计 ............................................................................... 29 4.2 系统管理模块设计 .......................................................................... 30 4.3 交易管理模块设计 .......................................................................... 34 4.3.1 进货登记 ................................................................................. 34 4.3.2 销货登记 ................................................................................. 35 4.3.3 退货登记 ................................................................................. 36 4.4 查看数据表模块设计 ...................................................................... 43 4.4.1 查看厂商数据表 ..................................................................... 44 4.4.2 查看进货表 ............................................................................. 45 4.4.3 查看现存商品表 ..................................................................... 45

第 4 页

四川大学锦江学院计算机学院

4.4.4 查看销货表 ............................................................................. 46 4.4.5 查看退货表 ............................................................................. 46 4.5.6 查看员工表 ............................................................................. 47 4.5 进货统计模块设计 .......................................................................... 50 4.5.2 本月进货统计 ......................................................................... 51 4.5.3 本季度进货统计 ..................................................................... 51 4.5.4 今年进货统计 ......................................................................... 52 4.6 销货统计模块设计 .......................................................................... 52 4.6.1 今日销货统计 ......................................................................... 52 4.6.2 本月销货统计 ......................................................................... 53 4.6.3 本季度销货统计 ..................................................................... 53 4.6.4 今年销货统计 ......................................................................... 54 第5章 系统测试........................................................................................ 54 5.1系统测试............................................................................................ 55 5.1.1测试登录页面 .......................................................................... 55 5.1.2测试进货登记 .......................................................................... 56 5.1.3用户退出系统 .......................................................................... 57 参考文献 ........................................................................................................ 58 结束语 ............................................................................................................ 59 致谢 ................................................................................................................ 60

第 5 页


超市库存管理系统.doc 将本文的Word文档下载到电脑 下载失败或者文档不完整,请联系客服人员解决!

下一篇:机械手毕业设计开题报告

相关阅读
本类排行
× 注册会员免费下载(下载后可以自由复制和排版)

马上注册会员

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信: QQ: