|
|
@@ -2177,18 +2177,12 @@ public class TsfMypageController extends TsfBaseController {
|
|
|
@RequestMapping("/account/check")
|
|
|
@ResponseBody
|
|
|
public GagaMap getAccountCheck(@RequestBody CustAccount custAccount) {
|
|
|
- custAccount.setIpAddress(TsfSession.getIpAddress());
|
|
|
boolean isValid = false;
|
|
|
-
|
|
|
- log.info("custAccount.getAccountNm() ::: {}",custAccount.getAccountNm());
|
|
|
- log.info("custAccount.getBankCd() ::: {}",custAccount.getBankCd());
|
|
|
- log.info("custAccount.getAccountNo() ::: {}",custAccount.getAccountNo());
|
|
|
-
|
|
|
GagaMap result = coreKcpService.checkAccount(custAccount);
|
|
|
if ("0000".equals(result.get("resCd"))) {
|
|
|
isValid = true;
|
|
|
}
|
|
|
- result.set("isValid", isValid);
|
|
|
+ result.setBoolean("isValid", isValid);
|
|
|
return result;
|
|
|
}
|
|
|
|