微信小程序毕业设计-微信食堂线上订餐系统项目开发实战(附源码+论文)

大家好!我是程序猿老A,感谢您阅读本文,欢迎一键三连哦。

💞当前专栏:微信小程序毕业设计

精彩专栏推荐👇🏻👇🏻👇🏻

🎀 Python毕业设计
🌎Java毕业设计

开发运行环境

①前端:微信小程序开发工具

② 后端:Java

  • 框架:ssm
  • JDK版本:JDK1.8
  • 服务器:tomcat7
  • 数据库:mysql 5.7
  • 数据库工具:Navicat12
  • 开发软件:eclipse/myeclipse/idea
  • Maven包:Maven3.3.9
  • 浏览器:谷歌浏览器

演示视频

原版高清演示视频-编号:197
https://pan.quark.cn/s/b2f44f423421

源码下载地址:

https://download.csdn.net/download/2301_76953549/89227626

论文目录

【如需全文请按文末获取联系】
在这里插入图片描述
在这里插入图片描述

一、项目简介

微信食堂线上订餐小程序可以实现商品管理,商品评价管理,商家管理,公告管理,商品订单管理,在线充值等功能。该系统采用了SSM框架,Mysql数据库,Java语言等技术实现管理员后台,采用微信开发者工具来对用户小程序端进行了开发。

二、系统设计

2.1软件功能模块设计

图4.1即为设计的管理员功能结构,管理员权限操作的功能包括对用户注册信息,对商家信息,商品信息,公告信息等进行管理。
在这里插入图片描述
图4.2即为设计的商家功能结构,商家权限操作的功能包括管理商品,管理并回复商品评价,管理商品订单,查看公告等。
在这里插入图片描述
图4.3即为设计的用户功能结构,用户权限操作的功能包括购买商品,查看商家资料,查看公告,查看商品评价,管理商品订单,进行账户充值等。
在这里插入图片描述

2.2数据库设计

(1)图4.4即为商品这个实体所拥有的属性值。
在这里插入图片描述
(2)图4.5即为商品订单这个实体所拥有的属性值。
在这里插入图片描述

(4)图4.7即为商家这个实体所拥有的属性值。
在这里插入图片描述
(5)图4.8即为上面介绍的实体中存在的联系。
在这里插入图片描述

三、系统项目部分截图

3.1管理员功能实现

商家管理
图5.2 即为编码实现的商家管理界面,管理员在商家管理界面中具备更改商家营业执照,商家星级类型以及商家联系方式等信息,以及删除,添加商家等权限。
在这里插入图片描述
用户管理
图5.3 即为编码实现的用户管理界面,管理员在用户管理界面为用户的账号进行密码重置,更改用户的基础信息,删除需要删除的用户资料等。
在这里插入图片描述

3.2商家功能实现

商品管理
图5.4 即为编码实现的商品管理界面,商家在商品管理界面中具备增加商品库存,减少商品库存,为商品进行下架,更改商品信息,添加商品等权限。
在这里插入图片描述
商品评价管理
图5.5 即为编码实现的商品评价管理界面,商家在商品评价管理界面中查看用户对订单商品的评价,商家需要回复评价信息。
在这里插入图片描述

3.3用户功能实现

商品信息
图5.7 即为编码实现的商品信息界面,用户在商品信息界面中购买商品,或点击加入购物车按钮把商品保存在购物车里面。
在这里插入图片描述
订单确认
图5.8 即为编码实现的订单确认界面,用户在订单确认界面中需要确认购买的商品以及收货的地址信息,在余额充足的情况下就可以成功支付订单。
在这里插入图片描述
我的商品订单
图5.9 即为编码实现的我的商品订单界面,用户在我的商品订单界面中可以取餐,可以退款,可以评价订单。
在这里插入图片描述

