小言_互联网的博客

超市结算系统|Springboot+Vue通用超市结算收银系统

535人阅读  评论(0)

作者主页:编程千纸鹤

作者简介:Java、前端、Pythone开发多年,做过高程,项目经理,架构师

主要内容:Java项目开发、毕业设计开发、面试技术整理、最新技术分享

收藏点赞不迷路  关注作者有好处

项目编号:BS-XX-154

前言:

信息数据从传统到当代,是一直在变革当中,突如其来的互联网让传统的信息管理看到了革命性的曙光,因为传统信息管理从时效性,还是安全性,还是可操作性等各个方面来讲,遇到了互联网时代才发现能补上自古以来的短板,有效的提升管理的效率和业务水平。传统的管理模式,时间越久管理的内容越多,也需要更多的人来对数据进行整理,并且数据的汇总查询方面效率也是极其的低下,并且数据安全方面永远不会保证安全性能。结合数据内容管理的种种缺点,在互联网时代都可以得到有效的补充。结合先进的互联网技术,开发符合需求的软件,让数据内容管理不管是从录入的及时性,查看的及时性还是汇总分析的及时性,都能让正确率达到最高,管理更加的科学和便捷。本次开发的通用超市结算系统实现了操作日志管理、字典管理、供应商信息管理、商品管理、出入库管理、出入库详情管理、收银管理、收银详情管理、用户管理、员工管理、用户表管理等功能。系统用到了关系型数据库中王者MySql作为系统的数据库,有效的对数据进行安全的存储,有效的备份,对数据可靠性方面得到了保证。并且程序也具备程序需求的所有功能,使得操作性还是安全性都大大提高,让通用超市结算系统更能从理念走到现实,确确实实的让人们提升信息处理效率。

一,项目简介

在管理员功能模块确定下来的基础上,对管理员各个功能进行设计,确定管理员功能的详细模块。绘制的管理员功能结构见下图。

分析程序的流程,涉及到程序的整体操作流程,通过分析与设计,绘制的程序操作流程图见下图。此程序为了确保安全,会让使用者通过登录模块验证信息,符合要求的使用者才有权限操作程序。

图3-1 程序操作流程图

程序处理数据会涉及到数据的录入环节,绘制的添加流程见下图。程序录入数据过程中,始终与数据库保持同步。

图3-2 信息添加流程图

程序里面的数据也会出现错误,因此就有相应的修改数据的功能,绘制的程序修改流程见下图。此过程也是跟后台数据库进行数据同步显示。

图3-3信息修改流程图

程序数据存放于数据仓库,有时也会涉及到数据删除,此过程对应的流程图见下图。数据信息被删除之后,数据库里面也就没有了该数据信息了。

图3-4 信息删除流程图

二,环境介绍

语言环境:Java:  jdk1.8

数据库:Mysql: mysql5.7

应用服务器:Tomcat:  tomcat8.5.31

开发工具:IDEA或VSCODE

后台开发技术:Springboot+mybatis+springmvc

前台开发技术:Node+vue+ElementUI

特色应用:支付宝沙箱

三,系统展示

3.1.1 商品管理

此页面让管理员管理商品的数据,商品管理页面见下图。此页面主要实现商品的增加、修改、删除、查看的功能。

图5-1 商品管理页面

3.1.2 供应商信息管理

供应商信息管理页面提供的功能操作有:新增供应商,修改供应商,删除供应商操作。下图就是供应商信息管理页面。

图5.3 供应商信息管理页面

3.1.2供应商类型管理

供应商类型管理页面显示所有供应商类型,在此页面既可以让管理员添加新的供应商信息类型,也能对已有的供应商类型信息执行编辑更新,失效的供应商类型信息也能让管理员快速删除。下图就是供应商类型管理页面。

图5.4 供应商类型列表页面

3.1.4 会员级别管理

 3.1.5 商品管理

 3.1.6 商品出入库管理

  3.1.7 员工管理

 3.1.6 收银管理

 会员收银支付直接从充值卡中扣款

非会员支付使用支付宝沙箱完成支付功能

