Browse Source

院内结算确认接口

DESKTOP-G6NQ3SI\dante 7 years ago
parent
commit
9d2eebe87c

+ 1 - 8
patient-co-service/wlyy_service/src/main/java/com/yihu/wlyy/service/service/prescription/PrescriptionService.java

@ -832,10 +832,6 @@ public class PrescriptionService extends ZysoftBaseService{
        params.put("visitNo",visitNo);
        String response = postSecond("getDispUnSettleFeeInfoList","查询处方结算结果列表",params,null,header,false,2);
        //添加日志到wlyy_zy_push_log表
        addZyPushLog(response,"getDispUnSettleFeeInfoList","查询处方结算结果列表",null  ,"POST","","2","");
        return response;
    }
@ -844,6 +840,7 @@ public class PrescriptionService extends ZysoftBaseService{
     * @param  prescriptionCode 处方号
     * @throws Exception
     */
    @Transactional
    public String executeSickSettle(String prescriptionCode)  throws Exception
    {
        Prescription prescription = prescriptionDao.findByCode(prescriptionCode);
@ -905,10 +902,6 @@ public class PrescriptionService extends ZysoftBaseService{
        }
        String response = postSecond("executeSickSettle","院内结算确认接口",null,json,header,false,2);
        //添加日志到wlyy_zy_push_log表
        addZyPushLog(response,"executeSickSettle","院内结算确认接口",null  ,"POST","","3","");
        if(StringUtils.isNotBlank(response)){
            JSONObject reobj =  JSON.parseObject(response);
            Integer code = reobj.getInteger("CODE");