|
|
|
@ -23,6 +23,7 @@ import com.glxp.api.req.alihealth.local.AlihealthThirdAliDrugInsertReqeust;
|
|
|
|
|
import com.glxp.api.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.api.res.alihealth.AlihealthKytGetentinfoResponse;
|
|
|
|
|
import com.glxp.api.service.alihealth.AlihealthBusService;
|
|
|
|
|
import com.glxp.api.service.inout.IoOrderService;
|
|
|
|
|
import com.glxp.api.util.alihealth.AlihealthUtils;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
@ -150,6 +151,8 @@ public class AlihealthBusController extends BaseController {
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
AlihealthBusService alihealthBusService;
|
|
|
|
|
@Resource
|
|
|
|
|
IoOrderService orderService;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 阿里的采购单查询接口
|
|
|
|
@ -179,7 +182,14 @@ public class AlihealthBusController extends BaseController {
|
|
|
|
|
List<AliYljgSearchbill> group = entry.getValue();
|
|
|
|
|
if (!group.isEmpty()) {
|
|
|
|
|
// 添加每个分组中的第一个对象到新列表
|
|
|
|
|
listResp.add(group.get(0));
|
|
|
|
|
String key = entry.getKey();
|
|
|
|
|
//如果查得到就不可以再次选入
|
|
|
|
|
String billNo = orderService.selectAliYljgSearchbillByAliBillNo(key);
|
|
|
|
|
AliYljgSearchbill aliYljgSearchbill = group.get(0);
|
|
|
|
|
if (StringUtils.isNotEmpty(billNo)){
|
|
|
|
|
aliYljgSearchbill.setCheckBillNO(true);
|
|
|
|
|
}
|
|
|
|
|
listResp.add(aliYljgSearchbill);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|