叫号记录降序
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user