|
|
@@ -1489,6 +1489,7 @@ public class TsfOrderService {
|
|
|
* @since 2021. 05. 12
|
|
|
*/
|
|
|
public void createNpayGoodsXml50(HttpServletRequest request, HttpServletResponse response) throws Exception {
|
|
|
+ log.info(":::::::::::::::: CHECK CREATE GOODS XML :::::::::::::::::: ");
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
// http://ldfront.style24.com/pg/create/npay/goodsxml?product%5B0%5D%5Bid%5D=A83F-DP568S&product%5B0%5D%5BoptionManageCodes%5D=14019445-2&supplementSearch=true&optionSearch=true
|
|
|
// product%5B0%5D%5Bid%5D=A83F-DP568S&product%5B0%5D%5BoptionManageCodes%5D=14019445-2&supplementSearch=true&optionSearch=true
|
|
|
@@ -1506,6 +1507,10 @@ public class TsfOrderService {
|
|
|
for (int j=0 ; j<arr2.length ; j++) {
|
|
|
String[] arr3 = arr2[j].split("=");
|
|
|
|
|
|
+ log.info("CHECK ARR1 :::: {}", Arrays.toString(arr1));
|
|
|
+ log.info("CHECK ARR2 :::: {}", Arrays.toString(arr2));
|
|
|
+ log.info("CHECK ARR3 :::: {}", Arrays.toString(arr3));
|
|
|
+
|
|
|
if (arr3.length > 1) {
|
|
|
if (arr3[0].contains("id")) {
|
|
|
if ("".equals(goodsCdStr)) {
|
|
|
@@ -1524,6 +1529,9 @@ public class TsfOrderService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ log.info("CHECK GOODS_CDS :::: {}", goodsCdStr);
|
|
|
+ log.info("CHECK MANAGE_CODES_ARR :::: {}", optionManageCodesStr);
|
|
|
+
|
|
|
String[] goodsCdArr = goodsCdStr.split(",");
|
|
|
String[] optionManageCodesArr = optionManageCodesStr.split(",");
|
|
|
|