四、部分核心代码


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("/caipinOrder")
public class CaipinOrderController {private static final Logger logger = LoggerFactory.getLogger(CaipinOrderController.class);@Autowiredprivate CaipinOrderService caipinOrderService;@Autowiredprivate TokenService tokenService;@Autowiredprivate DictionaryService dictionaryService;//级联表service@Autowiredprivate AddressService addressService;@Autowiredprivate CaipinService caipinService;@Autowiredprivate YonghuService yonghuService;
@Autowired
private CaipinCommentbackService caipinCommentbackService;
@Autowired
private CartService cartService;
@Autowired
private ShangjiaService shangjiaService;/*** 后端列表*/@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(false)return R.error(511,"永不会进入");else if("用户".equals(role))params.put("yonghuId",request.getSession().getAttribute("userId"));else if("商家".equals(role))params.put("shangjiaId",request.getSession().getAttribute("userId"));if(params.get("orderBy")==null || params.get("orderBy")==""){params.put("orderBy","id");}PageUtils page = caipinOrderService.queryPage(params);//字典表数据转换List<CaipinOrderView> list =(List<CaipinOrderView>)page.getList();for(CaipinOrderView 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);CaipinOrderEntity caipinOrder = caipinOrderService.selectById(id);if(caipinOrder !=null){//entity转viewCaipinOrderView view = new CaipinOrderView();BeanUtils.copyProperties( caipinOrder , view );//把实体数据重构到view中//级联表AddressEntity address = addressService.selectById(caipinOrder.getAddressId());if(address != null){BeanUtils.copyProperties( address , view ,new String[]{ "id", "createTime", "insertTime", "updateTime", "yonghuId"});//把级联的数据添加到view中,并排除id和创建时间字段view.setAddressId(address.getId());view.setAddressYonghuId(address.getYonghuId());}//级联表CaipinEntity caipin = caipinService.selectById(caipinOrder.getCaipinId());if(caipin != null){BeanUtils.copyProperties( caipin , view ,new String[]{ "id", "createTime", "insertTime", "updateTime"});//把级联的数据添加到view中,并排除id和创建时间字段view.setCaipinId(caipin.getId());}//级联表YonghuEntity yonghu = yonghuService.selectById(caipinOrder.getYonghuId());if(yonghu != null){BeanUtils.copyProperties( yonghu , view ,new String[]{ "id", "createTime", "insertTime", "updateTime"});//把级联的数据添加到view中,并排除id和创建时间字段view.setYonghuId(yonghu.getId());}//修改对应字典表字段dictionaryService.dictionaryConvert(view, request);return R.ok().put("data", view);}else {return R.error(511,"查不到数据");}}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody CaipinOrderEntity caipinOrder, HttpServletRequest request){logger.debug("save方法:,,Controller:{},,caipinOrder:{}",this.getClass().getName(),caipinOrder.toString());String role = String.valueOf(request.getSession().getAttribute("role"));if(false)return R.error(511,"永远不会进入");else if("用户".equals(role))caipinOrder.setYonghuId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));caipinOrder.setInsertTime(new Date());caipinOrder.setCreateTime(new Date());caipinOrderService.insert(caipinOrder);return R.ok();}/*** 后端修改*/@RequestMapping("/update")public R update(@RequestBody CaipinOrderEntity caipinOrder, HttpServletRequest request){logger.debug("update方法:,,Controller:{},,caipinOrder:{}",this.getClass().getName(),caipinOrder.toString());String role = String.valueOf(request.getSession().getAttribute("role"));
//        if(false)
//            return R.error(511,"永远不会进入");
//        else if("用户".equals(role))
//            caipinOrder.setYonghuId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));//根据字段查询是否有相同数据Wrapper<CaipinOrderEntity> queryWrapper = new EntityWrapper<CaipinOrderEntity>().eq("id",0);logger.info("sql语句:"+queryWrapper.getSqlSegment());CaipinOrderEntity caipinOrderEntity = caipinOrderService.selectOne(queryWrapper);if(caipinOrderEntity==null){caipinOrderService.updateById(caipinOrder);//根据id更新return R.ok();}else {return R.error(511,"表中有相同数据");}}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Integer[] ids){logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());caipinOrderService.deleteBatchIds(Arrays.asList(ids));return R.ok();}/*** 批量上传*/@RequestMapping("/batchInsert")public R save( String fileName){logger.debug("batchInsert方法:,,Controller:{},,fileName:{}",this.getClass().getName(),fileName);try {List<CaipinOrderEntity> caipinOrderList = 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){//循环CaipinOrderEntity caipinOrderEntity = new CaipinOrderEntity();
//                            caipinOrderEntity.setCaipinOrderUuidNumber(data.get(0));                    //订单号 要改的
//                            caipinOrderEntity.setAddressId(Integer.valueOf(data.get(0)));   //收货地址 要改的
//                            caipinOrderEntity.setCaipinId(Integer.valueOf(data.get(0)));   //商品 要改的
//                            caipinOrderEntity.setYonghuId(Integer.valueOf(data.get(0)));   //用户 要改的
//                            caipinOrderEntity.setBuyNumber(Integer.valueOf(data.get(0)));   //购买数量 要改的
//                            caipinOrderEntity.setCaipinOrderTruePrice(data.get(0));                    //实付价格 要改的
//                            caipinOrderEntity.setCaipinOrderTypes(Integer.valueOf(data.get(0)));   //订单类型 要改的
//                            caipinOrderEntity.setCaipinOrderPaymentTypes(Integer.valueOf(data.get(0)));   //支付类型 要改的
//                            caipinOrderEntity.setInsertTime(date);//时间
//                            caipinOrderEntity.setCreateTime(date);//时间caipinOrderList.add(caipinOrderEntity);//把要查询是否重复的字段放入map中//订单号if(seachFields.containsKey("caipinOrderUuidNumber")){List<String> caipinOrderUuidNumber = seachFields.get("caipinOrderUuidNumber");caipinOrderUuidNumber.add(data.get(0));//要改的}else{List<String> caipinOrderUuidNumber = new ArrayList<>();caipinOrderUuidNumber.add(data.get(0));//要改的seachFields.put("caipinOrderUuidNumber",caipinOrderUuidNumber);}}//查询是否重复//订单号List<CaipinOrderEntity> caipinOrderEntities_caipinOrderUuidNumber = caipinOrderService.selectList(new EntityWrapper<CaipinOrderEntity>().in("caipin_order_uuid_number", seachFields.get("caipinOrderUuidNumber")));if(caipinOrderEntities_caipinOrderUuidNumber.size() >0 ){ArrayList<String> repeatFields = new ArrayList<>();for(CaipinOrderEntity s:caipinOrderEntities_caipinOrderUuidNumber){repeatFields.add(s.getCaipinOrderUuidNumber());}return R.error(511,"数据库的该表中的 [订单号] 字段已经存在 存在数据为:"+repeatFields.toString());}caipinOrderService.insertBatch(caipinOrderList);return R.ok();}}}}catch (Exception e){return R.error(511,"批量插入数据异常,请联系管理员");}}/*** 前端列表*/@IgnoreAuth@RequestMapping("/list")public R list(@RequestParam Map<String, Object> params, HttpServletRequest request){logger.debug("list方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));// 没有指定排序字段就默认id倒序if(StringUtil.isEmpty(String.valueOf(params.get("orderBy")))){params.put("orderBy","id");}PageUtils page = caipinOrderService.queryPage(params);//字典表数据转换List<CaipinOrderView> list =(List<CaipinOrderView>)page.getList();for(CaipinOrderView c:list)dictionaryService.dictionaryConvert(c, request); //修改对应字典表字段return R.ok().put("data", page);}/*** 前端详情*/@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id, HttpServletRequest request){logger.debug("detail方法:,,Controller:{},,id:{}",this.getClass().getName(),id);CaipinOrderEntity caipinOrder = caipinOrderService.selectById(id);if(caipinOrder !=null){//entity转viewCaipinOrderView view = new CaipinOrderView();BeanUtils.copyProperties( caipinOrder , view );//把实体数据重构到view中//级联表AddressEntity address = addressService.selectById(caipinOrder.getAddressId());if(address != null){BeanUtils.copyProperties( address , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段view.setAddressId(address.getId());}//级联表CaipinEntity caipin = caipinService.selectById(caipinOrder.getCaipinId());if(caipin != null){BeanUtils.copyProperties( caipin , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段view.setCaipinId(caipin.getId());}//级联表YonghuEntity yonghu = yonghuService.selectById(caipinOrder.getYonghuId());if(yonghu != null){BeanUtils.copyProperties( yonghu , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段view.setYonghuId(yonghu.getId());}//修改对应字典表字段dictionaryService.dictionaryConvert(view, request);return R.ok().put("data", view);}else {return R.error(511,"查不到数据");}}/*** 前端保存*/@RequestMapping("/add")public R add(@RequestBody CaipinOrderEntity caipinOrder, HttpServletRequest request){logger.debug("add方法:,,Controller:{},,caipinOrder:{}",this.getClass().getName(),caipinOrder.toString());String role = String.valueOf(request.getSession().getAttribute("role"));if("用户".equals(role)){CaipinEntity caipinEntity = caipinService.selectById(caipinOrder.getCaipinId());if(caipinEntity == null){return R.error(511,"查不到该物品");}// Double caipinNewMoney = caipinEntity.getCaipinNewMoney();if(false){}else if((caipinEntity.getCaipinKucunNumber() -caipinOrder.getBuyNumber())<0){return R.error(511,"购买数量不能大于库存数量");}else if(caipinEntity.getCaipinNewMoney() == null){return R.error(511,"物品价格不能为空");}//计算所获得积分Double buyJifen =0.0;Integer userId = (Integer) request.getSession().getAttribute("userId");YonghuEntity yonghuEntity = yonghuService.selectById(userId);if(yonghuEntity == null)return R.error(511,"用户不能为空");if(yonghuEntity.getNewMoney() == null)return R.error(511,"用户金额不能为空");double balance = yonghuEntity.getNewMoney() - caipinEntity.getCaipinNewMoney()*caipinOrder.getBuyNumber();//余额buyJifen = new BigDecimal(caipinEntity.getCaipinPrice()).multiply(new BigDecimal(caipinOrder.getBuyNumber())).doubleValue();//所获积分if(balance<0)return R.error(511,"余额不够支付");caipinOrder.setCaipinOrderTypes(3); //设置订单状态为已支付caipinOrder.setCaipinOrderTruePrice(caipinEntity.getCaipinNewMoney()*caipinOrder.getBuyNumber()); //设置实付价格caipinOrder.setYonghuId(userId); //设置订单支付人idcaipinOrder.setCaipinOrderPaymentTypes(1);caipinOrder.setInsertTime(new Date());caipinOrder.setCreateTime(new Date());caipinEntity.setCaipinKucunNumber( caipinEntity.getCaipinKucunNumber() -caipinOrder.getBuyNumber());caipinService.updateById(caipinEntity);caipinOrderService.insert(caipinOrder);//新增订单yonghuEntity.setYonghuSumJifen(yonghuEntity.getYonghuSumJifen() + buyJifen); //设置总积分yonghuEntity.setNewMoney(balance);//设置金额if(yonghuEntity.getYonghuSumJifen()  < 10000)yonghuEntity.setHuiyuandengjiTypes(1);else if(yonghuEntity.getYonghuSumJifen()  < 100000)yonghuEntity.setHuiyuandengjiTypes(2);else if(yonghuEntity.getYonghuSumJifen()  < 1000000)yonghuEntity.setHuiyuandengjiTypes(3);yonghuService.updateById(yonghuEntity);return R.ok();}else{return R.error(511,"您没有权限支付订单");}}/*** 添加订单*/@RequestMapping("/order")public R add(@RequestParam Map<String, Object> params, HttpServletRequest request){logger.debug("order方法:,,Controller:{},,params:{}",this.getClass().getName(),params.toString());String caipinOrderUuidNumber = String.valueOf(new Date().getTime());//获取当前登录用户的idInteger userId = (Integer) request.getSession().getAttribute("userId");Integer addressId = Integer.valueOf(String.valueOf(params.get("addressId")));Integer caipinOrderPaymentTypes = Integer.valueOf(String.valueOf(params.get("caipinOrderPaymentTypes")));//支付类型String data = String.valueOf(params.get("caipins"));JSONArray jsonArray = JSON.parseArray(data);List<Map> caipins = JSON.parseObject(jsonArray.toString(), List.class);//获取当前登录用户的个人信息YonghuEntity yonghuEntity = yonghuService.selectById(userId);//当前订单表List<CaipinOrderEntity> caipinOrderList = new ArrayList<>();//商家表ArrayList<ShangjiaEntity> shangjiaList = new ArrayList<>();//商品表List<CaipinEntity> caipinList = new ArrayList<>();//购物车idsList<Integer> cartIds = new ArrayList<>();BigDecimal zhekou = new BigDecimal(1.0);// 获取折扣Wrapper<DictionaryEntity> dictionary = new EntityWrapper<DictionaryEntity>().eq("dic_code", "huiyuandengji_types").eq("dic_name", "会员等级类型").eq("code_index", yonghuEntity.getHuiyuandengjiTypes());DictionaryEntity dictionaryEntity = dictionaryService.selectOne(dictionary);if(dictionaryEntity != null ){zhekou = BigDecimal.valueOf(Double.valueOf(dictionaryEntity.getBeizhu()));}//循环取出需要的数据for (Map<String, Object> map : caipins) {//取值Integer caipinId = Integer.valueOf(String.valueOf(map.get("caipinId")));//商品idInteger buyNumber = Integer.valueOf(String.valueOf(map.get("buyNumber")));//购买数量CaipinEntity caipinEntity = caipinService.selectById(caipinId);//购买的商品String id = String.valueOf(map.get("id"));if(StringUtil.isNotEmpty(id))cartIds.add(Integer.valueOf(id));//获取商家信息Integer shangjiaId = caipinEntity.getShangjiaId();ShangjiaEntity shangjiaEntity = shangjiaService.selectById(shangjiaId);//商家//判断商品的库存是否足够if(caipinEntity.getCaipinKucunNumber() < buyNumber){//商品库存不足直接返回return R.error(caipinEntity.getCaipinName()+"的库存不足");}else{//商品库存充足就减库存caipinEntity.setCaipinKucunNumber(caipinEntity.getCaipinKucunNumber() - buyNumber);}//订单信息表增加数据CaipinOrderEntity caipinOrderEntity = new CaipinOrderEntity<>();//赋值订单信息caipinOrderEntity.setCaipinOrderUuidNumber(caipinOrderUuidNumber);//订单号caipinOrderEntity.setAddressId(addressId);//收货地址caipinOrderEntity.setCaipinId(caipinId);//商品caipinOrderEntity.setYonghuId(userId);//用户caipinOrderEntity.setBuyNumber(buyNumber);//购买数量 ??????caipinOrderEntity.setCaipinOrderTypes(3);//订单类型caipinOrderEntity.setCaipinOrderPaymentTypes(caipinOrderPaymentTypes);//支付类型caipinOrderEntity.setInsertTime(new Date());//订单创建时间caipinOrderEntity.setCreateTime(new Date());//创建时间//判断是什么支付方式 1代表余额 2代表积分if(caipinOrderPaymentTypes == 1){//余额支付//计算金额Double money = new BigDecimal(caipinEntity.getCaipinNewMoney()).multiply(new BigDecimal(buyNumber)).multiply(zhekou).doubleValue();if(yonghuEntity.getNewMoney() - money <0 ){return R.error("余额不足,请充值!!!");}else{//计算所获得积分Double buyJifen =0.0;buyJifen = new BigDecimal(caipinEntity.getCaipinPrice()).multiply(new BigDecimal(buyNumber)).doubleValue();yonghuEntity.setYonghuSumJifen(yonghuEntity.getYonghuSumJifen() + buyJifen); //设置总积分yonghuEntity.setNewMoney(yonghuEntity.getNewMoney() - money); //设置金额if(yonghuEntity.getYonghuSumJifen()  < 10000)yonghuEntity.setHuiyuandengjiTypes(1);else if(yonghuEntity.getYonghuSumJifen()  < 100000)yonghuEntity.setHuiyuandengjiTypes(2);else if(yonghuEntity.getYonghuSumJifen()  < 1000000)yonghuEntity.setHuiyuandengjiTypes(3);caipinOrderEntity.setCaipinOrderTruePrice(money);//修改商家余额shangjiaEntity.setNewMoney(shangjiaEntity.getNewMoney()+money);}}caipinOrderList.add(caipinOrderEntity);shangjiaList.add(shangjiaEntity);caipinList.add(caipinEntity);}caipinOrderService.insertBatch(caipinOrderList);shangjiaService.updateBatchById(shangjiaList);caipinService.updateBatchById(caipinList);yonghuService.updateById(yonghuEntity);if(cartIds != null && cartIds.size()>0)cartService.deleteBatchIds(cartIds);return R.ok();}/*** 退款*/@RequestMapping("/refund")public R refund(Integer id, HttpServletRequest request){logger.debug("refund方法:,,Controller:{},,id:{}",this.getClass().getName(),id);String role = String.valueOf(request.getSession().getAttribute("role"));if("用户".equals(role)){CaipinOrderEntity caipinOrder = caipinOrderService.selectById(id);Integer buyNumber = caipinOrder.getBuyNumber();Integer caipinOrderPaymentTypes = caipinOrder.getCaipinOrderPaymentTypes();Integer caipinId = caipinOrder.getCaipinId();if(caipinId == null)return R.error(511,"查不到该物品");CaipinEntity caipinEntity = caipinService.selectById(caipinId);if(caipinEntity == null)return R.error(511,"查不到该物品");//获取商家信息Integer shangjiaId = caipinEntity.getShangjiaId();ShangjiaEntity shangjiaEntity = shangjiaService.selectById(shangjiaId);//商家Double caipinNewMoney = caipinEntity.getCaipinNewMoney();if(caipinNewMoney == null)return R.error(511,"物品价格不能为空");Integer userId = (Integer) request.getSession().getAttribute("userId");YonghuEntity yonghuEntity = yonghuService.selectById(userId);if(yonghuEntity == null)return R.error(511,"用户不能为空");if(yonghuEntity.getNewMoney() == null)return R.error(511,"用户金额不能为空");Double zhekou = 1.0;// 获取折扣Wrapper<DictionaryEntity> dictionary = new EntityWrapper<DictionaryEntity>().eq("dic_code", "huiyuandengji_types").eq("dic_name", "会员等级类型").eq("code_index", yonghuEntity.getHuiyuandengjiTypes());DictionaryEntity dictionaryEntity = dictionaryService.selectOne(dictionary);if(dictionaryEntity != null ){zhekou = Double.valueOf(dictionaryEntity.getBeizhu());}//判断是什么支付方式 1代表余额 2代表积分if(caipinOrderPaymentTypes == 1){//余额支付//计算金额Double money = caipinEntity.getCaipinNewMoney() * buyNumber  * zhekou;//计算所获得积分Double buyJifen = 0.0;buyJifen = new BigDecimal(caipinEntity.getCaipinPrice()).multiply(new BigDecimal(buyNumber)).doubleValue();yonghuEntity.setYonghuSumJifen(yonghuEntity.getYonghuSumJifen() - buyJifen); //设置总积分yonghuEntity.setNewMoney(yonghuEntity.getNewMoney() + money); //设置金额if(yonghuEntity.getYonghuSumJifen()  < 10000)yonghuEntity.setHuiyuandengjiTypes(1);else if(yonghuEntity.getYonghuSumJifen()  < 100000)yonghuEntity.setHuiyuandengjiTypes(2);else if(yonghuEntity.getYonghuSumJifen()  < 1000000)yonghuEntity.setHuiyuandengjiTypes(3);//修改商家余额shangjiaEntity.setNewMoney(shangjiaEntity.getNewMoney() - money);}caipinEntity.setCaipinKucunNumber(caipinEntity.getCaipinKucunNumber() + buyNumber);caipinOrder.setCaipinOrderTypes(2);//设置订单状态为退款caipinOrderService.updateById(caipinOrder);//根据id更新shangjiaService.updateById(shangjiaEntity);yonghuService.updateById(yonghuEntity);//更新用户信息caipinService.updateById(caipinEntity);//更新订单中物品的信息return R.ok();}else{return R.error(511,"您没有权限退款");}}/*** 发货*/@RequestMapping("/deliver")public R deliver(Integer id){logger.debug("refund:,,Controller:{},,ids:{}",this.getClass().getName(),id.toString());CaipinOrderEntity  caipinOrderEntity = new  CaipinOrderEntity();;caipinOrderEntity.setId(id);caipinOrderEntity.setCaipinOrderTypes(4);boolean b =  caipinOrderService.updateById( caipinOrderEntity);if(!b){return R.error("发货出错");}return R.ok();}/*** 收货*/@RequestMapping("/receiving")public R receiving(Integer id){logger.debug("refund:,,Controller:{},,ids:{}",this.getClass().getName(),id.toString());CaipinOrderEntity  caipinOrderEntity = new  CaipinOrderEntity();caipinOrderEntity.setId(id);caipinOrderEntity.setCaipinOrderTypes(5);boolean b =  caipinOrderService.updateById( caipinOrderEntity);if(!b){return R.error("收货出错");}return R.ok();}/*** 评价*/@RequestMapping("/commentback")public R commentback(Integer id, String commentbackText, Integer caipinCommentbackPingfenNumber, HttpServletRequest request){logger.debug("commentback方法:,,Controller:{},,id:{}",this.getClass().getName(),id);String role = String.valueOf(request.getSession().getAttribute("role"));if("用户".equals(role)){CaipinOrderEntity caipinOrder = caipinOrderService.selectById(id);if(caipinOrder == null)return R.error(511,"查不到该订单");if(caipinOrder.getCaipinOrderTypes() != 5)return R.error(511,"您不能评价");Integer caipinId = caipinOrder.getCaipinId();if(caipinId == null)return R.error(511,"查不到该物品");CaipinCommentbackEntity caipinCommentbackEntity = new CaipinCommentbackEntity();caipinCommentbackEntity.setId(id);caipinCommentbackEntity.setCaipinId(caipinId);caipinCommentbackEntity.setYonghuId((Integer) request.getSession().getAttribute("userId"));caipinCommentbackEntity.setCaipinCommentbackText(commentbackText);caipinCommentbackEntity.setReplyText(null);caipinCommentbackEntity.setInsertTime(new Date());caipinCommentbackEntity.setUpdateTime(null);caipinCommentbackEntity.setCreateTime(new Date());caipinCommentbackService.insert(caipinCommentbackEntity);caipinOrder.setCaipinOrderTypes(1);//设置订单状态为已评价caipinOrderService.updateById(caipinOrder);//根据id更新return R.ok();}else{return R.error(511,"您没有权限评价");}}}

五、获取源码或论文

如需对应的论文或源码,以及其他定制需求,也可以下方微❤联系。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/38557.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【在线评论】不同视角下在线评论对客户满意度和推荐度的影响—推文分析—2024-07-01

今天的推文主题是【在线评论】&#xff0c;重点关注可以关注第四篇&#xff0c;很全面地分析了在线评论的信息多维性。 第一篇从客户的在线评论入手&#xff0c;将客户消费的动机为功利、享受、社会满足&#xff1b;第二篇是关于在线评论对消费者再次选择同一家酒店的机制探索…

MySQL之主从同步、分库分表

1、主从同步的原理 MySQL主从复制的核心是二进制日志 二进制日志&#xff08;binlog&#xff09;记录了所有DDL语句和DML语句&#xff0c;但不包括数据查询&#xff08;select、show&#xff09;语句。 1.1、复制分三步 master主库在事务提交时&#xff0c;会把数据变更记录…

电子战学习笔记01:电子战概论

0、写在文前 本人在学习电子战相关理论知识时&#xff0c;一直感觉无从下手&#xff0c;之后在老师的推荐下购买了《EW101&#xff1a;电子战基础》纸质书籍学习&#xff0c;所以将自己的学习笔记在CSDN上记录一下&#xff0c;也供有需要的同学参考。 1、电子战定义 电子战&…

全网最详细的 gin框架请求数据绑定Bind 源码解析 -- 帮助你全面了解gin框架的请求数据绑定原理和方法

在gin框架中&#xff0c;我们可以将多种请求数据&#xff08;json, form,uri&#xff0c;header等&#xff09;直接绑定到我们定义的结构体&#xff0c;底层是通过反射方式获取我们定义在结构体上面的tag来实现请求数据到我们的结构体数据的绑定的。 在gin的底层有2大体系的数据…

Python pip install模块时C++编译环境问题

pip install模块时C编译环境问题 在接触和使用python后&#xff0c;常常会通过pip install命令安装第三方模块&#xff0c;大多数模块可以直接安装&#xff0c;但许多新同学仍会遇见某些模块需要实时编译后才能安装&#xff0c;如报错信息大概是缺乏C编译环境&#xff0c;本文则…

【Elasticsearch】Elasticsearch索引创建与管理详解

文章目录 &#x1f4d1;引言一、Elasticsearch 索引的基础概念二、创建索引2.1 使用默认设置创建索引2.2 自定义设置创建索引2.3 创建索引并设置映射 三、索引模板3.1 创建索引模板3.2 使用索引模板创建索引 四、管理索引4.1 查看索引4.2 更新索引设置4.3 删除索引 五、索引别名…

Go-知识测试-性能测试

Go-知识测试-性能测试 1. 定义2. 例子3. testing.common 测试基础数据4. testing.TB 接口5. 关键函数5.1 testing.runBenchmarks5.2 testing.B.runN5.3 testing.B.StartTimer5.4 testing.B.StopTimer5.5 testing.B.ResetTimer5.6 testing.B.Run5.7 testing.B.run15.8 testing.B…

监听蓝牙对话的BlueSpy技术复现

本文是之前文章的BlueSpy技术的复现过程&#xff1a;https://mp.weixin.qq.com/s/iCeImLLPAwwKH1avLmqEpA 2个月前&#xff0c;网络安全和情报公司Tarlogic在西班牙安全大会RootedCon 2024上提出了一项利用蓝牙漏洞的BlueSpy技术&#xff0c;并在之后发布了一个名为BlueSpy的概…

git 提交代码忽略eslint代码检测

在暂存代码的时候会出现以上情况因为在提交代码的时候会默认运行代码进行检测&#xff0c;如果不符合代码规范就会进行报错 解决&#xff1a; 使用 git commit --no-verify -m xxx 忽略eslint的检测

Laravel 谨慎使用Storage::append()

在 driver 为 local 时&#xff0c;Storage::append()在高并发下&#xff0c;会存在丢失数据问题&#xff0c;文件被覆写&#xff0c;而非尾部添加&#xff0c;如果明确是本地文件操作&#xff0c;像日志写入&#xff0c;建议使用 Illuminate\Filesystem\Filesystem或者php原生…

邀请函 | 极限科技全新搜索引擎 INFINI Pizza 亮相 2024 可信数据库发展大会!

过去一年&#xff0c;在全球 AI 浪潮和国家数据局成立的推动下&#xff0c;数据库产业变革不断、热闹非凡。2024 年&#xff0c;站在中国数字经济产业升级和数据要素市场化建设的时代交汇点上&#xff0c;“2024 可信数据库发展大会” 将于 2024 年 7 月 16-17 日在北京悠唐皇冠…

肆拾玖坊的商业模式,49坊新零售奖金制度体系,众筹众创+会员制

肆拾玖坊之所以能够在短时间内成为白酒行业的“现象级”企业,,不仅是依靠独特商业模式,同时也依靠的是坚持用户为核心,围绕用户需求,让用户与产品直接产生连接理念。 坐标&#xff1a;厦门&#xff0c;我是易创客肖琳 深耕社交新零售行业10年&#xff0c;主要提供新零售系统工…

前端技术(二)——javasctipt 介绍

一、javascript基础 1. javascript简介 ⑴ javascript的起源 ⑵ javascript 简史 ⑶ javascript发展的时间线 ⑷ javascript的实现 ⑸ js第一个代码 <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><title>…

Vue中的axios深度探索:从基础安装到高级功能应用的全面指南

文章目录 前言一、axios 请求1. axios的概念2. axios的安装3. axiso请求方式介绍4. axios请求本地数据5. axios跨域6. axios全局注册7. axios支持的请求类型1&#xff09;get请求2&#xff09;post请求3&#xff09;put请求4&#xff09;patch请求5&#xff09;delete请求 二、…

MyBatis操作数据库(入门)

本节目标 使用MyBatis完成简单的增删改查操作&#xff0c;参数传递掌握MyBatis的两种写法&#xff1a;注解和XML方式掌握MyBatis相关的日志配置 前言 在应用分层学习中&#xff0c;我们了解web应用程序一般分为三层&#xff0c;即Controller、Service、Dao。在之前的案例中&a…

化学SCI期刊,中科院4区,易录用,几乎不退稿

一、期刊名称 Chemical Papers 二、期刊简介概况 期刊类型&#xff1a;SCI 学科领域&#xff1a;化学 影响因子&#xff1a;2.1 中科院分区&#xff1a;4区 三、期刊征稿范围 该杂志致力于基础和应用化学和化学工程研究。它的范围很广&#xff0c;涵盖了所有化学科学&…

2024年江苏智能制造工厂名单:我看出了未来择业和跳槽方向

导语 大家好&#xff0c;我是社长&#xff0c;老K。专注分享智能制造和智能仓储物流等内容。 新书《智能物流系统构成与技术实践》 在当今这个飞速发展的时代&#xff0c;智能制造已成为推动工业进步的强大引擎。随着技术革新的浪潮一波接一波地涌来&#xff0c;我们不禁要问&a…

动手学深度学习(Pytorch版)代码实践 -计算机视觉-49风格迁移

49风格迁移 读入内容图像&#xff1a; import torch import torchvision from torch import nn import matplotlib.pylab as plt import liliPytorch as lp from d2l import torch as d2l# 读取内容图像 content_img d2l.Image.open(../limuPytorch/images/rainier.jpg) plt.…

使用 Swift 递归搜索目录中文件的内容,同时支持 Glob 模式和正则表达式

文章目录 前言项目设置查找文件读取CODEOWNERS文件解析规则搜索匹配的文件确定文件所有者输出结果总结前言 如果你新加入一个团队,想要快速的了解团队的领域和团队中拥有的代码库的详细信息。 如果新团队中的代码库在 GitHub / GitLab 中并且你不熟悉代码所有权模型的概念或…

Unity开箱即用的UGUI面板的拖拽移动功能

文章目录 &#x1f449;一、背景&#x1f449;二、效果图&#x1f449;三、原理&#x1f449;四、核心代码&#x1f449;五&#xff0c;总结 &#x1f449;一、背景 之前做PC项目时常常有面板拖拽移动的需求&#xff0c;今天总结封装一下&#xff0c;做成一个随时随地可复用的…