四,核心代码展示


  
  1. package com.controller;
  2. import java.io.File;
  3. import java.math.BigDecimal;
  4. import java.net.URL;
  5. import java.text.SimpleDateFormat;
  6. import com.alibaba.fastjson.JSONObject;
  7. import java.util.*;
  8. import org.springframework.beans.BeanUtils;
  9. import javax.servlet.http.HttpServletRequest;
  10. import org.springframework.web.context.ContextLoader;
  11. import javax.servlet.ServletContext;
  12. import com.service.TokenService;
  13. import com.utils.*;
  14. import java.lang.reflect.InvocationTargetException;
  15. import com.service.DictionaryService;
  16. import org.apache.commons.lang3.StringUtils;
  17. import com.annotation.IgnoreAuth;
  18. import org.slf4j.Logger;
  19. import org.slf4j.LoggerFactory;
  20. import org.springframework.beans.factory.annotation.Autowired;
  21. import org.springframework.stereotype.Controller;
  22. import org.springframework.web.bind.annotation.*;
  23. import com.baomidou.mybatisplus.mapper.EntityWrapper;
  24. import com.baomidou.mybatisplus.mapper.Wrapper;
  25. import com.entity.*;
  26. import com.entity.view.*;
  27. import com.service.*;
  28. import com.utils.PageUtils;
  29. import com.utils.R;
  30. import com.alibaba.fastjson.*;
  31. /**
  32. * 操作日志
  33. * 后端接口
  34. * @author
  35. * @email
  36. */
  37. @RestController
  38. @Controller
  39. @RequestMapping("/caozuorizhi")
  40. public class CaozuorizhiController {
  41. private static final Logger logger = LoggerFactory.getLogger(CaozuorizhiController.class);
  42. private static final String TABLE_NAME = "caozuorizhi";
  43. @Autowired
  44. private CaozuorizhiService caozuorizhiService;
  45. @Autowired
  46. private TokenService tokenService;
  47. @Autowired
  48. private DictionaryService dictionaryService;
  49. @Autowired
  50. private YonghuService yonghuService;
  51. @Autowired
  52. private YuangongService yuangongService;
  53. /**
  54. * 后端列表
  55. */
  56. @RequestMapping("/page")
  57. public R page (@RequestParam Map<String, Object> params, HttpServletRequest request){
  58. logger.debug( "page方法:,,Controller:{},,params:{}", this.getClass().getName(),JSONObject.toJSONString(params));
  59. String role = String.valueOf(request.getSession().getAttribute( "role"));
  60. if( false)
  61. return R.error( 511, "永不会进入");
  62. else if( "用户".equals(role))
  63. params.put( "yonghuId",request.getSession().getAttribute( "userId"));
  64. else if( "员工".equals(role))
  65. params.put( "yuangongId",request.getSession().getAttribute( "userId"));
  66. CommonUtil.checkMap(params);
  67. PageUtils page = caozuorizhiService.queryPage(params);
  68. //字典表数据转换
  69. List<CaozuorizhiView> list =(List<CaozuorizhiView>)page.getList();
  70. for(CaozuorizhiView c:list){
  71. //修改对应字典表字段
  72. dictionaryService.dictionaryConvert(c, request);
  73. }
  74. return R.ok().put( "data", page);
  75. }
  76. /**
  77. * 后端详情
  78. */
  79. @RequestMapping("/info/{id}")
  80. public R info (@PathVariable("id") Long id, HttpServletRequest request){
  81. logger.debug( "info方法:,,Controller:{},,id:{}", this.getClass().getName(),id);
  82. CaozuorizhiEntity caozuorizhi = caozuorizhiService.selectById(id);
  83. if(caozuorizhi != null){
  84. //entity转view
  85. CaozuorizhiView view = new CaozuorizhiView();
  86. BeanUtils.copyProperties( caozuorizhi , view ); //把实体数据重构到view中
  87. //修改对应字典表字段
  88. dictionaryService.dictionaryConvert(view, request);
  89. return R.ok().put( "data", view);
  90. } else {
  91. return R.error( 511, "查不到数据");
  92. }
  93. }
  94. /**
  95. * 后端保存
  96. */
  97. @RequestMapping("/save")
  98. public R save (@RequestBody CaozuorizhiEntity caozuorizhi, HttpServletRequest request){
  99. logger.debug( "save方法:,,Controller:{},,caozuorizhi:{}", this.getClass().getName(),caozuorizhi.toString());
  100. String role = String.valueOf(request.getSession().getAttribute( "role"));
  101. if( false)
  102. return R.error( 511, "永远不会进入");
  103. Wrapper<CaozuorizhiEntity> queryWrapper = new EntityWrapper<CaozuorizhiEntity>()
  104. .eq( "caozuorizhi_this_biao", caozuorizhi.getCaozuorizhiThisBiao())
  105. .eq( "caozuorizhi_caozuobiao", caozuorizhi.getCaozuorizhiCaozuobiao())
  106. .eq( "caozuorizhi_caozuozhanghu", caozuorizhi.getCaozuorizhiCaozuozhanghu())
  107. .eq( "caozuorizhi_caozuoleixing", caozuorizhi.getCaozuorizhiCaozuoleixing())
  108. .eq( "caozuorizhi_text", caozuorizhi.getCaozuorizhiText())
  109. ;
  110. logger.info( "sql语句:"+queryWrapper.getSqlSegment());
  111. CaozuorizhiEntity caozuorizhiEntity = caozuorizhiService.selectOne(queryWrapper);
  112. if(caozuorizhiEntity== null){
  113. caozuorizhi.setInsertTime( new Date());
  114. caozuorizhi.setCreateTime( new Date());
  115. caozuorizhiService.insert(caozuorizhi);
  116. return R.ok();
  117. } else {
  118. return R.error( 511, "表中有相同数据");
  119. }
  120. }
  121. /**
  122. * 后端修改
  123. */
  124. @RequestMapping("/update")
  125. public R update (@RequestBody CaozuorizhiEntity caozuorizhi, HttpServletRequest request) throws NoSuchFieldException, ClassNotFoundException, IllegalAccessException, InstantiationException {
  126. logger.debug( "update方法:,,Controller:{},,caozuorizhi:{}", this.getClass().getName(),caozuorizhi.toString());
  127. CaozuorizhiEntity oldCaozuorizhiEntity = caozuorizhiService.selectById(caozuorizhi.getId()); //查询原先数据
  128. String role = String.valueOf(request.getSession().getAttribute( "role"));
  129. // if(false)
  130. // return R.error(511,"永远不会进入");
  131. //根据字段查询是否有相同数据
  132. Wrapper<CaozuorizhiEntity> queryWrapper = new EntityWrapper<CaozuorizhiEntity>()
  133. .notIn( "id",caozuorizhi.getId())
  134. .andNew()
  135. .eq( "caozuorizhi_this_biao", caozuorizhi.getCaozuorizhiThisBiao())
  136. .eq( "caozuorizhi_caozuobiao", caozuorizhi.getCaozuorizhiCaozuobiao())
  137. .eq( "caozuorizhi_caozuozhanghu", caozuorizhi.getCaozuorizhiCaozuozhanghu())
  138. .eq( "caozuorizhi_caozuoleixing", caozuorizhi.getCaozuorizhiCaozuoleixing())
  139. .eq( "caozuorizhi_text", caozuorizhi.getCaozuorizhiText())
  140. ;
  141. logger.info( "sql语句:"+queryWrapper.getSqlSegment());
  142. CaozuorizhiEntity caozuorizhiEntity = caozuorizhiService.selectOne(queryWrapper);
  143. if(caozuorizhiEntity== null){
  144. caozuorizhiService.updateById(caozuorizhi); //根据id更新
  145. return R.ok();
  146. } else {
  147. return R.error( 511, "表中有相同数据");
  148. }
  149. }
  150. /**
  151. * 删除
  152. */
  153. @RequestMapping("/delete")
  154. public R delete (@RequestBody Integer[] ids, HttpServletRequest request){
  155. logger.debug( "delete:,,Controller:{},,ids:{}", this.getClass().getName(),ids.toString());
  156. List<CaozuorizhiEntity> oldCaozuorizhiList =caozuorizhiService.selectBatchIds(Arrays.asList(ids)); //要删除的数据
  157. caozuorizhiService.deleteBatchIds(Arrays.asList(ids));
  158. return R.ok();
  159. }
  160. /**
  161. * 批量上传
  162. */
  163. @RequestMapping("/batchInsert")
  164. public R save ( String fileName, HttpServletRequest request){
  165. logger.debug( "batchInsert方法:,,Controller:{},,fileName:{}", this.getClass().getName(),fileName);
  166. Integer yonghuId = Integer.valueOf(String.valueOf(request.getSession().getAttribute( "userId")));
  167. SimpleDateFormat sdf = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss");
  168. try {
  169. List<CaozuorizhiEntity> caozuorizhiList = new ArrayList<>(); //上传的东西
  170. Map<String, List<String>> seachFields= new HashMap<>(); //要查询的字段
  171. Date date = new Date();
  172. int lastIndexOf = fileName.lastIndexOf( ".");
  173. if(lastIndexOf == - 1){
  174. return R.error( 511, "该文件没有后缀");
  175. } else{
  176. String suffix = fileName.substring(lastIndexOf);
  177. if(! ".xls".equals(suffix)){
  178. return R.error( 511, "只支持后缀为xls的excel文件");
  179. } else{
  180. URL resource = this.getClass().getClassLoader().getResource( "static/upload/" + fileName); //获取文件路径
  181. File file = new File(resource.getFile());
  182. if(!file.exists()){
  183. return R.error( 511, "找不到上传文件,请联系管理员");
  184. } else{
  185. List<List<String>> dataList = PoiUtil.poiImport(file.getPath()); //读取xls文件
  186. dataList.remove( 0); //删除第一行,因为第一行是提示
  187. for(List<String> data:dataList){
  188. //循环
  189. CaozuorizhiEntity caozuorizhiEntity = new CaozuorizhiEntity();
  190. // caozuorizhiEntity.setCaozuorizhiThisBiao(data.get(0)); //操作人所在表 要改的
  191. // caozuorizhiEntity.setCaozuorizhiCaozuobiao(data.get(0)); //操作表 要改的
  192. // caozuorizhiEntity.setCaozuorizhiCaozuozhanghu(data.get(0)); //操作账户 要改的
  193. // caozuorizhiEntity.setCaozuorizhiCaozuoleixing(data.get(0)); //操作类型 要改的
  194. // caozuorizhiEntity.setCaozuorizhiText(data.get(0)); //操作内容 要改的
  195. // caozuorizhiEntity.setInsertTime(date);//时间
  196. // caozuorizhiEntity.setCreateTime(date);//时间
  197. caozuorizhiList.add(caozuorizhiEntity);
  198. //把要查询是否重复的字段放入map中
  199. }
  200. //查询是否重复
  201. caozuorizhiService.insertBatch(caozuorizhiList);
  202. return R.ok();
  203. }
  204. }
  205. }
  206. } catch (Exception e){
  207. e.printStackTrace();
  208. return R.error( 511, "批量插入数据异常,请联系管理员");
  209. }
  210. }
  211. }


  
  1. package com.controller;
  2. import java.util.Arrays;
  3. import java.util.Map;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.web.bind.annotation.PathVariable;
  6. import org.springframework.web.bind.annotation.PostMapping;
  7. import org.springframework.web.bind.annotation.RequestBody;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import org.springframework.web.bind.annotation.RequestParam;
  10. import org.springframework.web.bind.annotation.RestController;
  11. import com.annotation.IgnoreAuth;
  12. import com.baomidou.mybatisplus.mapper.EntityWrapper;
  13. import com.entity.ConfigEntity;
  14. import com.service.ConfigService;
  15. import com.utils.PageUtils;
  16. import com.utils.R;
  17. import com.utils.ValidatorUtils;
  18. /**
  19. * 登录相关
  20. */
  21. @RequestMapping("config")
  22. @RestController
  23. public class ConfigController{
  24. @Autowired
  25. private ConfigService configService;
  26. /**
  27. * 列表
  28. */
  29. @RequestMapping("/page")
  30. public R page (@RequestParam Map<String, Object> params,ConfigEntity config){
  31. EntityWrapper<ConfigEntity> ew = new EntityWrapper<ConfigEntity>();
  32. PageUtils page = configService.queryPage(params);
  33. return R.ok().put( "data", page);
  34. }
  35. /**
  36. * 列表
  37. */
  38. @IgnoreAuth
  39. @RequestMapping("/list")
  40. public R list (@RequestParam Map<String, Object> params,ConfigEntity config){
  41. EntityWrapper<ConfigEntity> ew = new EntityWrapper<ConfigEntity>();
  42. PageUtils page = configService.queryPage(params);
  43. return R.ok().put( "data", page);
  44. }
  45. /**
  46. * 信息
  47. */
  48. @RequestMapping("/info/{id}")
  49. public R info (@PathVariable("id") String id){
  50. ConfigEntity config = configService.selectById(id);
  51. return R.ok().put( "data", config);
  52. }
  53. /**
  54. * 详情
  55. */
  56. @IgnoreAuth
  57. @RequestMapping("/detail/{id}")
  58. public R detail (@PathVariable("id") String id){
  59. ConfigEntity config = configService.selectById(id);
  60. return R.ok().put( "data", config);
  61. }
  62. /**
  63. * 根据name获取信息
  64. */
  65. @RequestMapping("/info")
  66. public R infoByName (@RequestParam String name){
  67. ConfigEntity config = configService.selectOne( new EntityWrapper<ConfigEntity>().eq( "name", "faceFile"));
  68. return R.ok().put( "data", config);
  69. }
  70. /**
  71. * 保存
  72. */
  73. @PostMapping("/save")
  74. public R save (@RequestBody ConfigEntity config){
  75. // ValidatorUtils.validateEntity(config);
  76. configService.insert(config);
  77. return R.ok();
  78. }
  79. /**
  80. * 修改
  81. */
  82. @RequestMapping("/update")
  83. public R update (@RequestBody ConfigEntity config){
  84. // ValidatorUtils.validateEntity(config);
  85. configService.updateById(config); //全部更新
  86. return R.ok();
  87. }
  88. /**
  89. * 删除
  90. */
  91. @RequestMapping("/delete")
  92. public R delete (@RequestBody Long[] ids){
  93. configService.deleteBatchIds(Arrays.asList(ids));
  94. return R.ok();
  95. }
  96. }

