| | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.matrix.biz.bean.BizUser; |
| | | import com.matrix.biz.dao.BizUserDao; |
| | | import com.matrix.component.redis.RedisUserLoginUtils; |
| | | import com.matrix.component.tools.ImageUtil; |
| | | import com.matrix.component.tools.WxacodeUtil; |
| | | import com.matrix.core.pojo.AjaxResult; |
| | | import com.matrix.core.pojo.BasePageQueryDto; |
| | | import com.matrix.core.pojo.VerificationResult; |
| | | import com.matrix.core.tools.LogUtil; |
| | | import com.matrix.core.tools.MD5Util; |
| | | import com.matrix.core.tools.PropertiesUtil; |
| | | import com.matrix.core.tools.StringUtils; |
| | | import com.matrix.system.app.dto.BasePageDto; |
| | | import com.matrix.system.common.bean.BusParameterSettings; |
| | | import com.matrix.system.common.constance.AppConstance; |
| | | import com.matrix.system.common.dao.BusParameterSettingsDao; |
| | | import com.matrix.system.common.init.UserCacheManager; |
| | | import com.matrix.system.common.interceptor.HostInterceptor; |
| | | import com.matrix.system.fenxiao.constant.FenxiaoSettingConstant; |
| | | import com.matrix.system.fenxiao.dao.ShopSalesmanApplyDao; |
| | | import com.matrix.system.fenxiao.entity.ShopSalesmanApply; |
| | | import com.matrix.system.fenxiao.service.ShopSalesmanApplyService; |
| | | import com.matrix.system.hive.bean.SysVipInfo; |
| | | import com.matrix.system.hive.dao.SysVipInfoDao; |
| | | import com.matrix.system.hive.plugin.util.CollectionUtils; |
| | | import com.matrix.system.shopXcx.api.WeChatApiTools; |
| | | import com.matrix.system.shopXcx.dao.ShopProductDao; |
| | | import com.matrix.system.shopXcx.vo.SalesmanApplyCondition; |
| | | import com.matrix.system.shopXcx.vo.SalesmanCenterInfo; |
| | | import com.matrix.system.shopXcx.vo.SalesmanVo; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | |
| | | import java.awt.*; |
| | | import java.awt.image.BufferedImage; |
| | | import java.io.File; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.stream.Collectors; |
| | | |
| | | /** |
| | | * @author wzy |
| | |
| | | @Autowired |
| | | ShopSalesmanApplyDao salesmanApplyDao; |
| | | |
| | | |
| | | @Autowired |
| | | ShopSalesmanApplyService shopSalesmanApplyService; |
| | | |
| | | @Autowired |
| | | private RedisUserLoginUtils redisUserLoginUtils; |
| | | private UserCacheManager userCacheManager; |
| | | |
| | | @Autowired |
| | | private BizUserDao bizUserDao; |
| | | private SysVipInfoDao sysVipInfoDao; |
| | | @Autowired |
| | | WeChatApiTools weChatApiTools; |
| | | |
| | | @Autowired |
| | | ShopProductDao shopProductDao; |
| | | |
| | | |
| | | @ApiOperation(value = "查询推广计划", notes = "") |
| | | @GetMapping(value = "/getTgPlan") |
| | |
| | | return ajaxResult; |
| | | } |
| | | |
| | | @ApiOperation(value = "查询分销商城开关", notes = "1开启分销,2关闭分销") |
| | | @GetMapping(value = "/getSalesMallSetting") |
| | | public AjaxResult getSalesMallSwith() { |
| | | BusParameterSettings fxSwith = busParameterSettingsDao.selectCompanyParamByCode(FenxiaoSettingConstant.FX_SWITCH, HostInterceptor.getCompanyId()); |
| | | BusParameterSettings fxModel = busParameterSettingsDao.selectCompanyParamByCode(FenxiaoSettingConstant.FX_MODEL, HostInterceptor.getCompanyId()); |
| | | AjaxResult ajaxResult = AjaxResult.buildSuccessInstance("查询成功"); |
| | | ajaxResult.putInMap("fxSwith", fxSwith.getParamValue()); |
| | | ajaxResult.putInMap("fxModel", fxModel.getParamValue()); |
| | | return ajaxResult; |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "申请成为推广员", notes = "传入参数invitationId 邀请人openId ,非必填 例: {invitationId:openId}") |
| | | @ApiResponses({ |
| | |
| | | }) |
| | | @PostMapping(value = "/applyToBeAnSalesman") |
| | | @Transactional |
| | | public AjaxResult applyToBeAnSalesman(@RequestBody Map<String,String> param) { |
| | | BizUser loginUser = redisUserLoginUtils.getLoginUser(BizUser.class); |
| | | String invitationId = param.get("invitationId"); |
| | | ShopSalesmanApply shopSalesmanApply= shopSalesmanApplyService.applyToBeAnSalesman(loginUser.getOpenId(),invitationId); |
| | | loginUser=bizUserDao.selectById(loginUser.getUserId()); |
| | | redisUserLoginUtils.updateUserInfo(loginUser); |
| | | public AjaxResult applyToBeAnSalesman(@RequestBody Map<String, String> param) { |
| | | SysVipInfo loginUser = userCacheManager.getLoginUser(); |
| | | Long invitationId=null; |
| | | if(StringUtils.isNotBlank(param.get("invitationId"))){ |
| | | invitationId = Long.parseLong(param.get("invitationId")); |
| | | |
| | | SysVipInfo invitationUser = sysVipInfoDao.selectById(invitationId); |
| | | if (invitationUser != null && invitationUser.getId().equals(loginUser.getId())) { |
| | | return AjaxResult.buildFailInstance("不能邀请自己成为推广员"); |
| | | } |
| | | } |
| | | ShopSalesmanApply shopSalesmanApply = shopSalesmanApplyService.applyToBeAnSalesman(loginUser.getId(), null, invitationId, ShopSalesmanApply.APPLY_WAY_SELF); |
| | | loginUser = sysVipInfoDao.selectById(loginUser.getId()); |
| | | userCacheManager.updateUserInfo(loginUser); |
| | | return AjaxResult.buildSuccessInstance(shopSalesmanApply); |
| | | |
| | | |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = " ", notes = "") |
| | | @ApiOperation(value = "查询审核进度", notes = "") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "ok", response = ShopSalesmanApply.class) |
| | | }) |
| | | @GetMapping(value = "/queryApplyProgress") |
| | | public AjaxResult queryApplyProgress() { |
| | | BizUser loginUser = redisUserLoginUtils.getLoginUser(BizUser.class); |
| | | SysVipInfo loginUser = userCacheManager.getLoginUser(); |
| | | QueryWrapper<ShopSalesmanApply> queryWrapper = new QueryWrapper<>(); |
| | | queryWrapper.eq("user_id",loginUser.getOpenId()); |
| | | queryWrapper.eq("user_id", loginUser.getId()); |
| | | queryWrapper.eq("apply_status", ShopSalesmanApply.APPLY_STATUS_DSH); |
| | | ShopSalesmanApply shopSalesmanApply = salesmanApplyDao.selectOne(queryWrapper); |
| | | return AjaxResult.buildSuccessInstance(shopSalesmanApply); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "绑定下级客户,当客户点击分销员分销的产品时调用", notes = "传入参数invitationId 必须 分销员openId 例: {invitationId:openId}") |
| | | @ApiOperation(value = "绑定下级客户,当客户点击分销员分销的产品时调用", notes = "传入参数invitationId 必须 分销员userId例: {invitationId:userId}") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "ok", response = Map.class) |
| | | }) |
| | | @PostMapping(value = "/bindingParentSalesman") |
| | | public AjaxResult bindingParentSalesman(@RequestBody Map<String,String> param) { |
| | | String invitationId = param.get("invitationId"); |
| | | if (StringUtils.isBlank(invitationId)) { |
| | | public AjaxResult bindingParentSalesman(@RequestBody Map<String, Long> param) { |
| | | Long invitationId = param.get("invitationId"); |
| | | |
| | | |
| | | |
| | | SysVipInfo invitationUser = sysVipInfoDao.selectById(invitationId); |
| | | if (invitationUser == null) { |
| | | return AjaxResult.buildFailInstance("请求参数错误"); |
| | | } |
| | | |
| | | BizUser loginUser = redisUserLoginUtils.getLoginUser(BizUser.class); |
| | | loginUser = bizUserDao.selectById(loginUser.getUserId()); |
| | | if (loginUser.getIsSales() == null || loginUser.getIsSales() == BizUser.NOT_SALES) { |
| | | if (StringUtils.isBlank(loginUser.getParentOpenId())) { |
| | | SysVipInfo loginUser = userCacheManager.getLoginUser(); |
| | | if (invitationId.equals(loginUser.getId())) { |
| | | return AjaxResult.buildSuccessInstance("不能绑定自己"); |
| | | } |
| | | |
| | | Map<String, Object> updateParam = new HashMap<>(); |
| | | updateParam.put("userId", loginUser.getUserId()); |
| | | updateParam.put("parentOpenId", invitationId); |
| | | bizUserDao.updateByMap(updateParam); |
| | | loginUser = sysVipInfoDao.selectById(loginUser.getId()); |
| | | if (loginUser.getIsSales() == 1) { |
| | | return AjaxResult.buildSuccessInstance("只有非分销员才能被绑定成客户"); |
| | | } |
| | | if (loginUser.getRecommendId()!=null) { |
| | | return AjaxResult.buildSuccessInstance("已经被绑定"); |
| | | } else { |
| | | if (loginUser.getRecommendId()==null) { |
| | | sysVipInfoDao.bindingRecommend(invitationUser.getId(),loginUser.getId()); |
| | | return AjaxResult.buildSuccessInstance("绑定成功"); |
| | | } else { |
| | | return AjaxResult.buildSuccessInstance("已经存在上级"); |
| | | } |
| | | } else { |
| | | return AjaxResult.buildSuccessInstance("分销员不能被绑定"); |
| | | } |
| | | |
| | | |
| | | } |
| | | |
| | | |
| | |
| | | @PostMapping(value = "/getInvitationPoster") |
| | | AjaxResult getInvitationPoster() { |
| | | try { |
| | | BizUser loginUser = redisUserLoginUtils.getLoginUser(BizUser.class); |
| | | SysVipInfo loginUser = userCacheManager.getLoginUser(); |
| | | |
| | | String baseSavePath = PropertiesUtil.getString(AppConstance.FILES_TORAGE_PATH); |
| | | // 图片访问URL |
| | | String baseSaveUrl = PropertiesUtil.getString(AppConstance.NGINX_URL); |
| | | |
| | | //目标海报物理存储路径 |
| | | String targetImg=MD5Util.strToMD5(loginUser.getOpenId()) +"haibao.png"; |
| | | String targetImgPath=baseSavePath+"wxacode" + File.separatorChar+targetImg ; |
| | | String targetImg = MD5Util.strToMD5(loginUser.getOpenId()) + "haibao.png"; |
| | | String targetImgPath = baseSavePath + "wxacode" + File.separatorChar + targetImg; |
| | | |
| | | String urlPath = baseSaveUrl + "/" + "wxacode" + "/" + targetImg; |
| | | |
| | | String qrcodeSavePath = WxacodeUtil.getWxacode(loginUser.getOpenId() + "", "pages/distributorCenter/applyFor/applyFor", MD5Util.strToMD5(loginUser.getOpenId())+"qrcode" |
| | | ,weChatApiTools.getAppid(loginUser.getCompanyId()),weChatApiTools.getSecret(loginUser.getCompanyId())); |
| | | String qrcodeSavePath = WxacodeUtil.getWxacode(loginUser.getId() + "", "pages/distributorCenter/applyFor/applyFor", MD5Util.strToMD5(loginUser.getOpenId()) + "qrcode" |
| | | , weChatApiTools.getAppid(loginUser.getCompanyId()), weChatApiTools.getSecret(loginUser.getCompanyId())); |
| | | |
| | | BufferedImage qrcordImgBuf = ImageIO.read(new File(qrcodeSavePath)); |
| | | |
| | | //获取海报 |
| | | BusParameterSettings posterSetting = busParameterSettingsDao.selectCompanyParamByCode(FenxiaoSettingConstant.FX_TG_POSTER, HostInterceptor.getCompanyId()); |
| | | String posterPath=baseSavePath+"wxacode" + File.separatorChar+MD5Util.strToMD5(loginUser.getOpenId())+"poster.png"; |
| | | ImageUtil.downloadPicture(posterSetting.getParamValue(),posterPath); |
| | | BusParameterSettings posterSetting = busParameterSettingsDao.selectCompanyParamByCode(FenxiaoSettingConstant.FX_TG_POSTER, loginUser.getCompanyId()); |
| | | String posterPath = baseSavePath + "wxacode" + File.separatorChar + MD5Util.strToMD5(loginUser.getOpenId()) + "poster.png"; |
| | | ImageUtil.downloadPicture(posterSetting.getParamValue(), posterPath); |
| | | BufferedImage posterImgBuf = ImageIO.read(new File(posterPath)); |
| | | |
| | | //获取用户头像 |
| | | String userPhotoPath=baseSavePath+"wxacode" + File.separatorChar+MD5Util.strToMD5(loginUser.getOpenId())+"userPhoto.png"; |
| | | ImageUtil.downloadPicture(loginUser.getAvatarUrl(),userPhotoPath); |
| | | String userPhotoPath = baseSavePath + "wxacode" + File.separatorChar + MD5Util.strToMD5(loginUser.getOpenId()) + "userPhoto.png"; |
| | | ImageUtil.downloadPicture(loginUser.getAvatarUrl(), userPhotoPath); |
| | | BufferedImage userPhotoImgBuf = ImageIO.read(new File(userPhotoPath)); |
| | | |
| | | |
| | | BufferedImage backgroundImgBuf = new BufferedImage(700, 900, BufferedImage.TYPE_4BYTE_ABGR); |
| | | //绘制背景+产品 |
| | | Graphics2D g = backgroundImgBuf.createGraphics(); |
| | | //g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, 1)); |
| | | g.setColor(Color.WHITE); |
| | | g.fillRect(0,0,700,900); |
| | | g.drawImage(posterImgBuf,0,0,700, 700,null); |
| | | g.fillRect(0, 0, 700, 900); |
| | | g.drawImage(posterImgBuf, 0, 0, 700, 700, null); |
| | | |
| | | g.drawImage(userPhotoImgBuf,20,720,80,80,null); |
| | | g.drawImage(userPhotoImgBuf, 20, 720, 80, 80, null); |
| | | |
| | | g.drawImage(qrcordImgBuf,500,720,150,150,null); |
| | | g.drawImage(qrcordImgBuf, 500, 720, 150, 150, null); |
| | | |
| | | g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING,RenderingHints.VALUE_TEXT_ANTIALIAS_LCD_HRGB); |
| | | g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_LCD_HRGB); |
| | | |
| | | g.setFont(new Font("WenQuanYi Micro Hei", Font.BOLD, 24)); |
| | | g.setColor(Color.BLACK); |
| | | g.drawString(loginUser.getNickName()+"邀请你一起推广赚佣金",120,750); |
| | | g.drawString(loginUser.getNickName() + "邀请你一起推广赚佣金", 120, 750); |
| | | |
| | | g.dispose(); |
| | | ImageIO.write(backgroundImgBuf, "png", new File(targetImgPath)); |
| | |
| | | return AjaxResult.buildSuccessInstance(urlPath); |
| | | } catch (Exception e) { |
| | | LogUtil.error("推广二维码生成错误:{}", e, ""); |
| | | return AjaxResult.buildFailInstance("二维码生成失败"); |
| | | return AjaxResult.buildFailInstance("二维码生成失败"); |
| | | } |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | @ApiOperation(value = "获取下级列表", notes = "") |
| | | @ApiOperation(value = "获取下级列表", notes = "keywords=1 表示下级,keywords=2表示顾客") |
| | | @PostMapping(value = "/getInvitationuserList") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "ok", response = BasePageDto.class) |
| | | @ApiResponse(code = 200, message = "ok", response = SalesmanVo.class) |
| | | }) |
| | | AjaxResult getInvitationuserList(@RequestBody BasePageDto pageDto) { |
| | | |
| | | Page<SalesmanVo> page=new Page<>(pageDto.getPageNum(),pageDto.getPageSize()); |
| | | IPage<SalesmanVo> shopSalesmanApplyIPage = salesmanApplyDao.selectInvitationuserList(page); |
| | | AjaxResult result=AjaxResult.buildSuccessInstance(shopSalesmanApplyIPage.getRecords()); |
| | | AjaxResult getInvitationuserList(@RequestBody BasePageQueryDto pageDto) { |
| | | SysVipInfo loginUser = userCacheManager.getLoginUser(); |
| | | Page<SalesmanVo> page = new Page<>(pageDto.getPageNum(), pageDto.getPageSize()); |
| | | IPage<SalesmanVo> shopSalesmanApplyIPage = salesmanApplyDao.selectInvitationuserInPage(page, loginUser.getId(), pageDto.getKeywords()); |
| | | AjaxResult result = AjaxResult.buildSuccessInstance(shopSalesmanApplyIPage.getRecords()); |
| | | return result; |
| | | |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "查询分销员中心信息", notes = "") |
| | | @PostMapping(value = "/getSalesmanCenterInfo") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "ok", response = SalesmanCenterInfo.class) |
| | | }) |
| | | AjaxResult getSalesmanCenterInfo() { |
| | | SysVipInfo loginUser = userCacheManager.getLoginUser(); |
| | | SalesmanCenterInfo salesmanCenterInfo = salesmanApplyDao.selectSalesmanCenterInfo(loginUser.getId()); |
| | | return AjaxResult.buildSuccessInstance(salesmanCenterInfo); |
| | | } |
| | | |
| | | @ApiOperation(value = "查询分销员申请条件", notes = "") |
| | | @PostMapping(value = "/getSalesmanApplyCondition") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "ok", response = SalesmanApplyCondition.class) |
| | | }) |
| | | AjaxResult getSalesmanApplyCondition() { |
| | | SysVipInfo loginUser = userCacheManager.getLoginUser(); |
| | | VerificationResult ableToBeAnSalesman = shopSalesmanApplyService.isAbleToBeAnSalesman(loginUser.getId(), loginUser.getCompanyId()); |
| | | SalesmanApplyCondition applyConditionInfo = new SalesmanApplyCondition(); |
| | | applyConditionInfo.setIsAbleApply(ableToBeAnSalesman.isJudgeResult()); |
| | | applyConditionInfo.setMsg(ableToBeAnSalesman.getMsg()); |
| | | |
| | | //申请条件 |
| | | BusParameterSettings applyCondition = busParameterSettingsDao.selectCompanyParamByCode(FenxiaoSettingConstant.FX_APPLY_CONDITION, loginUser.getCompanyId()); |
| | | switch (applyCondition.getParamValue()) { |
| | | case FenxiaoSettingConstant.FX_APPLY_CONDITION_WTJ: |
| | | applyConditionInfo.setCondition("您已满足申请条件"); |
| | | break; |
| | | case FenxiaoSettingConstant.FX_APPLY_CONDITION_XFZDCP: |
| | | applyConditionInfo.setCondition("消费指定产品并确认收货"); |
| | | List<String> strings = StringUtils.strToColl(applyCondition.getParamValue1(), ","); |
| | | List<Integer> ids = strings.stream().filter(i -> StringUtils.isNotBlank(i)).map(i -> Integer.parseInt(i + "")).distinct().collect(Collectors.toList()); |
| | | if (CollectionUtils.isNotEmpty(ids)) { |
| | | applyConditionInfo.setProductList(shopProductDao.selectByIds(ids)); |
| | | } else { |
| | | return AjaxResult.buildFailInstance("未配置消费产品,请联系管理员"); |
| | | } |
| | | |
| | | break; |
| | | case FenxiaoSettingConstant.FX_APPLY_CONDITION_XFRYCP: |
| | | //判断用户是否有确认收货的产品 |
| | | applyConditionInfo.setCondition("消费任意产品并确认收货"); |
| | | break; |
| | | case FenxiaoSettingConstant.FX_APPLY_CONDITION_XCZDJE: |
| | | Double zdje = Double.parseDouble(applyCondition.getParamValue2()); |
| | | applyConditionInfo.setCondition("消费满" + zdje + "元确认收货"); |
| | | applyConditionInfo.setMinAmount(zdje); |
| | | } |
| | | |
| | | return AjaxResult.buildSuccessInstance(applyConditionInfo); |
| | | } |
| | | |
| | | |
| | | } |