wangzhinan 1 тиждень тому
батько
коміт
7fb99724aa

+ 3 - 3
business/base-service/pom.xml

@ -226,9 +226,9 @@
        <dependency>
            <groupId>com.sfjswl</groupId>
            <artifactId>sftc-open-sdk-java</artifactId>
            <version>1</version>
            <scope>system</scope>
            <systemPath>${basedir}/src/main/lib/sftc-open-sdk-java-1.0.0.jar</systemPath>
            <version>1.0.0</version>
<!--            <scope>system</scope>-->
<!--            <systemPath>${basedir}/src/main/lib/sftc-open-sdk-java-1.0.0.jar</systemPath>-->
        </dependency>
    </dependencies>
    <build>

+ 139 - 82
business/base-service/src/main/java/com/yihu/jw/hospital/prescription/service/PrescriptionService.java

@ -75,6 +75,7 @@ import com.yihu.jw.hospital.message.dao.BaseBannerDoctorDao;
import com.yihu.jw.hospital.message.service.SystemMessageService;
import com.yihu.jw.hospital.prescription.dao.*;
import com.yihu.jw.hospital.prescription.service.entrance.*;
import com.yihu.jw.hospital.prescription.service.entrance.util.SFUtils;
import com.yihu.jw.hospital.prescription.service.useragent.BaseUserAgent;
import com.yihu.jw.hospital.ykyy.service.YkyyService;
import com.yihu.jw.order.BusinessOrderService;
@ -363,6 +364,8 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
    private boolean flag;
    @Autowired
    private WlyyReservationInfoDao reservationInfoDao;
    @Autowired
    private SFUtils sfUtils;
    /**
@ -8510,90 +8513,10 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
            } else {
                System.out.println("获取顺丰物流面单信息:1");
                sfexpress_obj = expressageDOList.get(0);
                List<WlyyPrescriptionDO> wlyyPrescriptionDOS1 = prescriptionDao.findByOutpatientId(wlyyPrescriptionDOS.getOutpatientId());
                if (wlyyPrescriptionDOS.getStatus()<31){
                    if (StringUtils.isNoneBlank(sfexpress_obj.getMailno())&&wlyyPrescriptionDOS1.size()>1){
                        String orderNo = "";
                        for (WlyyPrescriptionDO prescriptionDO:wlyyPrescriptionDOS1){
                            if (!prescriptionDO.getRealOrder().equalsIgnoreCase(wlyyPrescriptionDOS.getRealOrder())){
                                orderNo = prescriptionDO.getRealOrder();
                            }
                        }
                        throw new Exception("已存在地址"+sfexpress_obj.getAddress()+"、电话"+sfexpress_obj.getMobile()+"的快递单(单号"+orderNo+"),请将此处方与其打包一起。");
                    }
                }
                String sql = "SELECT\n" +
                        "\tpe.outpatient_id as outpatientId,\n" +
                        "\tpe.mailno as mailno,\n" +
                        "\tpe.address as address,\n" +
                        "\tpe.mobile as mobile\n" +
                        "FROM\n" +
                        "\twlyy_prescription_expressage pe\n" +
                        "WHERE\n" +
                        " pe.create_time >= '"+DateUtil.getStringDateShort()+" 00:00:00'\n" +
                        "AND pe.create_time <= '"+DateUtil.getStringDateShort()+" 23:59:59'\n" +
                        "AND pe.mailno IS NOT NULL\n" +
                        "and pe.address ='"+sfexpress_obj.getAddress()+"'\n" +
                        "and pe.mobile = '"+sfexpress_obj.getMobile()+"' ";
                List<Map<String,Object>> maps = jdbcTemplate.queryForList(sql);
                if (maps!=null&&maps.size()!=0){
                    Map<String,Object> map = maps.get(0);
                    if (wlyyPrescriptionDOS.getStatus()<31){
                        if (!map.get("outpatientId").toString().equalsIgnoreCase(wlyyPrescriptionDOS.getOutpatientId())){
                            String mailNo= map.get("mailno").toString();
                     /*       sfexpress_obj.setMailno(mailNo);*/
                            sfexpressService.updatePrescriptionExpressage(sfexpress_obj);
                            List<WlyyPrescriptionDO> wlyyPrescriptionDOS2 = prescriptionDao.findByOutpatientId(map.get("outpatientId").toString());
                            String orderNo = "";
                            for (WlyyPrescriptionDO wlyyPrescriptionDO:wlyyPrescriptionDOS2){
                                orderNo +=wlyyPrescriptionDO.getRealOrder()+" ";
                            }
                            throw new Exception("已存在地址"+map.get("address")+"、电话"+map.get("mobile")+"的快递单(单号"+orderNo+"),请将此处方与其打包一起。");
                        }
                    }
                }
                System.out.println("获取顺丰物流面单信息:2");
                //如果该处方的快递单号已生成,则说明已经下单成功,不需要重复下单,直接返回面单信息
                System.out.println("获取顺丰物流面单信息:3");
                if (org.apache.commons.lang.StringUtils.isNotBlank(sfexpress_obj.getMailno())) {
                    //处方已下单成功
                    System.out.println("获取顺丰物流面单信息:4");
                } else {
                    //如果该处方的快递单号未生成,则继续下单
                    //根据业务订单号判断是否已经下单成功
                    //--2020.05.20--顺丰V2.0接口已不提供查询接口,直接单下单--START
//                    boolean go_on = sfexpressService.sfOrderSearchService(sfexpress_obj);
//
//                    //如果该业务订单号未下单成功过,则重新下单
//                    if(go_on){
//                        //请求顺丰接口下单,成功下单后,返回快递单号
//                        sfexpress_obj = sfexpressService.postSFOrderService(sfexpress_obj);
//                        //保存快递单号和增加处方物流记录为配送
//                        sfexpressService.updatePrescriptionExpressage(sfexpress_obj);
//                    }
                    //--2020.05.20--顺丰V2.0接口已不提供查询接口,直接单下单--END
                    //请求顺丰接口下单,成功下单后,返回快递单号
                    sfexpress_obj = sfexpressService.postSFOrderService(sfexpress_obj);
                    System.out.println("获取顺丰物流面单信息:5");
                    //保存快递单号和增加处方物流记录为配送
                    sfexpressService.updatePrescriptionExpressage(sfexpress_obj);
                    System.out.println("获取顺丰物流面单信息:6");
                }
                for (WlyyPrescriptionDO prescriptionDO:wlyyPrescriptionDOList){
                    prescriptionDO.setStatus(31);
                    prescriptionDao.save(prescriptionDO);
                }
                if (sfexpress_obj != null && StringUtils.isNoneBlank(sfexpress_obj.getMailno())) {
                    com.alibaba.fastjson.JSONObject object = sfexpressService.postSFOrderQueryService(sfexpress_obj);
                    System.out.println("获取顺丰物流面单信息7-1"+object.toJSONString());
                    System.out.println("获取顺丰物流面单信息:7");
                if (sfexpress_obj.getType() == 2) {
                    com.alibaba.fastjson.JSONObject sfJsonObject = new com.alibaba.fastjson.JSONObject();
                    sfJsonObject.put("mailno", sfexpress_obj.getMailno());
                    sfJsonObject.put("mailtype", "标准快递");
                    sfJsonObject.put("destcode", object.getString("destRouteLabel"));
                    sfJsonObject.put("mailtype", "同城快递");
                    if (wxId.equalsIgnoreCase("xm_zsyy_wx")) {
                        sfJsonObject.put("j_name", "厦门大学附属中山医院");
                        sfJsonObject.put("j_phone", "4003008888");
@ -8620,6 +8543,119 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
                    sfJsonObject.put("dispensaryType", 2);
                    result = sfJsonObject;
                    System.out.println("获取顺丰物流面单信息:8");
                }else {
                    List<WlyyPrescriptionDO> wlyyPrescriptionDOS1 = prescriptionDao.findByOutpatientId(wlyyPrescriptionDOS.getOutpatientId());
                    if (wlyyPrescriptionDOS.getStatus()<31){
                        if (StringUtils.isNoneBlank(sfexpress_obj.getMailno())&&wlyyPrescriptionDOS1.size()>1){
                            String orderNo = "";
                            for (WlyyPrescriptionDO prescriptionDO:wlyyPrescriptionDOS1){
                                if (!prescriptionDO.getRealOrder().equalsIgnoreCase(wlyyPrescriptionDOS.getRealOrder())){
                                    orderNo = prescriptionDO.getRealOrder();
                                }
                            }
                            throw new Exception("已存在地址"+sfexpress_obj.getAddress()+"、电话"+sfexpress_obj.getMobile()+"的快递单(单号"+orderNo+"),请将此处方与其打包一起。");
                        }
                    }
                    String sql = "SELECT\n" +
                            "\tpe.outpatient_id as outpatientId,\n" +
                            "\tpe.mailno as mailno,\n" +
                            "\tpe.address as address,\n" +
                            "\tpe.mobile as mobile\n" +
                            "FROM\n" +
                            "\twlyy_prescription_expressage pe\n" +
                            "WHERE\n" +
                            " pe.create_time >= '"+DateUtil.getStringDateShort()+" 00:00:00'\n" +
                            "AND pe.create_time <= '"+DateUtil.getStringDateShort()+" 23:59:59'\n" +
                            "AND pe.mailno IS NOT NULL\n" +
                            "and pe.address ='"+sfexpress_obj.getAddress()+"'\n" +
                            "and pe.mobile = '"+sfexpress_obj.getMobile()+"' ";
                    List<Map<String,Object>> maps = jdbcTemplate.queryForList(sql);
                    if (maps!=null&&maps.size()!=0){
                        Map<String,Object> map = maps.get(0);
                        if (wlyyPrescriptionDOS.getStatus()<31){
                            if (!map.get("outpatientId").toString().equalsIgnoreCase(wlyyPrescriptionDOS.getOutpatientId())){
                                String mailNo= map.get("mailno").toString();
                                /*       sfexpress_obj.setMailno(mailNo);*/
                                sfexpressService.updatePrescriptionExpressage(sfexpress_obj);
                                List<WlyyPrescriptionDO> wlyyPrescriptionDOS2 = prescriptionDao.findByOutpatientId(map.get("outpatientId").toString());
                                String orderNo = "";
                                for (WlyyPrescriptionDO wlyyPrescriptionDO:wlyyPrescriptionDOS2){
                                    orderNo +=wlyyPrescriptionDO.getRealOrder()+" ";
                                }
                                throw new Exception("已存在地址"+map.get("address")+"、电话"+map.get("mobile")+"的快递单(单号"+orderNo+"),请将此处方与其打包一起。");
                            }
                        }
                    }
                    System.out.println("获取顺丰物流面单信息:2");
                    //如果该处方的快递单号已生成,则说明已经下单成功,不需要重复下单,直接返回面单信息
                    System.out.println("获取顺丰物流面单信息:3");
                    if (org.apache.commons.lang.StringUtils.isNotBlank(sfexpress_obj.getMailno())) {
                        //处方已下单成功
                        System.out.println("获取顺丰物流面单信息:4");
                    } else {
                        //如果该处方的快递单号未生成,则继续下单
                        //根据业务订单号判断是否已经下单成功
                        //--2020.05.20--顺丰V2.0接口已不提供查询接口,直接单下单--START
//                    boolean go_on = sfexpressService.sfOrderSearchService(sfexpress_obj);
//
//                    //如果该业务订单号未下单成功过,则重新下单
//                    if(go_on){
//                        //请求顺丰接口下单,成功下单后,返回快递单号
//                        sfexpress_obj = sfexpressService.postSFOrderService(sfexpress_obj);
//                        //保存快递单号和增加处方物流记录为配送
//                        sfexpressService.updatePrescriptionExpressage(sfexpress_obj);
//                    }
                        //--2020.05.20--顺丰V2.0接口已不提供查询接口,直接单下单--END
                        //请求顺丰接口下单,成功下单后,返回快递单号
                        sfexpress_obj = sfexpressService.postSFOrderService(sfexpress_obj);
                        System.out.println("获取顺丰物流面单信息:5");
                        //保存快递单号和增加处方物流记录为配送
                        sfexpressService.updatePrescriptionExpressage(sfexpress_obj);
                        System.out.println("获取顺丰物流面单信息:6");
                    }
                    for (WlyyPrescriptionDO prescriptionDO:wlyyPrescriptionDOList){
                        prescriptionDO.setStatus(31);
                        prescriptionDao.save(prescriptionDO);
                    }
                    if (sfexpress_obj != null && StringUtils.isNoneBlank(sfexpress_obj.getMailno())) {
                        com.alibaba.fastjson.JSONObject object = sfexpressService.postSFOrderQueryService(sfexpress_obj);
                        System.out.println("获取顺丰物流面单信息7-1"+object.toJSONString());
                        System.out.println("获取顺丰物流面单信息:7");
                        com.alibaba.fastjson.JSONObject sfJsonObject = new com.alibaba.fastjson.JSONObject();
                        sfJsonObject.put("mailno", sfexpress_obj.getMailno());
                        sfJsonObject.put("mailtype", "标准快递");
                        sfJsonObject.put("destcode", object.getString("destRouteLabel"));
                        if (wxId.equalsIgnoreCase("xm_zsyy_wx")) {
                            sfJsonObject.put("j_name", "厦门大学附属中山医院");
                            sfJsonObject.put("j_phone", "4003008888");
                            sfJsonObject.put("j_townName", "思明区");
                            sfJsonObject.put("j_address", "湖滨南路201-209号");
                        } else if (wxId.equalsIgnoreCase("xm_ykyy_wx")) {
                            sfJsonObject.put("j_name", "厦门大学附属中山医院");
                            sfJsonObject.put("j_phone", "4003008888");
                            sfJsonObject.put("j_townName", "思明区");
                            sfJsonObject.put("j_address", "湖滨南路201-209号");
                        }
                        sfJsonObject.put("j_provinceName", "福建省");
                        sfJsonObject.put("j_cityName", "厦门市");
                        sfJsonObject.put("d_name", sfexpress_obj.getName());
                        sfJsonObject.put("d_provinceName", sfexpress_obj.getProvinceName());
                        sfJsonObject.put("d_cityName", sfexpress_obj.getCityName());
                        sfJsonObject.put("d_townName", sfexpress_obj.getTownName());
                        sfJsonObject.put("d_address",sfexpress_obj.getStreetName()+sfexpress_obj.getAddress());
                        sfJsonObject.put("d_phone", sfexpress_obj.getMobile());
                        sfJsonObject.put("express_type", 11);
                        sfJsonObject.put("pay_method", 2);
                        sfJsonObject.put("receive_time", "");
                        sfJsonObject.put("dispensaryType", 2);
                        result = sfJsonObject;
                        System.out.println("获取顺丰物流面单信息:8");
                    }
                }
            }
@ -16947,4 +16983,25 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
    }
    /**
     * 更改订单配送方式
     *
     * @param realOrder
     * @param type
     * @return
     */
    public String updateExpressInfo(String realOrder,Integer type){
        String res = "";
        WlyyPrescriptionDO prescriptionDO = prescriptionDao.findByRealOrder(realOrder);
        List<WlyyPrescriptionExpressageDO> expressageDOS = prescriptionExpressageDao.findByOutpatientId(prescriptionDO.getOutpatientId());
        WlyyPrescriptionExpressageDO expressageDO = expressageDOS.get(0);
        if(type==1){
            expressageDO.setType(1);
            expressageDO.setUpdateTime(new Date());
        }else {
            res = sfUtils.createorder(realOrder);
        }
        return res;
    }
}