五,项目总结

程序软件的开发阶段也包括了系统测试,这个部分就是程序质量评定的一个重要环节,如果说程序通过编码实现功能之后,不通过测试检查程序中出现的错误,那么程序一旦投入生活中运行使用时,就会产生许多大大小小的错误,这个时候去解决问题已经晚了,所以一个程序在被交付给使用者使用之前,开发者就需要使用多种测试方法反复进行测试,也是对程序的一个负责表现。程序进入系统测试阶段,在讲究策略进行测试时,也需要对时效性进行把控。当开发者测试完程序,并解决完测试期间程序产生的各种错误时,就需要程序的验收方来对程序进行验收测试,这也是程序测试的最后一个操作步骤。验收测试也是对程序的质量以及可交付性方面起到关键的作用。

5.1系统测试方法

程序软件进入到系统测试这一个环节时,也需要根据测试的方法进行规范化测试操作,测试方法以及使用顺序分别是:首先是单元测试,接着是集成测试和系统测试,最后才是验收测试,下面将描述系统测试方法。

单元测试:这个部分需要涉及到程序的代码方面的知识,这个操作环节是程序的开发者进行的,当程序开发者通过代码编写程序的子功能模块时,就会进行单元级别的测试,通常这个环节的测试也会被称作是白盒测试。

