微信小程序源码-自助点餐系统的计算机毕业设计(附源码+演示录像+LW)

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

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

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

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

开发运行环境

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

② 后端:Java

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

演示视频

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

源码下载地址:

https://download.csdn.net/download/m0_46388260/89224171

论文目录

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

一、项目简介

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

二、系统设计

2.1软件功能模块设计

图4.1即为设计的管理员功能结构,管理员权限操作的功能包括管理商品,回复商品评价,管理用户反馈信息,管理公告,管理商品订单等。
在这里插入图片描述
图4.2即为设计的用户功能结构,用户权限操作的功能包括购买商品,管理收货地址,对账户进行在线充值,管理订单,发布用户反馈信息,管理购物车等。
在这里插入图片描述

2.2数据库设计

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

三、系统项目部分截图

3.1管理员功能实现

商品管理
图5.1 即为编码实现的商品管理界面,商品信息有商品原价,商品库存,商品图片,商品名称等信息,管理员可以更改登记错误的商品信息,在商品管理界面可以新增商品,删除需要删除的商品,下架或上架商品,管理商品库存,包括增加库存,减少库存等操作。
在这里插入图片描述
商品订单管理
图5.2 即为编码实现的商品订单管理界面,商品订单包括用户姓名,配送员名称,实付价格,订单类型等信息,管理员可以查询商品订单,对需要删除的商品订单进行删除等。
在这里插入图片描述

3.2用户功能实现

商品信息
图5.5 即为编码实现的商品信息界面,用户查看商品评分以及商品介绍,用户如果想要快速下单,可以点击立即购买按钮下单。
在这里插入图片描述
订单确认
图5.6 即为编码实现的订单确认界面,用户在收货地址中选择需要的地址,对购买清单以及原价和折扣价等信息进行查看之后,就能进行支付。
在这里插入图片描述
我的商品订单
图5.7 即为编码实现的我的商品订单界面,用户已经支付的订单如果存在误操作行为,可以申请退款,同时用户可以查看已出餐订单,已评价订单以及已取餐订单等。
在这里插入图片描述

四、部分核心代码


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);

    @Autowired
    private CaipinOrderService caipinOrderService;


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

    //级联表service
    @Autowired
    private AddressService addressService;
    @Autowired
    private CaipinService caipinService;
    @Autowired
    private YonghuService yonghuService;
@Autowired
private CaipinCommentbackService caipinCommentbackService;
@Autowired
private CartService cartService;



    /**
    * 后端列表
    */
    @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"));
        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转view
            CaipinOrderView 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", "yonghuId"});//把级联的数据添加到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.setCaipinOrderCourierName(data.get(0));                    //配送员名称 要改的
//                            caipinOrderEntity.setCaipinOrderCourierNumber(data.get(0));                    //联系方式 要改的
//                            caipinOrderEntity.setCaipinOrderTruePrice(data.get(0));                    //实付价格 要改的
//                            caipinOrderEntity.setCaipinOrderText(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转view
                CaipinOrderView 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());
            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");
            caipinOrder.setCaipinOrderTypes(3); //设置订单状态为已支付
            caipinOrder.setCaipinOrderTruePrice(0.0); //设置实付价格
            caipinOrder.setYonghuId(userId); //设置订单支付人id
            caipinOrder.setCaipinOrderUuidNumber(String.valueOf(new Date().getTime()));
            caipinOrder.setCaipinOrderPaymentTypes(1);
            caipinOrder.setInsertTime(new Date());
            caipinOrder.setCreateTime(new Date());
                caipinEntity.setCaipinKucunNumber( caipinEntity.getCaipinKucunNumber() -caipinOrder.getBuyNumber());
                caipinService.updateById(caipinEntity);
                caipinOrderService.insert(caipinOrder);//新增订单
            return R.ok();
    }
    /**
     * 添加订单
     */
    @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());

        //获取当前登录用户的id
        Integer userId = (Integer) request.getSession().getAttribute("userId");
        Integer addressId = Integer.valueOf(String.valueOf(params.get("addressId")));

        String caipinOrderText = String.valueOf(String.valueOf(params.get("caipinOrderText")));//备注
        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<>();
        //商品表
        List<CaipinEntity> caipinList = new ArrayList<>();
        //购物车ids
        List<Integer> cartIds = new ArrayList<>();

        BigDecimal zhekou = new BigDecimal(1.0);

        //循环取出需要的数据
        for (Map<String, Object> map : caipins) {
           //取值
            Integer caipinId = Integer.valueOf(String.valueOf(map.get("caipinId")));//商品id
            Integer 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));

            //判断商品的库存是否足够
            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.setCaipinOrderText(caipinOrderText);//备注 ??????
            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;


                    caipinOrderEntity.setCaipinOrderTruePrice(money);

                }
            }
            caipinOrderList.add(caipinOrderEntity);
            caipinList.add(caipinEntity);

        }
        caipinOrderService.insertBatch(caipinOrderList);
        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"));

            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,"查不到该商品");
            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;


            //判断是什么支付方式 1代表余额 2代表积分
            if(caipinOrderPaymentTypes == 1){//余额支付
                //计算金额
                Double money = caipinEntity.getCaipinNewMoney() * buyNumber  * zhekou;
                //计算所获得积分
                Double buyJifen = 0.0;


            }

            caipinEntity.setCaipinKucunNumber(caipinEntity.getCaipinKucunNumber() + buyNumber);



            caipinOrder.setCaipinOrderTypes(2);//设置订单状态为退款
            caipinOrderService.updateById(caipinOrder);//根据id更新
            yonghuService.updateById(yonghuEntity);//更新用户信息
            caipinService.updateById(caipinEntity);//更新订单中商品的信息
            return R.ok();
    }


    /**
     * 发货
     */
    @RequestMapping("/deliver")
    public R deliver(Integer id ,String caipinOrderCourierNumber, String caipinOrderCourierName){
        logger.debug("refund:,,Controller:{},,ids:{}",this.getClass().getName(),id.toString());
        CaipinOrderEntity  caipinOrderEntity = new  CaipinOrderEntity();;
        caipinOrderEntity.setId(id);
        caipinOrderEntity.setCaipinOrderTypes(4);
        caipinOrderEntity.setCaipinOrderCourierNumber(caipinOrderCourierNumber);
        caipinOrderEntity.setCaipinOrderCourierName(caipinOrderCourierName);
        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);
            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.setCaipinCommentbackPingfenNumber(caipinCommentbackPingfenNumber);
            caipinCommentbackEntity.setCaipinCommentbackText(commentbackText);
            caipinCommentbackEntity.setInsertTime(new Date());
            caipinCommentbackEntity.setReplyText(null);
            caipinCommentbackEntity.setUpdateTime(null);
            caipinCommentbackEntity.setCreateTime(new Date());
            caipinCommentbackService.insert(caipinCommentbackEntity);

            caipinOrder.setCaipinOrderTypes(1);//设置订单状态为已评价
            caipinOrderService.updateById(caipinOrder);//根据id更新
            return R.ok();
    }







}

获取源码或论文

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

  • 10
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值