基于java+springboot+vue的华府便利店信息管理系统

项目介绍

现代经济快节奏发展以及不断完善升级的信息化技术,让传统数据信息的管理升级为软件存储,归纳,集中处理数据信息的管理方式。本华府便利店信息管理系统就是在这样的大环境下诞生,其可以帮助管理者在短时间内处理完毕庞大的数据信息,使用这种软件工具可以帮助管理人员提高事务处理效率,达到事半功倍的效果。此华府便利店信息管理系统利用当下成熟完善的SSM框架,使用跨平台的可开发大型商业网站的Java语言,以及最受欢迎的RDBMS应用软件之一的Mysql数据库进行程序开发。实现了用户在线选择试题并完成答题,在线查看考核分数。管理员管理字典管理、供应商信息管理、商品管理、采购管理、采购详情管理、收银管理、收银详情管理、员工管理、管理员表管理等功能。华府便利店信息管理系统的开发根据操作人员需要设计的界面简洁美观,在功能模块布局上跟同类型网站保持一致,程序在实现基本要求功能时,也为数据信息面临的安全问题提供了一些实用的解决方案。可以说该程序在帮助管理者高效率地处理工作事务的同时,也实现了数据信息的整体化,规范化与自动化。

4.2 系统功能结构设计
在分析并得出使用者对程序的功能要求时,就可以进行程序设计了。如图4.2展示的就是管理员功能结构图,管理员在后台主要管理字典管理、供应商信息管理、商品管理、采购管理、采购详情管理、收银管理、收银详情管理、员工管理、管理员表管理等。
在这里插入图片描述

开发环境

编程语言:Java
数据库 :Mysql
系统架构:B/S
后端框架:SpringBoot
编译工具:idea或者eclipse,jdk1.8,maven
支持定做:java/php/python/android/小程序vue/爬虫/c#/asp.net

系统实现

5.1 管理员功能介绍
5.1.1 商品列表
如图5.1显示的就是商品列表页面,此页面提供给管理员的功能有:查看商品、新增商品、修改商品、删除商品等。
在这里插入图片描述

图5.1 商品列表页面

5.1.2 收银信息管理
公告信息管理页面提供的功能操作有:新增收银,查看收银信息,删除收银操作。下图就是收银信息管理页面。
在这里插入图片描述

图5.3 收银信息管理页面

5.1.3商品类型管理
商品类型管理页面显示所有商品类型,在此页面既可以让管理员添加新的公告信息类型,也能对已有的商品类型信息执行编辑更新,失效的商品类型信息也能让管理员快速删除。下图就是商品类型管理页面。
在这里插入图片描述

图5.4 商品类型列表页面

核心代码

package com.controller;

import java.io.File;
import java.math.BigDecimal;
import java.net.URL;
import java.text.SimpleDateFormat;
import com.alibaba.fastjson.JSONObject;
import java.util.*;
import org.springframework.beans.BeanUtils;
import javax.servlet.http.HttpServletRequest;
import org.springframework.web.context.ContextLoader;
import javax.servlet.ServletContext;
import com.service.TokenService;
import com.utils.*;
import java.lang.reflect.InvocationTargetException;

import com.service.DictionaryService;
import org.apache.commons.lang3.StringUtils;
import com.annotation.IgnoreAuth;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.entity.*;
import com.entity.view.*;
import com.service.*;
import com.utils.PageUtils;
import com.utils.R;
import com.alibaba.fastjson.*;

/**
 * 收银
 * 后端接口
 * @author
 * @email
*/
@RestController
@Controller
@RequestMapping("/goodsShouyin")
public class GoodsShouyinController {
    private static final Logger logger = LoggerFactory.getLogger(GoodsShouyinController.class);

    @Autowired
    private GoodsShouyinService goodsShouyinService;


    @Autowired
    private TokenService tokenService;
    @Autowired
    private DictionaryService dictionaryService;

    //级联表service
    @Autowired
    private YuangongService yuangongService;

    // 列表详情的表级联service
    @Autowired
    private GoodsShouyinListService goodsShouyinListService;
//    @Autowired
//    private YonghuService yonghuService;
    @Autowired
    private GoodsService goodsService;


