diff --git a/stdiet-admin/src/main/java/com/stdiet/web/controller/custom/SysWxUserLogController.java b/stdiet-admin/src/main/java/com/stdiet/web/controller/custom/SysWxUserLogController.java index a7454ae6a..0faf52b4a 100644 --- a/stdiet-admin/src/main/java/com/stdiet/web/controller/custom/SysWxUserLogController.java +++ b/stdiet-admin/src/main/java/com/stdiet/web/controller/custom/SysWxUserLogController.java @@ -14,6 +14,7 @@ import com.stdiet.custom.page.WxLogInfo; import com.stdiet.custom.service.ISysOrderService; import com.stdiet.custom.service.ISysWxUserInfoService; import com.stdiet.custom.service.ISysWxUserLogService; +import org.aspectj.weaver.loadtime.Aj; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.web.bind.annotation.*; @@ -47,14 +48,8 @@ public class SysWxUserLogController extends BaseController { List list = sysWxUserLogService.selectSysWxUserLogList(sysWxUserLog); for (SysWxUserLog userLog : list) { - if(userLog.getCustomerMessage() != null){ - String[] message = userLog.getCustomerMessage().split(","); - userLog.setCustomer(message[0]); - userLog.setNutritionist(message.length > 1 ? message[1] : ""); - } if (StringUtils.isNotEmpty(userLog.getPhone())) { userLog.setPhone(StringUtils.hiddenPhoneNumber(userLog.getPhone())); - //userLog.setPhone(userLog.getPhone().replaceAll("(\\d{3})\\d{4}(\\d{4})", "$1****$2")); } } @@ -69,6 +64,11 @@ public class SysWxUserLogController extends BaseController { @GetMapping("/export") public AjaxResult export(SysWxUserLog sysWxUserLog) { List list = sysWxUserLogService.selectSysWxUserLogList(sysWxUserLog); + for (SysWxUserLog userLog : list) { + if (StringUtils.isNotEmpty(userLog.getPhone())) { + userLog.setPhone(StringUtils.hiddenPhoneNumber(userLog.getPhone())); + } + } ExcelUtil util = new ExcelUtil(SysWxUserLog.class); return util.exportExcel(list, "wxUserLog"); } @@ -77,9 +77,11 @@ public class SysWxUserLogController extends BaseController { * 获取微信用户记录详细信息 */ @PreAuthorize("@ss.hasPermi('custom:wxUserLog:query')") - @GetMapping(value = "/{openid}") - public AjaxResult getInfo(@PathVariable("openid") String openid) { - return AjaxResult.success(sysWxUserLogService.selectSysWxUserLogById(openid)); + @GetMapping(value = "/{id}") + public AjaxResult getInfo(@PathVariable("id") String id) { + SysWxUserLog sysWxUserLog = sysWxUserLogService.selectSysWxUserLogById(id); + System.out.println(sysWxUserLog.getPhone()); + return AjaxResult.success(sysWxUserLog); } /** @@ -89,7 +91,9 @@ public class SysWxUserLogController extends BaseController { @Log(title = "微信用户记录", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody SysWxUserLog sysWxUserLog) { - return toAjax(sysWxUserLogService.insertSysWxUserLog(sysWxUserLog)); + //暂时不开放后台增加打卡,因为无法获取到openid + //return toAjax(sysWxUserLogService.insertSysWxUserLog(sysWxUserLog)); + return AjaxResult.error("新增打卡功能暂时关闭"); } /** @@ -99,7 +103,15 @@ public class SysWxUserLogController extends BaseController { @Log(title = "微信用户记录", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody SysWxUserLog sysWxUserLog) { - return toAjax(sysWxUserLogService.updateSysWxUserLog(sysWxUserLog)); + if( sysWxUserLog != null && StringUtils.isNotEmpty(sysWxUserLog.getOpenid())){ + SysWxUserLog dateLog = sysWxUserLogService.selectSysWxUserLogByDateAndOpenId(sysWxUserLog); + if(dateLog != null && dateLog.getId().intValue() != sysWxUserLog.getId().intValue()){ + return AjaxResult.error("今日该用户已打卡,无法重复打卡"); + } + return toAjax(sysWxUserLogService.updateSysWxUserLog(sysWxUserLog)); + }else{ + return AjaxResult.error("修改失败"); + } } /** @@ -107,9 +119,9 @@ public class SysWxUserLogController extends BaseController { */ @PreAuthorize("@ss.hasPermi('custom:wxUserLog:remove')") @Log(title = "微信用户记录", businessType = BusinessType.DELETE) - @DeleteMapping("/{openids}") - public AjaxResult remove(@PathVariable String[] openids) { - return toAjax(sysWxUserLogService.deleteSysWxUserLogByIds(openids)); + @DeleteMapping("/{ids}") + public AjaxResult remove(@PathVariable String[] ids) { + return toAjax(sysWxUserLogService.deleteSysWxUserLogByIds(ids)); } @GetMapping(value = "/wx/logs/list") diff --git a/stdiet-custom/src/main/java/com/stdiet/custom/domain/SysWxUserLog.java b/stdiet-custom/src/main/java/com/stdiet/custom/domain/SysWxUserLog.java index a3f414f65..ab9e62641 100644 --- a/stdiet-custom/src/main/java/com/stdiet/custom/domain/SysWxUserLog.java +++ b/stdiet-custom/src/main/java/com/stdiet/custom/domain/SysWxUserLog.java @@ -3,6 +3,7 @@ package com.stdiet.custom.domain; import java.math.BigDecimal; import java.util.Date; import com.fasterxml.jackson.annotation.JsonFormat; +import lombok.Data; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; import com.stdiet.common.annotation.Excel; @@ -14,10 +15,13 @@ import com.stdiet.common.core.domain.BaseEntity; * @author wonder * @date 2020-11-29 */ +@Data public class SysWxUserLog extends BaseEntity { private static final long serialVersionUID = 1L; + private Long id; + /** 微信openid */ private String openid; @@ -68,183 +72,18 @@ public class SysWxUserLog extends BaseEntity @JsonFormat(pattern = "yyyy-MM-dd") private Date logTime; - /** 非持久字段,客户姓名 + 营养师姓名,使用 , 隔开,用于接收sql查询返回字段 */ - private String customerMessage; - /** - * 非持久化字段,营养师 + * 非持久化字段,客户姓名 */ @Excel(name = "姓名") - private String customer; + private String customerName; + + //营养师ID + private Long nutritionistId; /** * 非持久化字段,营养师 */ @Excel(name = "营养师") private String nutritionist; - - public void setLogTime(Date logTime) { - this.logTime = logTime; - } - - public Date getLogTime() { - return logTime; - } - - public void setOpenid(String openid) - { - this.openid = openid; - } - - public String getOpenid() - { - return openid; - } - public void setWeight(BigDecimal weight) - { - this.weight = weight; - } - - public BigDecimal getWeight() - { - return weight; - } - public void setAppid(String appid) - { - this.appid = appid; - } - - public String getAppid() - { - return appid; - } - public void setPhone(String phone) - { - this.phone = phone; - } - - public String getPhone() - { - return phone; - } - public void setSleepTime(String sleepTime) - { - this.sleepTime = sleepTime; - } - - public String getSleepTime() - { - return sleepTime; - } - public void setWakeupTime(String wakeupTime) - { - this.wakeupTime = wakeupTime; - } - - public String getWakeupTime() - { - return wakeupTime; - } - public void setSport(String sport) - { - this.sport = sport; - } - - public String getSport() - { - return sport; - } - public void setAvatarUrl(String avatarUrl) - { - this.avatarUrl = avatarUrl; - } - - public String getAvatarUrl() - { - return avatarUrl; - } - public void setDiet(String diet) - { - this.diet = diet; - } - - public String getDiet() - { - return diet; - } - public void setInsomnia(String insomnia) - { - this.insomnia = insomnia; - } - - public String getInsomnia() - { - return insomnia; - } - public void setDefecation(String defecation) - { - this.defecation = defecation; - } - - public String getDefecation() - { - return defecation; - } - public void setWater(Long water) - { - this.water = water; - } - - public Long getWater() - { - return water; - } - - public String getCustomerMessage() { - return customerMessage; - } - - public void setCustomerMessage(String customerMessage) { - this.customerMessage = customerMessage; - } - - public String getCustomer() { - return customer; - } - - public void setCustomer(String customer) { - this.customer = customer; - } - - public String getNutritionist() { - return nutritionist; - } - - public void setNutritionist(String nutritionist) { - this.nutritionist = nutritionist; - } - - @Override - public String toString() { - return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - .append("openid", getOpenid()) - .append("weight", getWeight()) - .append("appid", getAppid()) - .append("phone", getPhone()) - .append("sleepTime", getSleepTime()) - .append("wakeupTime", getWakeupTime()) - .append("sport", getSport()) - .append("avatarUrl", getAvatarUrl()) - .append("diet", getDiet()) - .append("insomnia", getInsomnia()) - .append("defecation", getDefecation()) - .append("water", getWater()) - .append("createBy", getCreateBy()) - .append("createTime", getCreateTime()) - .append("updateBy", getUpdateBy()) - .append("updateTime", getUpdateTime()) - .append("remark", getRemark()) - .append("logTime", getLogTime()) - .toString(); - } } \ No newline at end of file diff --git a/stdiet-custom/src/main/java/com/stdiet/custom/mapper/SysWxUserLogMapper.java b/stdiet-custom/src/main/java/com/stdiet/custom/mapper/SysWxUserLogMapper.java index 265a631da..4cb68978e 100644 --- a/stdiet-custom/src/main/java/com/stdiet/custom/mapper/SysWxUserLogMapper.java +++ b/stdiet-custom/src/main/java/com/stdiet/custom/mapper/SysWxUserLogMapper.java @@ -41,7 +41,7 @@ public interface SysWxUserLogMapper public int insertSysWxUserLog(SysWxUserLog sysWxUserLog); /** - * 修改微信用户记录 + * 修改微信用户打卡记录 * * @param sysWxUserLog 微信用户记录 * @return 结果 @@ -49,20 +49,19 @@ public interface SysWxUserLogMapper public int updateSysWxUserLog(SysWxUserLog sysWxUserLog); /** - * 删除微信用户记录 - * - * @param openid 微信用户记录ID - * @return 结果 + * 根据ID删除打卡记录 + * @param id + * @return */ - public int deleteSysWxUserLogById(String openid); + public int deleteSysWxUserLogById(Long id); /** - * 批量删除微信用户记录 + * 批量删除微信用户打卡记录 * - * @param openids 需要删除的数据ID + * @param ids 需要删除的数据ID * @return 结果 */ - public int deleteSysWxUserLogByIds(String[] openids); + public int deleteSysWxUserLogByIds(String[] ids); public int checkWxLogInfoCount(String openid); @@ -72,4 +71,11 @@ public interface SysWxUserLogMapper */ public List getWxLogInfoList(SysWxUserLog sysWxUserLog); + /** + * 根据日期和openid查询打卡记录 + * @param sysWxUserLog + * @return + */ + SysWxUserLog selectSysWxUserLogByDateAndOpenId(SysWxUserLog sysWxUserLog); + } \ No newline at end of file diff --git a/stdiet-custom/src/main/java/com/stdiet/custom/service/ISysWxUserLogService.java b/stdiet-custom/src/main/java/com/stdiet/custom/service/ISysWxUserLogService.java index efa21b6ff..4d0041035 100644 --- a/stdiet-custom/src/main/java/com/stdiet/custom/service/ISysWxUserLogService.java +++ b/stdiet-custom/src/main/java/com/stdiet/custom/service/ISysWxUserLogService.java @@ -17,10 +17,10 @@ public interface ISysWxUserLogService /** * 查询微信用户记录 * - * @param openid 微信用户记录ID + * @param id 微信用户记录ID * @return 微信用户记录 */ - public SysWxUserLog selectSysWxUserLogById(String openid); + public SysWxUserLog selectSysWxUserLogById(String id); /** * 查询微信用户记录列表 @@ -51,18 +51,18 @@ public interface ISysWxUserLogService /** * 批量删除微信用户记录 * - * @param openids 需要删除的微信用户记录ID + * @param ids 需要删除的微信用户记录ID * @return 结果 */ - public int deleteSysWxUserLogByIds(String[] openids); + public int deleteSysWxUserLogByIds(String[] ids); /** * 删除微信用户记录信息 * - * @param openid 微信用户记录ID + * @param id 微信用户记录ID * @return 结果 */ - public int deleteSysWxUserLogById(String openid); + public int deleteSysWxUserLogById(Long id); public int checkWxLogInfoCount(String openid); @@ -71,4 +71,12 @@ public interface ISysWxUserLogService * @return */ public List getWxLogInfoList(SysWxUserLog sysWxUserLog); + + /** + * 根据日期和openid查询打卡记录 + * @param sysWxUserLog + * @return + */ + SysWxUserLog selectSysWxUserLogByDateAndOpenId(SysWxUserLog sysWxUserLog); + } \ No newline at end of file diff --git a/stdiet-custom/src/main/java/com/stdiet/custom/service/impl/SysWxUserLogServiceImpl.java b/stdiet-custom/src/main/java/com/stdiet/custom/service/impl/SysWxUserLogServiceImpl.java index 63dba2cf3..00fb9602d 100644 --- a/stdiet-custom/src/main/java/com/stdiet/custom/service/impl/SysWxUserLogServiceImpl.java +++ b/stdiet-custom/src/main/java/com/stdiet/custom/service/impl/SysWxUserLogServiceImpl.java @@ -25,12 +25,12 @@ public class SysWxUserLogServiceImpl implements ISysWxUserLogService { /** * 查询微信用户记录 * - * @param openid 微信用户记录ID + * @param id 微信用户记录ID * @return 微信用户记录 */ @Override - public SysWxUserLog selectSysWxUserLogById(String openid) { - return sysWxUserLogMapper.selectSysWxUserLogById(openid); + public SysWxUserLog selectSysWxUserLogById(String id) { + return sysWxUserLogMapper.selectSysWxUserLogById(id); } /** @@ -76,23 +76,23 @@ public class SysWxUserLogServiceImpl implements ISysWxUserLogService { /** * 批量删除微信用户记录 * - * @param openids 需要删除的微信用户记录ID + * @param ids 需要删除的微信用户记录ID * @return 结果 */ @Override - public int deleteSysWxUserLogByIds(String[] openids) { - return sysWxUserLogMapper.deleteSysWxUserLogByIds(openids); + public int deleteSysWxUserLogByIds(String[] ids) { + return sysWxUserLogMapper.deleteSysWxUserLogByIds(ids); } /** * 删除微信用户记录信息 * - * @param openid 微信用户记录ID + * @param id 微信用户记录ID * @return 结果 */ @Override - public int deleteSysWxUserLogById(String openid) { - return sysWxUserLogMapper.deleteSysWxUserLogById(openid); + public int deleteSysWxUserLogById(Long id) { + return sysWxUserLogMapper.deleteSysWxUserLogById(id); } @Override @@ -108,4 +108,14 @@ public class SysWxUserLogServiceImpl implements ISysWxUserLogService { public List getWxLogInfoList(SysWxUserLog sysWxUserLog){ return sysWxUserLogMapper.getWxLogInfoList(sysWxUserLog); } + + /** + * 根据日期和openid查询打卡记录 + * @param sysWxUserLog + * @return + */ + public SysWxUserLog selectSysWxUserLogByDateAndOpenId(SysWxUserLog sysWxUserLog){ + return sysWxUserLogMapper.selectSysWxUserLogByDateAndOpenId(sysWxUserLog); + } + } \ No newline at end of file diff --git a/stdiet-custom/src/main/resources/mapper/custom/SysCustomerMapper.xml b/stdiet-custom/src/main/resources/mapper/custom/SysCustomerMapper.xml index 89ef8a168..4c14602a2 100644 --- a/stdiet-custom/src/main/resources/mapper/custom/SysCustomerMapper.xml +++ b/stdiet-custom/src/main/resources/mapper/custom/SysCustomerMapper.xml @@ -35,15 +35,15 @@ diff --git a/stdiet-custom/src/main/resources/mapper/custom/SysWxUserLogMapper.xml b/stdiet-custom/src/main/resources/mapper/custom/SysWxUserLogMapper.xml index 39af85c2c..c726b5f43 100644 --- a/stdiet-custom/src/main/resources/mapper/custom/SysWxUserLogMapper.xml +++ b/stdiet-custom/src/main/resources/mapper/custom/SysWxUserLogMapper.xml @@ -5,6 +5,7 @@ + @@ -25,7 +26,9 @@ - + + + @@ -41,28 +44,30 @@ - select openid, weight, appid, phone, log_time, sleep_time, wakeup_time, sport, avatar_url, diet, insomnia, defecation, water, create_by, create_time, update_by, update_time, remark from sys_wx_user_log - - - - swul.openid, swul.weight, swul.appid, swul.phone, swul.log_time, swul.sleep_time, swul.wakeup_time, swul.sport, swul.avatar_url, swul.diet, swul.insomnia, - swul.defecation, swul.water, swul.create_by, swul.create_time, swul.update_by, swul.update_time, swul.remark + select id,openid, weight, appid, phone, log_time, sleep_time, wakeup_time, sport, avatar_url, diet, insomnia, defecation, water, create_by, create_time, update_by, update_time, remark from sys_wx_user_log + - where openid = #{openid} + where id = #{id} @@ -155,22 +160,27 @@ where id = #{id} - - delete from sys_wx_user_log where openid = #{openid} + + delete from sys_wx_user_log where id = #{id} - delete from sys_wx_user_log where openid in - - #{openid} + delete from sys_wx_user_log where id in + + #{id} + + \ No newline at end of file diff --git a/stdiet-ui/src/views/custom/wxUserLog/index.vue b/stdiet-ui/src/views/custom/wxUserLog/index.vue index 584d657b4..cc8bd7433 100644 --- a/stdiet-ui/src/views/custom/wxUserLog/index.vue +++ b/stdiet-ui/src/views/custom/wxUserLog/index.vue @@ -11,10 +11,10 @@ /> - + - + @@ -86,21 +86,21 @@ - + - + - + - + @@ -114,7 +114,6 @@ {{`${scope.row.water} ml`}} -