集成测试:这个步骤的前提是程序的所有功能模块都已完成开发,这个时候需要把程序所有的子功能模块集成到一起,形成一个完整的系统,此测试的主要目的就是检查这些功能模块集成在一起时的兼容性,也就是检测它们是否按照预期正常运行。

系统测试:当程序测试进入到这个环节时,就意味着程序测试工作已经进行到一半了,这个部分的测试也有另外一个名字,称作是黑盒测试,主要用于测试系统的功能是否按照预期进行运行。

验收测试:开发的程序已经通过了前面的单元测试,集成测试,以及系统测试环节时,就需要进行验收了,这个环节的操作用户就是程序面临的最终用户或者是客户。测试主要目的就是验证开发完成的程序是不是能够符合用户对其的期望,以及程序的所有功能是否符合用户的真正需求。

5.2 系统功能测试

5.2.1 用户登录测试

登录模块主要还是验证使用者的信息,判断使用者是否具备使用权限。测试的数据见下表,这里主要针对管理员进行测试。

表6-1 管理员登录测试数据表

选取的功能

具体步骤

填写的数据

预测结果

最终结果

管理员登录

依照页面提示依次填写账号,密码,然后点击登录按钮

保持账号与密码这两项数据,其中一个有误,另一个正确,进行测试

失败

失败

保持账号与密码都正确

成功

成功

5.2.2 添加账户功能测试

此部分主要测试程序的“添加账户”功能。测试信息使用数据表展示。

表6-2 添加新闻功能测试数据表

选取的功能

具体步骤

填写的数据

预测结果

最终结果

添加账户功能

管理员在添加账户页面根据提示填写数据并提交

标题和内容为null或数据格式有误

失败

失败

标题和内容填写无误

成功

成功

6.3 系统测试分析

通用超市结算系统在经历了一系列测试步骤之后,可以确定该系统可以交付给使用者进行使用了,在系统的功能主界面上可以清晰展示各个功能,并且各个功能的超链接也是正常跳转,能够实现用户要求的功能。在程序的稳定性,可靠性,验证逻辑以及操作流程方面跟需求文档很贴合。所以,开发完成的通用超市结算系统符合用户需求,它在用户电脑上运行使用带给用户的便利是显而易见的。


转载:https://blog.csdn.net/BS009/article/details/128093603
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场