From 8f1432f6e2ee2bf9d42c449599dc67c4eab61ff9 Mon Sep 17 00:00:00 2001 From: luoyang Date: Thu, 7 Mar 2019 14:11:05 +0800 Subject: [PATCH] fix findClientByMoniker --- .../manage/riskbusiness/core/impl/RiskBusinessServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/au/com/royalpay/payment/manage/riskbusiness/core/impl/RiskBusinessServiceImpl.java b/src/main/java/au/com/royalpay/payment/manage/riskbusiness/core/impl/RiskBusinessServiceImpl.java index 9f1b6c1e8..11fcd218d 100644 --- a/src/main/java/au/com/royalpay/payment/manage/riskbusiness/core/impl/RiskBusinessServiceImpl.java +++ b/src/main/java/au/com/royalpay/payment/manage/riskbusiness/core/impl/RiskBusinessServiceImpl.java @@ -399,7 +399,7 @@ public class RiskBusinessServiceImpl implements RiskBusinessService, ManagerTodo if (clientMoniker == null) { return; } - JSONObject client = clientMapper.findClientByMoniker(clientMoniker); + JSONObject client = clientMapper.findClientByMonikerAll(clientMoniker); if (client == null) { throw new InvalidShortIdException(); }