|
@@ -90,7 +90,7 @@ public class NotifyCallback implements MQTTCallbackHandler {
|
|
}
|
|
}
|
|
String orderNo = dataObj.getString("order_no");
|
|
String orderNo = dataObj.getString("order_no");
|
|
ExamRegistrationPayment order = notifyCallback.examRegistrationPaymentService.getByOrderNo(orderNo);
|
|
ExamRegistrationPayment order = notifyCallback.examRegistrationPaymentService.getByOrderNo(orderNo);
|
|
- if (order == null || !order.getTransStatus().equals("ING")) {
|
|
|
|
|
|
+ if (order == null || !order.getTransStatus().equals(TransStatusEnum.ING)) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
Map<String, String> rpMap = new HashMap<>();
|
|
Map<String, String> rpMap = new HashMap<>();
|