|
@@ -1,6 +1,5 @@
|
|
|
package com.style24.front.biz.web;
|
|
package com.style24.front.biz.web;
|
|
|
|
|
|
|
|
-import java.awt.Image;
|
|
|
|
|
import java.io.File;
|
|
import java.io.File;
|
|
|
import java.io.FileOutputStream;
|
|
import java.io.FileOutputStream;
|
|
|
import java.io.IOException;
|
|
import java.io.IOException;
|
|
@@ -372,7 +371,9 @@ public class TsfCommonController extends TsfBaseController {
|
|
|
if (TsfSession.isLogin()) {
|
|
if (TsfSession.isLogin()) {
|
|
|
order.setCustNo(TsfSession.getInfo().getCustNo()); // 고객번호등록
|
|
order.setCustNo(TsfSession.getInfo().getCustNo()); // 고객번호등록
|
|
|
} else {
|
|
} else {
|
|
|
- order.setCustNo(0);
|
|
|
|
|
|
|
+ // 2021.09.13 card007 비회원은 TB_CUST_DELIVERY_ADDR에 등록하지 않는다.
|
|
|
|
|
+ // order.setCustNo(0);
|
|
|
|
|
+ return 0;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
coreOrderService.createCustDeliveryAddr(order);
|
|
coreOrderService.createCustDeliveryAddr(order);
|