叫号记录增加字段

This commit is contained in:
2024-09-14 16:05:08 +08:00
parent e35da7f608
commit f516dae0da
2 changed files with 112 additions and 114 deletions

View File

@@ -19,7 +19,6 @@ import cn.ysk.cashier.pojo.shop.TbShopUser;
import cn.ysk.cashier.repository.shop.TbShopInfoRepository;
import cn.ysk.cashier.service.app.TbCallService;
import cn.ysk.cashier.utils.Utils;
import cn.ysk.cashier.utils.WxMiniUtils;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.extension.conditions.query.LambdaQueryChainWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
@@ -42,7 +41,6 @@ public class TbCallServiceImpl implements TbCallService {
private final TbShopInfoRepository shopInfoRepository;
private final StringRedisTemplate redisTemplate;
private final TbCallQueueMapper tbCallQueueMapper;
private final WxMiniUtils wxMiniUtils;
@Override
public Object add(CallTableDTO addCallTableDTO) {
@@ -222,8 +220,8 @@ public class TbCallServiceImpl implements TbCallService {
throw new BadRequestException("此用户未订阅微信小程序消息");
}
wxMiniUtils.sendNearCallMsg(shopInfo.getShopName(), getStrByState(Integer.valueOf(callQueue.getState())),
callQueue.getCallNum(), current.isEmpty() ? "" : current.get(0).getCallNum(), "排号信息", callQueue.getOpenId());
// wxMiniUtils.sendNearCallMsg(shopInfo.getShopName(), getStrByState(Integer.valueOf(callQueue.getState())),
// callQueue.getCallNum(), current.isEmpty() ? "" : current.get(0).getCallNum(), "排号信息", callQueue.getOpenId());
return callQueueService.updateById(callQueue);
}