Browse Source

거래 취소 처리 등

marseyes 2 years ago
parent
commit
c4db1172f4
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/main/java/com/oqpo/api/service/sttlmng/KiccPayMngService.java

+ 4 - 0
src/main/java/com/oqpo/api/service/sttlmng/KiccPayMngService.java

@@ -90,6 +90,10 @@ public class KiccPayMngService extends CommonService {
90 90
         easypayPaymentRequest.setOrg_cno(entity.getCno());
91 91
         easypayPaymentRequest.setReq_id(userId);
92 92
         easypayPaymentRequest.setOrg_payment_no(entity.getPoOrdNo());
93
+        // 취소 주문번호 등
94
+        easypayPaymentRequest.setPoOrdNo(fnGetDealNo(36, ""));
95
+        easypayPaymentRequest.setBrandId(entity.getBrandId());
96
+        easypayPaymentRequest.setStoreId(entity.getStoreId());
93 97
 
94 98
         EasypayPaymentResponse response = easypayPaymentService.requestPayment(userId, request, easypayPaymentRequest);
95 99