+ 0 - 2
business/base-service/src/main/java/com/yihu/jw/hospital/prescription/service/entrance/XzzxEntranceService.java

@ -52,7 +52,6 @@ import com.yihu.jw.utils.WebserviceUtil;
import com.yihu.jw.wechat.dao.BasePatientWechatDao;
import com.yihu.utils.security.MD5;
import net.sf.json.xml.XMLSerializer;
import netscape.javascript.JSObject;
import nu.xom.*;
import org.apache.commons.collections.map.HashedMap;
import org.apache.commons.lang3.StringUtils;
@ -62,7 +61,6 @@ import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

Різницю між файлами не показано, бо вона завелика
+ 233 - 24
business/base-service/src/main/java/com/yihu/jw/hospital/prescription/service/entrance/util/SFUtils.java


+ 30 - 0
common/common-entity/src/main/java/com/yihu/jw/entity/hospital/prescription/WlyyPrescriptionExpressageDO.java

@ -31,6 +31,11 @@ public class WlyyPrescriptionExpressageDO extends UuidIdentityEntity {
	 */
	private String mailno;
    /**
     * 1普通快递2同城快递
     */
    private Integer type;
    /**
	 * 收货人名称
	 */
@ -127,6 +132,12 @@ public class WlyyPrescriptionExpressageDO extends UuidIdentityEntity {
	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
	private Date createTime;
    /**
     * 更新时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
    private Date updateTime;
    /**
	 * 是否自取 1是 0否
	 */
@ -338,4 +349,23 @@ public class WlyyPrescriptionExpressageDO extends UuidIdentityEntity {
    public void setBspOrderNo(String bspOrderNo) {
        this.bspOrderNo = bspOrderNo;
    }
    @Column(name = "type")
    public Integer getType() {
        return type;
    }
    public void setType(Integer type) {
        this.type = type;
    }
    @Column(name = "update_time")
    public Date getUpdateTime() {
        return updateTime;
    }
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
}

+ 10 - 0
common/common-rest-model/src/main/java/com/yihu/jw/restmodel/hospital/prescription/WlyyPrescriptionExpressageVO.java

@ -297,6 +297,16 @@ public class WlyyPrescriptionExpressageVO extends UuidIdentityVOWithOperator {
	@ApiModelProperty(value = "", example = "模块1")
    private Date deliveryTime;
    @ApiModelProperty(value = "普通快递或者同城配送", example = "模块1")
    private Integer type;
    public Integer getType() {
        return type;
    }
    public void setType(Integer type) {
        this.type = type;
    }
    public String getSaasId() {
        return saasId;

+ 9 - 2
common/common-util/src/main/java/com/yihu/jw/util/common/LatitudeUtils.java

@ -3,6 +3,7 @@ package com.yihu.jw.util.common;
import com.alibaba.fastjson.JSONObject;
import com.sun.org.apache.bcel.internal.generic.IF_ACMPEQ;
import com.yihu.jw.util.http.HttpClientUtil;
import org.apache.http.client.HttpClient;
import org.omg.CORBA.WStringSeqHelper;
import org.springframework.util.StringUtils;
@ -154,12 +155,18 @@ public class LatitudeUtils {
    public static void main(String args[]){
        try {
            Map<String, String> json = LatitudeUtils.getGeocoderLatitude("厦门海沧区新阳海新阳光公寓15梯304");
            System.out.println("经度 : " + json.get("lng"));
            System.out.println("纬度 : " + json.get("lat"));
            System.out.println(json);
//            System.out.println("经度 : " + json.get("lng"));
//            System.out.println("纬度 : " + json.get("lat"));
        }catch (Exception e ){
            e.printStackTrace();
        }
    }
//    public static String getGeocoderLatitudeGd(String address) throws Exception {
//        String url = "https://restapi.amap.com/v3/geocode/geo?address=" + URLEncoder.encode(address, "UTF-8") + "&output=JSON&key=" + "adcea0e98b20657717503f9f2a1e6366";
//        String rest = HttpClientUtil.get(url, "utf-8");
//        return rest;
//    }
}

+ 1 - 4
common/common-util/src/main/java/com/yihu/jw/util/http/HttpClientUtil.java

@ -165,7 +165,7 @@ public class HttpClientUtil {
     * @param chatSet 编码格式
     * @return
     */
    public  String get(String url, String chatSet) {
    public   String get(String url, String chatSet) {
        CloseableHttpClient httpclient = HttpClients.createDefault();
        try {
            // 创建httpget.
@ -184,14 +184,11 @@ public class HttpClientUtil {
        } catch (ClientProtocolException e) {
            System.out.println(e.getClass()+"1");
            e.printStackTrace();
            saveExceptionLog(e,url,e.getMessage());
        } catch (ParseException e) {
            System.out.println(e.getClass()+"2");
            saveExceptionLog(e,url,e.getMessage());
            e.printStackTrace();
        } catch (IOException e) {
            System.out.println(e.getClass()+"3");
            saveExceptionLog(e,url,e.getMessage());
            e.printStackTrace();
        } finally {
            // 关闭连接,释放资源

+ 5 - 0
svr/svr-internet-hospital-entrance/pom.xml

@ -67,6 +67,11 @@
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.pdfbox</groupId>
            <artifactId>pdfbox</artifactId>
            <version>2.0.24</version>
        </dependency>
        <dependency>
            <groupId>net.sf.json-lib</groupId>

+ 2 - 1
svr/svr-internet-hospital/src/main/java/com/yihu/jw/hospital/endpoint/consult/PatientConsultEndpoint.java

@ -2,6 +2,7 @@ package com.yihu.jw.hospital.endpoint.consult;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.cronutils.utils.StringUtils;
import com.yihu.jw.doctor.dao.BaseDoctorDao;
import com.yihu.jw.doctor.dao.BaseDoctorRoleDao;
import com.yihu.jw.doctor.service.BaseDoctorInfoService;
@ -49,7 +50,7 @@ import com.yihu.jw.wlyy.service.WlyyBusinessService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import org.apache.axis.utils.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;

+ 41 - 5
svr/svr-internet-hospital/src/main/java/com/yihu/jw/hospital/endpoint/prescription/PrescriptionEndpoint.java

@ -171,21 +171,57 @@ public class PrescriptionEndpoint extends EnvelopRestEndpoint {
    @Autowired
    private SFUtils sfUtils;
    @PostMapping(value = "updateExpressInfo")
    @ApiOperation(value = "更新配送方式")
    public ObjEnvelop updateExpressInfo(@ApiParam(name = "realOrder", value = "处方号")
                                        @RequestParam(value = "realOrder", required = true) String realOrder,
                                        @ApiParam(name = "type", value = "1普通配送2同城配送")
                                        @RequestParam(value = "type", required = true) Integer type) {
        try {
            return ObjEnvelop.getSuccess("success",prescriptionService.updateExpressInfo(realOrder,type));
        } catch (Exception e) {
            return failedObjEnvelopException(e);
        }
    }
    @PostMapping(value = "sfCreateorder")
    @ApiOperation(value = "顺丰同城配送-下订单")
    public ObjEnvelop sfCreateorder() {
    public ObjEnvelop sfCreateorder(@ApiParam(name = "realOrder", value = "处方号")
                                    @RequestParam(value = "realOrder", required = true) String realOrder) {
        try {
            return ObjEnvelop.getSuccess("success",sfUtils.createorder(realOrder));
        } catch (Exception e) {
            return failedObjEnvelopException(e);
        }
    }
    @PostMapping(value = "precreateorder")
    @ApiOperation(value = "顺丰同城配送-预创建订单(店铺)")
    public ObjEnvelop precreateorder(@ApiParam(name = "realOrder", value = "处方号")
                                    @RequestParam(value = "realOrder", required = true) String realOrder) {
        try {
            return ObjEnvelop.getSuccess("success",sfUtils.createorder());
            return ObjEnvelop.getSuccess("success",sfUtils.precreateorder(realOrder));
        } catch (Exception e) {
            return failedObjEnvelopException(e);
        }
    }
    @PostMapping(value = "sfCancelorder")
    @ApiOperation(value = "顺丰同城配送-取消订单")
    public ObjEnvelop cancelorder(@ApiParam(name = "orderId", value = "顺丰订单号")
                                      @RequestParam(value = "orderId", required = true) String orderId) {
    public ObjEnvelop cancelorder(@ApiParam(name = "realOrder", value = "处方号")
                                      @RequestParam(value = "realOrder", required = true) String realOrder) {
        try {
            return ObjEnvelop.getSuccess("success",sfUtils.cancelorder(realOrder));
        } catch (Exception e) {
            return failedObjEnvelopException(e);
        }
    }
    @PostMapping(value = "Sflistorderfeed")
    @ApiOperation(value = "顺丰同城配送-订单状态流查询")
    public ObjEnvelop listorderfeed(@ApiParam(name = "realOrder", value = "处方号")
                                  @RequestParam(value = "realOrder", required = true) String realOrder) {
        try {
            return ObjEnvelop.getSuccess("success",sfUtils.cancelorder(orderId));
            return ObjEnvelop.getSuccess("success",sfUtils.listorderfeed(realOrder));
        } catch (Exception e) {
            return failedObjEnvelopException(e);
        }

+ 1 - 2
svr/svr-internet-hospital/src/main/java/com/yihu/jw/hospital/endpoint/ykyy/YkyyController.java

@ -17,8 +17,7 @@ import com.yihu.jw.wechat.service.WxTemplateService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import org.apache.commons.lang3.StringUtils;
import org.apache.xerces.dom.PSVIAttrNSImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.*;