|
|
@@ -1905,6 +1905,7 @@ public class TsfMypageController extends TsfBaseController {
|
|
|
@ResponseBody
|
|
|
public GagaMap updateCustomerInfo(@RequestBody Customer customer) {
|
|
|
CustAccount custAccount = new CustAccount();
|
|
|
+ custAccount.setIpAddress(TsfSession.getIpAddress());
|
|
|
custAccount.setAccountNm(customer.getAccountNm());
|
|
|
custAccount.setAccountNo(customer.getAccountNo());
|
|
|
custAccount.setBankCd(customer.getBankCd());
|
|
|
@@ -1930,7 +1931,7 @@ public class TsfMypageController extends TsfBaseController {
|
|
|
*/
|
|
|
@RequestMapping("/account/check")
|
|
|
@ResponseBody
|
|
|
- public GagaMap getAccountCheck(@RequestBody CustAccount custAccount) throws Exception {
|
|
|
+ public GagaMap getAccountCheck(@RequestBody CustAccount custAccount) {
|
|
|
custAccount.setIpAddress(TsfSession.getIpAddress());
|
|
|
boolean isValid = false;
|
|
|
GagaMap result = coreKcpService.checkAccount(custAccount);
|