|
|
@@ -4,6 +4,7 @@ import java.util.ArrayList;
|
|
|
import java.util.Collection;
|
|
|
import java.util.List;
|
|
|
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
@@ -499,6 +500,15 @@ public class TsfMypageController extends TsfBaseController {
|
|
|
@GetMapping("/point/form")
|
|
|
public ModelAndView stylePointForm(Point point) {
|
|
|
ModelAndView mav = new ModelAndView();
|
|
|
+
|
|
|
+ // 테스트용 (삭제예정)
|
|
|
+ GagaMap map = new GagaMap();
|
|
|
+ map.setString("custIp", TsfSession.getIpAddress());
|
|
|
+ map.setString("bankNm", "김지철");
|
|
|
+ map.setString("accountNo", "110500288201");
|
|
|
+ map.setString("bankCd", "88");
|
|
|
+ coreOrderService.checkAccount(map);
|
|
|
+ // 테스트용 (삭제예정)
|
|
|
|
|
|
int custNo = TsfSession.getInfo().getCustNo();
|
|
|
point.setCustNo(custNo);
|