|
|
|
@ -2,6 +2,7 @@ package com.glxp.api.controller.test;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.api.dao.auth.AuthCompanyMapper;
|
|
|
|
|
import com.glxp.api.entity.alihealth.AliYljgBillDetail;
|
|
|
|
|
import com.glxp.api.entity.alihealth.AliYljgSearchbill;
|
|
|
|
@ -21,8 +22,10 @@ import com.glxp.api.res.alihealth.AlihealthYljgListupoutDetailResponse;
|
|
|
|
|
import com.glxp.api.service.collect.RelCodeBatchService;
|
|
|
|
|
import com.glxp.api.service.collect.RelCodeDetailService;
|
|
|
|
|
import com.glxp.api.service.thrsys.ThirdAliDrugService;
|
|
|
|
|
import com.glxp.api.util.DimaUtil;
|
|
|
|
|
import com.glxp.api.util.alihealth.AlihealthUtils;
|
|
|
|
|
import com.glxp.api.util.alihealth.AlihealthYljgUtils;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
@ -87,6 +90,7 @@ public class TestCodeController {
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@PostMapping("/test1")
|
|
|
|
|
public BaseResponse test1() {
|
|
|
|
|
AlihealthThirdAliDrugInsertReqeust alihealthThirdAliDrugInsertReqeust = new AlihealthThirdAliDrugInsertReqeust();
|
|
|
|
@ -106,9 +110,9 @@ public class TestCodeController {
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setRef_ent_id("ef99b78bd9c54c1284f813149c858fb0");
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setAlihealthKytDrugrescodeReqeust(alihealthKytDrugrescodeReqeust);
|
|
|
|
|
BaseResponse<List<ThirdAliDrug>> baseResponse = alihealthUtils.thirdAliDrugInsertAll(alihealthThirdAliDrugInsertReqeust);
|
|
|
|
|
if(baseResponse.getCode() == 20000){
|
|
|
|
|
if (baseResponse.getCode() == 20000) {
|
|
|
|
|
List<ThirdAliDrug> list = baseResponse.getData();
|
|
|
|
|
if(list!=null && list.size() >0){
|
|
|
|
|
if (list != null && list.size() > 0) {
|
|
|
|
|
for (ThirdAliDrug thirdAliDrug : list) {
|
|
|
|
|
ThirdAliDrug thirdAliDrugNew = thirdAliDrugService.getOne(new QueryWrapper<ThirdAliDrug>().eq("nameCode", thirdAliDrug.getNameCode())
|
|
|
|
|
.last("limit 1")
|
|
|
|
@ -127,6 +131,7 @@ public class TestCodeController {
|
|
|
|
|
return baseResponse;
|
|
|
|
|
// return alihealthUtils.thirdAliDrugInsert(alihealthThirdAliDrugInsertReqeust,true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@PostMapping("/test2")
|
|
|
|
|
public BaseResponse test2() {
|
|
|
|
|
AlihealthKytThirdAliSearchbillInsertReqeust alihealthKytThirdAliSearchbillInsertReqeust = new AlihealthKytThirdAliSearchbillInsertReqeust();
|
|
|
|
@ -166,6 +171,7 @@ public class TestCodeController {
|
|
|
|
|
|
|
|
|
|
return alihealthUtils.thirdAliSearchbillInsert(alihealthKytThirdAliSearchbillInsertReqeust);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@PostMapping("/test3")
|
|
|
|
|
public BaseResponse<List<AliYljgSearchbill>> test3() {
|
|
|
|
|
|
|
|
|
@ -174,8 +180,9 @@ public class TestCodeController {
|
|
|
|
|
alihealthYljgListupoutReqeust1.setEnd_date("2024-05-01");
|
|
|
|
|
alihealthYljgListupoutReqeust1.setPage(1);
|
|
|
|
|
alihealthYljgListupoutReqeust1.setPage_size(20);
|
|
|
|
|
return alihealthYljgUtils.listupout(alihealthYljgListupoutReqeust1,"72890663819159");
|
|
|
|
|
return alihealthYljgUtils.listupout(alihealthYljgListupoutReqeust1, "72890663819159");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@PostMapping("/test4")
|
|
|
|
|
public BaseResponse<AliYljgBillDetail> test4() {
|
|
|
|
|
|
|
|
|
|