    /**
    * 后端列表
    */
    @RequestMapping("/page")
    public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){
        logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
        String role = String.valueOf(request.getSession().getAttribute("role"));
        if(StringUtil.isEmpty(role))
            return R.error(511,"权限为空");
        else if("员工".equals(role))
            params.put("yuangongId",request.getSession().getAttribute("userId"));
        if(params.get("orderBy")==null || params.get("orderBy")==""){
            params.put("orderBy","id");
        }
        PageUtils page = goodsShouyinService.queryPage(params);

        //字典表数据转换
        List<GoodsShouyinView> list =(List<GoodsShouyinView>)page.getList();
        for(GoodsShouyinView c:list){
            //修改对应字典表字段
            dictionaryService.dictionaryConvert(c, request);
        }
        return R.ok().put("data", page);
    }

    /**
    * 后端详情
    */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id, HttpServletRequest request){
        logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
        GoodsShouyinEntity goodsShouyin = goodsShouyinService.selectById(id);
        if(goodsShouyin !=null){
            //entity转view
            GoodsShouyinView view = new GoodsShouyinView();
            BeanUtils.copyProperties( goodsShouyin , view );//把实体数据重构到view中

                //级联表
                YuangongEntity yuangong = yuangongService.selectById(goodsShouyin.getYuangongId());
                if(yuangong != null){
                    BeanUtils.copyProperties( yuangong , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段
                    view.setYuangongId(yuangong.getId());
                }
            //修改对应字典表字段
            dictionaryService.dictionaryConvert(view, request);
            return R.ok().put("data", view);
        }else {
            return R.error(511,"查不到数据");
        }

    }

    /**
    * 后端保存
    */
    @RequestMapping("/save")
    public R save(@RequestBody GoodsShouyinEntity goodsShouyin, HttpServletRequest request){
        logger.debug("save方法:,,Controller:{},,goodsShouyin:{}",this.getClass().getName(),goodsShouyin.toString());

        String role = String.valueOf(request.getSession().getAttribute("role"));
        if(StringUtil.isEmpty(role))
            return R.error(511,"权限为空");
        else if("员工".equals(role))
            goodsShouyin.setYuangongId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));
        Wrapper<GoodsShouyinEntity> queryWrapper = new EntityWrapper<GoodsShouyinEntity>()
            .eq("goods_shouyin_uuid_number", goodsShouyin.getGoodsShouyinUuidNumber())
            .eq("yuangong_id", goodsShouyin.getYuangongId())
            .eq("goods_shouyin_types", goodsShouyin.getGoodsShouyinTypes())
            ;

        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        GoodsShouyinEntity goodsShouyinEntity = goodsShouyinService.selectOne(queryWrapper);
        if(goodsShouyinEntity==null){
            goodsShouyin.setInsertTime(new Date());
            goodsShouyin.setCreateTime(new Date());
            goodsShouyinService.insert(goodsShouyin);
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }

    /**
    * 后端修改
    */
    @RequestMapping("/update")
    public R update(@RequestBody GoodsShouyinEntity goodsShouyin, HttpServletRequest request){
        logger.debug("update方法:,,Controller:{},,goodsShouyin:{}",this.getClass().getName(),goodsShouyin.toString());

        String role = String.valueOf(request.getSession().getAttribute("role"));
        if(StringUtil.isEmpty(role))
            return R.error(511,"权限为空");
        else if("员工".equals(role))
            goodsShouyin.setYuangongId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));
        //根据字段查询是否有相同数据
        Wrapper<GoodsShouyinEntity> queryWrapper = new EntityWrapper<GoodsShouyinEntity>()
            .notIn("id",goodsShouyin.getId())
            .andNew()
            .eq("goods_shouyin_uuid_number", goodsShouyin.getGoodsShouyinUuidNumber())
            .eq("yuangong_id", goodsShouyin.getYuangongId())
            .eq("goods_shouyin_types", goodsShouyin.getGoodsShouyinTypes())
            ;

        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        GoodsShouyinEntity goodsShouyinEntity = goodsShouyinService.selectOne(queryWrapper);
        if(goodsShouyinEntity==null){
            //  String role = String.valueOf(request.getSession().getAttribute("role"));
            //  if("".equals(role)){
            //      goodsShouyin.set
            //  }
            goodsShouyinService.updateById(goodsShouyin);//根据id更新
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }
    /**
    *收银
    */
    @RequestMapping("/shouyin")
    public R inGoodsShouyinList(@RequestBody  Map<String, Object> params,HttpServletRequest request){
        logger.debug("shouyin方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
        //params:{"map":{"1":2,"2":3},"goodsShouyinTypes":"1","yonghuid":"2"}

        String role = String.valueOf(request.getSession().getAttribute("role"));
        if(StringUtil.isEmpty(role))
            return R.error(511,"权限为空");

        String goodsShouyinTypes = String.valueOf(params.get("goodsShouyinTypes"));//收银类型



        Map<String, Integer> map = (Map<String, Integer>) params.get("map");
        if(map == null || map.size() == 0)
            return R.error(511,"购买商品不能为空");

        Set<String> ids = map.keySet();
        Double goodsShouyinTruePrice = 0.0;

        List<GoodsEntity> goodsList = goodsService.selectBatchIds(ids);
        if(goodsList == null || goodsList.size() == 0){
            return R.error(511,"查数据库查不到数据");
        }else{
            for(GoodsEntity w:goodsList){
                Integer value = w.getGoodsKucunNumber() - map.get(String.valueOf(w.getId()));
                if(value <0){
                    return R.error(511,"购买数量不能大于库存数量");
                }
                w.setGoodsKucunNumber(value);
                goodsShouyinTruePrice += w.getGoodsXiaoshouMoney() * map.get(String.valueOf(w.getId()));
            }
        }

        //当前表
        GoodsShouyinEntity goodsShouyinEntity = new GoodsShouyinEntity<>();
            goodsShouyinEntity.setGoodsShouyinUuidNumber(String.valueOf(new Date().getTime()));
            if("员工".equals(role))
                goodsShouyinEntity.setYuangongId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));
            goodsShouyinEntity.setGoodsShouyinTruePrice(goodsShouyinTruePrice);
            goodsShouyinEntity.setGoodsShouyinTypes(Integer.valueOf(goodsShouyinTypes));
            goodsShouyinEntity.setGoodsShouyinContent("");
            goodsShouyinEntity.setInsertTime(new Date());
            goodsShouyinEntity.setCreateTime(new Date());


        boolean insertGoodsShouyin = goodsShouyinService.insert(goodsShouyinEntity);
        if(insertGoodsShouyin){
            //级联表
            ArrayList<GoodsShouyinListEntity> goodsShouyinLists = new ArrayList<>();
            for(String id:ids){
                GoodsShouyinListEntity goodsShouyinListEntity = new GoodsShouyinListEntity();
                goodsShouyinListEntity.setGoodsShouyinId(goodsShouyinEntity.getId());
                goodsShouyinListEntity.setGoodsId(Integer.valueOf(id));
                goodsShouyinListEntity.setGoodsShouyinListNumber(map.get(id));
                goodsShouyinListEntity.setInsertTime(new Date());
                goodsShouyinListEntity.setCreateTime(new Date());
                goodsShouyinLists.add(goodsShouyinListEntity);
                goodsService.updateBatchById(goodsList);
            }
            goodsShouyinListService.insertBatch(goodsShouyinLists);
        }

        return R.ok();
    }
    /**
    * 删除
    */
    @RequestMapping("/delete")
    public R delete(@RequestBody Integer[] ids){
        logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());
        goodsShouyinService.deleteBatchIds(Arrays.asList(ids));
        goodsShouyinListService.delete(new EntityWrapper<GoodsShouyinListEntity>().in("goods_shouyin_id",ids));
        return R.ok();
    }

    /**
     * 批量上传
     */
    @RequestMapping("/batchInsert")
    public R save( String fileName){
        logger.debug("batchInsert方法:,,Controller:{},,fileName:{}",this.getClass().getName(),fileName);
        try {
            List<GoodsShouyinEntity> goodsShouyinList = new ArrayList<>();//上传的东西
            Map<String, List<String>> seachFields= new HashMap<>();//要查询的字段
            Date date = new Date();
            int lastIndexOf = fileName.lastIndexOf(".");
            if(lastIndexOf == -1){
                return R.error(511,"该文件没有后缀");
            }else{
                String suffix = fileName.substring(lastIndexOf);
                if(!".xls".equals(suffix)){
                    return R.error(511,"只支持后缀为xls的excel文件");
                }else{
                    URL resource = this.getClass().getClassLoader().getResource("static/upload/" + fileName);//获取文件路径
                    File file = new File(resource.getFile());
                    if(!file.exists()){
                        return R.error(511,"找不到上传文件,请联系管理员");
                    }else{
                        List<List<String>> dataList = PoiUtil.poiImport(file.getPath());//读取xls文件
                        dataList.remove(0);//删除第一行,因为第一行是提示
                        for(List<String> data:dataList){
                            //循环
                            GoodsShouyinEntity goodsShouyinEntity = new GoodsShouyinEntity();
//                            goodsShouyinEntity.setGoodsShouyinUuidNumber(data.get(0));                    //收银流水号 要改的
//                            goodsShouyinEntity.setYuangongId(Integer.valueOf(data.get(0)));   //员工 要改的
//                            goodsShouyinEntity.setGoodsShouyinTruePrice(data.get(0));                    //实付金额 要改的
//                            goodsShouyinEntity.setGoodsShouyinTypes(Integer.valueOf(data.get(0)));   //收银类型 要改的
//                            goodsShouyinEntity.setGoodsShouyinContent("");//照片
//                            goodsShouyinEntity.setInsertTime(date);//时间
//                            goodsShouyinEntity.setCreateTime(date);//时间
                            goodsShouyinList.add(goodsShouyinEntity);


                            //把要查询是否重复的字段放入map中
                                //收银流水号
                                if(seachFields.containsKey("goodsShouyinUuidNumber")){
                                    List<String> goodsShouyinUuidNumber = seachFields.get("goodsShouyinUuidNumber");
                                    goodsShouyinUuidNumber.add(data.get(0));//要改的
                                }else{
                                    List<String> goodsShouyinUuidNumber = new ArrayList<>();
                                    goodsShouyinUuidNumber.add(data.get(0));//要改的
                                    seachFields.put("goodsShouyinUuidNumber",goodsShouyinUuidNumber);
                                }
                        }

                        //查询是否重复
                         //收银流水号
                        List<GoodsShouyinEntity> goodsShouyinEntities_goodsShouyinUuidNumber = goodsShouyinService.selectList(new EntityWrapper<GoodsShouyinEntity>().in("goods_shouyin_uuid_number", seachFields.get("goodsShouyinUuidNumber")));
                        if(goodsShouyinEntities_goodsShouyinUuidNumber.size() >0 ){
                            ArrayList<String> repeatFields = new ArrayList<>();
                            for(GoodsShouyinEntity s:goodsShouyinEntities_goodsShouyinUuidNumber){
                                repeatFields.add(s.getGoodsShouyinUuidNumber());
                            }
                            return R.error(511,"数据库的该表中的 [收银流水号] 字段已经存在 存在数据为:"+repeatFields.toString());
                        }
                        goodsShouyinService.insertBatch(goodsShouyinList);
                        return R.ok();
                    }
                }
            }
        }catch (Exception e){
            return R.error(511,"批量插入数据异常,请联系管理员");
        }
    }





}

