rk
11 小时以前 2fabbc6601dfa3d6f28749ee86ed326440143fe4
server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/PlatformJobServiceImpl.java
@@ -2708,7 +2708,8 @@
                Integer workNum = platformJobJoinMapper.selectCount(new QueryWrapper<PlatformJob>().lambda()
                        .eq(PlatformJob::getIsdeleted,Constants.ZERO)
                        .eq(PlatformJob::getPlatformId,platform.getId())
                        .in(PlatformJob::getStatus,Constants.PlatformJobStatus.CALLED.getKey(),Constants.PlatformJobStatus.WORKING.getKey())
                        .in(PlatformJob::getStatus,Constants.PlatformJobStatus.CALLED.getKey()
                                ,Constants.PlatformJobStatus.WORKING.getKey())
                ) .intValue();
                if(workNum>=workingNum){
                    log.error("========月台自动叫号============结束:超过自动叫号作业限制-"+platform.getName());
@@ -2849,8 +2850,9 @@
                Integer callNum = platformJobJoinMapper.selectCount(new QueryWrapper<PlatformJob>().lambda()
                        .eq(PlatformJob::getIsdeleted,Constants.ZERO)
                        .eq(PlatformJob::getPlatformId,platform.getId())
                        .eq(PlatformJob::getStatus,Constants.PlatformJobStatus.IN_WAIT.getKey())).intValue();
                if(callNum>=callReadyNum){
                        .eq(PlatformJob::getStatus,Constants.PlatformJobStatus.IN_WAIT.getKey()))
                        .intValue();
                if(callReadyNum ==0 || callNum>=callReadyNum){
                    continue;
                };
@@ -2893,11 +2895,11 @@
                }
                try{
                    this.sendInPark(platformJob);
                    if(!Constants.equalsInteger(platformJob.getType(),Constants.FOUR)
                            && StringUtils.isNotBlank(platformJob.getBillCode())){
                        //通知WMS绑定月台信息
                        wmsService.orderPlatformBind(platformJob,1);
                    }
//                    if(!Constants.equalsInteger(platformJob.getType(),Constants.FOUR)
//                            && StringUtils.isNotBlank(platformJob.getBillCode())){
//                        //通知WMS绑定月台信息
//                        wmsService.orderPlatformBind(platformJob,1);
//                    }
                }catch (Exception e){
                    log.error("自动叫号入园权限下发失败:{}"+JSONObject.toJSONString(platformJob));
                }