jsshin 5 lat temu
rodzic
commit
9bd50d9d4d

+ 2 - 1
src/main/java/com/style24/front/biz/web/TsfMypageController.java

@@ -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);