论文参考

在这里插入图片描述

目 录
目 录 III
1 绪论 1
1.1 研究背景 1
1.2 目的和意义 1
1.3 论文结构安排 2
2 相关技术 3
2.1 SSM框架介绍 3
2.2 B/S结构介绍 3
2.3 Mysql数据库介绍 4
3 系统分析 6
3.1 系统可行性分析 6
3.1.1 技术可行性分析 6
3.1.2 经济可行性分析 6
3.1.3 运行可行性分析 6
3.2 系统性能分析 7
3.2.1 易用性指标 7
3.2.2 可扩展性指标 7
3.2.3 健壮性指标 7
3.2.4 安全性指标 8
3.3 系统流程分析 8
3.3.1 操作流程分析 8
3.3.2 登录流程分析 9
3.3.3 信息添加流程分析 10
3.3.4 信息删除流程分析 11
3.4 系统功能分析 11
4 系统设计 12
4.1 系统概要设计 12
4.2 系统功能结构设计 12
4.3 数据库设计 13
4.3.1 数据库E-R图设计 13
4.3.2 数据库表结构设计 14
5 系统实现 15
5.1 管理员功能介绍 15
5.1.1 商品列表 15
5.1.2 公告信息管理 15
5.1.3商品类型管理 16
6 系统测试 17
6.1 系统测试的特点  17
6.2 系统功能测试 18
6.2.1 登录功能测试 18
6.2.2 添加班级功能测试 18
6.3 测试结果分析 18
结 论 20
致 谢 21
参考文献 22

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值