叫号记录降序

This commit is contained in:
2024-09-23 11:29:15 +08:00
parent f28466cfae
commit 3873009e63
2 changed files with 5 additions and 3 deletions

View File

@@ -326,7 +326,7 @@ public class TbCallServiceImpl implements TbCallService {
case 3:
callQueue.setPassTime(DateUtil.date());
// 已经顺延
callQueue.setIsPostpone(callQueue.getIsPostpone() == 0 ? 1 : 2);
callQueue.setIsPostpone(callQueue.getIsPostpone() == null ? 1 : callQueue.getIsPostpone() == 0 ? 1 : 2);
TbShopInfo shopInfo = shopInfoRepository.findById(callQueue.getShopId()).orElse(null);
if (shopInfo == null) {
throw new BadRequestException("店铺信息不存在");
@@ -428,8 +428,10 @@ public class TbCallServiceImpl implements TbCallService {
for (TbCallTable item : pageInfo.getRecords()) {
LambdaQueryChainWrapper<TbCallQueue> q = callQueueService.lambdaQuery()
.eq(TbCallQueue::getCallTableId, item.getId())
.eq(TbCallQueue::getShopId, shopId)
.ne(TbCallQueue::getIsPostpone, 2)
.eq(TbCallQueue::getCreateDay, DateUtil.today())
.in(TbCallQueue::getState, 0, 1);
.in(TbCallQueue::getState, 0, 1, 3);
Long count = q.count();
totalCount += count;