|
|
|
@ -21,6 +21,7 @@ import com.glxp.api.dao.inout.IoCodeTempDao;
|
|
|
|
|
import com.glxp.api.entity.auth.AuthAdmin;
|
|
|
|
|
import com.glxp.api.entity.basic.BasicBussinessTypeEntity;
|
|
|
|
|
import com.glxp.api.entity.basic.EntrustReceEntity;
|
|
|
|
|
import com.glxp.api.entity.collect.RelCodeBatch;
|
|
|
|
|
import com.glxp.api.entity.inout.*;
|
|
|
|
|
import com.glxp.api.entity.system.SystemParamConfigEntity;
|
|
|
|
|
import com.glxp.api.req.alihealth.AlihealthYljgSinglerelationReqeust;
|
|
|
|
@ -47,8 +48,10 @@ import com.glxp.api.service.sync.SpsSyncDownloadService;
|
|
|
|
|
import com.glxp.api.service.system.SystemParamConfigService;
|
|
|
|
|
import com.glxp.api.util.*;
|
|
|
|
|
import com.glxp.api.util.alihealth.AlihealthYljgUtils;
|
|
|
|
|
import com.glxp.api.util.redis.RedisDelayedQueue;
|
|
|
|
|
import com.glxp.api.util.udi.UdiCalCountUtil;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
@ -129,6 +132,7 @@ public class IoOrderReviewController extends BaseController {
|
|
|
|
|
private RelCodeDetailService relCodeDetailService;
|
|
|
|
|
@Resource
|
|
|
|
|
private IoCodeDao ioCodeDao;
|
|
|
|
|
|
|
|
|
|
//前端二次审核
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("/spms/inout/order/web/updateStatus")
|
|
|
|
@ -165,9 +169,6 @@ public class IoOrderReviewController extends BaseController {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//前端第三次验收
|
|
|
|
@ -463,6 +464,12 @@ public class IoOrderReviewController extends BaseController {
|
|
|
|
|
ioCheckInoutService.checkThird(orderEntity);
|
|
|
|
|
return ResultVOUtils.success("更新成功");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Value("${REL_CODE_DELAY_SECONDS:7200}")
|
|
|
|
|
private Integer relCodeDelaySeconds;
|
|
|
|
|
@Resource
|
|
|
|
|
private RedisDelayedQueue redisDelayedQueue;
|
|
|
|
|
|
|
|
|
|
// 异步处理阿里单据
|
|
|
|
|
public BaseResponse aliBillsDispose(IoOrderEntity orderEntity) {
|
|
|
|
|
ThreadUtil.execAsync(() -> {
|
|
|
|
@ -482,33 +489,27 @@ public class IoOrderReviewController extends BaseController {
|
|
|
|
|
codeList.add(ioCodeEntity.getCode());
|
|
|
|
|
}
|
|
|
|
|
Set<String> set = new HashSet<>(codeList);
|
|
|
|
|
|
|
|
|
|
alihealthYljgUploadinoutbillReqeust.setTrace_codes(String.join(",", codeList));
|
|
|
|
|
// 单据上传先注释了
|
|
|
|
|
// BaseResponse baseResponseUploadinoutbill = alihealthYljgUtils.yljgUploadinoutbill(alihealthYljgUploadinoutbillReqeust,orderEntity.getFromCorp());
|
|
|
|
|
// if(baseResponseUploadinoutbill.getCode() == 20000){
|
|
|
|
|
// try {
|
|
|
|
|
// Thread.sleep(1000);
|
|
|
|
|
log.error("要查询阿里关联关系的码===" + set);
|
|
|
|
|
relCodeBatchService.addRelCodeAli(set, orderEntity.getFromCorp());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// } catch (InterruptedException e) {
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// }else {
|
|
|
|
|
// log.error("阿里调用上传单据失败==="+baseResponseUploadinoutbill.getMessage());
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
String erpId = orderEntity.getFromCorp();
|
|
|
|
|
for (String code : set) {
|
|
|
|
|
relCodeBatchService.addRelCodeAli(code, orderEntity.getFromCorp());
|
|
|
|
|
RelCodeBatch relCodeBatch = relCodeBatchService.getOne(
|
|
|
|
|
new QueryWrapper<RelCodeBatch>().eq("curCode", code)
|
|
|
|
|
);
|
|
|
|
|
if (Objects.isNull(relCodeBatch)) {
|
|
|
|
|
redisDelayedQueue.addTaskToQueue(code + "&&&" + erpId, relCodeDelaySeconds, "rel_code_queue");
|
|
|
|
|
} else {
|
|
|
|
|
log.error("有关联关系了此码===" + code);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ResultVOUtils.success("更新成功");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
SpsSyncDownloadService spsSyncDownloadService;
|
|
|
|
|
|
|
|
|
|