lighter 2 年 前
コミット
fee2103064

+ 0 - 4
src/main/java/thyyxxk/webserver/controller/medicalinsurance/MarkMtFeesController.java

@@ -3,7 +3,6 @@ package thyyxxk.webserver.controller.medicalinsurance;
 import lombok.extern.slf4j.Slf4j;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.*;
-import org.springframework.web.client.RestTemplate;
 import thyyxxk.webserver.config.auth.PassToken;
 import thyyxxk.webserver.config.exception.ExceptionEnum;
 import thyyxxk.webserver.entity.ResultVo;
@@ -62,9 +61,6 @@ public class MarkMtFeesController {
         mz.setTimes(param.getTimes());
         mz.setStaffId(param.getStaffId());
         ResultVo<FundDetail> result = mzService.outpatientSettlement(mz);
-        if (result.getCode().equals(ExceptionEnum.SUCCESS.getCode())) {
-            mzService.updateMzSaved(param.getPatientId(), param.getTimes());
-        }
         return getStringObjectMap(param, result, "收费窗口门特结算");
     }
 

+ 0 - 3
src/main/java/thyyxxk/webserver/dao/his/medicalinsurance/SiMzDao.java

@@ -123,9 +123,6 @@ public interface SiMzDao {
             "#{diseDorNo}, #{diseDorName}, #{diagTime}, #{valiFlag}, #{realOpter})")
     void insertNewMzDiag(SiMzDiag diag);
 
-    @Update("update t_si_setlinfo set mz_saved=1 where pat_no=#{patNo} and times=#{times}")
-    void updateMzSaved(@Param("patNo") String patNo, @Param("times") int times);
-
     @Select("select count(1) from t_si_pat_info where pat_no=#{patNo} and times=#{times} ")
     int selectSiMzInfoCount(@Param("patNo") String patNo,
                             @Param("times") int times);

+ 0 - 1
src/main/java/thyyxxk/webserver/service/medicalinsurance/SiDownloadService.java

@@ -38,7 +38,6 @@ public class SiDownloadService {
     private final SiDownloadDao dnlddao;
     private final SiExecSrvc execSrvc;
 
-
     @Autowired
     public SiDownloadService(ExecService exec, SiDownloadDao dnlddao, SiExecSrvc execSrvc) {
         this.exec = exec;

+ 0 - 4
src/main/java/thyyxxk/webserver/service/medicalinsurance/SiMzService.java

@@ -318,10 +318,6 @@ public class SiMzService {
         return ResultVoUtil.success("门诊诊断保存成功。");
     }
 
-    public void updateMzSaved(String patientId, int times) {
-        dao.updateMzSaved(patientId, times);
-    }
-
     public ResultVo<List<SpcChrDiseAcct>> fetchSpcSlwinfo(String socialNo) {
         if (StringUtil.isBlank(socialNo)) {
             return ResultVoUtil.fail(ExceptionEnum.LOGICAL_ERROR, "患者身份证号不能为空,请补充!");