Commit 79d1f879425ace00ff981234c5382b57e6ee9275

Authored by jiangjiazhi
1 parent af4f352566
Exists in master and in 1 other branch dev

SmsConfigModel 过滤掉不同步

Showing 1 changed file with 3 additions and 3 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientServiceFacade.java View file @ 79d1f87
... ... @@ -445,7 +445,7 @@
445 445 ps.setReceiveDate(new Date());
446 446 ps.setReceiveUser(String.valueOf(id));
447 447 patientServiceService.updatePatientService(ps);
448   - synReceiveData(ps.getOrderId());
  448 +// synReceiveData(ps.getOrderId());
449 449  
450 450 BaseResponse baseResponse = new BaseResponse();
451 451 baseResponse.setErrorcode(ErrorCodeConstants.SUCCESS);
... ... @@ -503,7 +503,7 @@
503 503 * @param orderId
504 504 */
505 505 public boolean synReceiveData(final String orderId) {
506   - try {
  506 + /* try {
507 507 new Thread(new Runnable() {
508 508 @Override
509 509 public void run() {
... ... @@ -526,7 +526,7 @@
526 526 e1.printStackTrace();
527 527 }
528 528 synReceiveData(orderId);
529   - }
  529 + }*/
530 530 return true;
531 531 }
532 532 }