|
|
@@ -1,7 +1,6 @@
|
|
|
package com.style24.front.biz.web;
|
|
|
|
|
|
import java.io.PrintWriter;
|
|
|
-import java.util.Map;
|
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
@@ -14,7 +13,6 @@ import org.springframework.ui.Model;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
import org.springframework.web.servlet.ModelAndView;
|
|
|
|
|
|
@@ -85,6 +83,7 @@ public class TsfPgController extends TsfBaseController {
|
|
|
order.setPgTid(request.getParameter("tno"));
|
|
|
order.setCashAuthNo(request.getParameter("cash_a_no"));
|
|
|
order.setCashTradeNo(request.getParameter("cash_no"));
|
|
|
+ order.setPayMeans(TscConstants.PayMeans.BANK_DEPOSIT.value());
|
|
|
order.setCustNo(0);
|
|
|
order.setUpdNo(0);
|
|
|
coreOrderService.updateOrderInfoVBank(order);
|
|
|
@@ -157,6 +156,7 @@ public class TsfPgController extends TsfBaseController {
|
|
|
order.setPgTid(param.getTno());
|
|
|
order.setCashAuthNo(param.getCash_a_no());
|
|
|
order.setCashTradeNo(param.getCash_no());
|
|
|
+ order.setPayMeans(TscConstants.PayMeans.BANK_DEPOSIT.value());
|
|
|
order.setCustNo(0);
|
|
|
order.setUpdNo(0);
|
|
|
coreOrderService.updateOrderInfoVBank(order);
|