|
|
@@ -16,6 +16,7 @@ import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
import com.style24.admin.biz.dao.TsaGoodsDao;
|
|
|
import com.style24.admin.support.env.TsaConstants;
|
|
|
import com.style24.admin.support.security.session.TsaSession;
|
|
|
+import com.style24.core.biz.service.TscCommonService;
|
|
|
import com.style24.core.biz.thirdparty.NaverLowestPriceApi;
|
|
|
import com.style24.core.biz.thirdparty.SafetyKoreaApi;
|
|
|
import com.style24.core.support.message.TscMessageByLocale;
|
|
|
@@ -94,6 +95,9 @@ public class TsaGoodsService {
|
|
|
@Autowired
|
|
|
private TsaCommonService commonService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private TscCommonService tscCommonService;
|
|
|
+
|
|
|
@Autowired
|
|
|
private TsaNoticeService noticeService;
|
|
|
|
|
|
@@ -3583,14 +3587,14 @@ public class TsaGoodsService {
|
|
|
}
|
|
|
|
|
|
if (StringUtils.isBlank(sizeInfo.getSizeCate2Cd())) {
|
|
|
- sizeCate2Cd = commonService.getNextSequence("SEQ_CATE").toString();
|
|
|
+ sizeCate2Cd = tscCommonService.getNextSequence("SEQ_CATE").toString();
|
|
|
sizeInfo.setSizeCate2Cd(sizeCate2Cd);
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
if (StringUtils.isBlank(sizeInfo.getSizeCate1Cd())) {
|
|
|
- sizeCate1Cd = commonService.getNextSequence("SEQ_CATE").toString();
|
|
|
+ sizeCate1Cd = tscCommonService.getNextSequence("SEQ_CATE").toString();
|
|
|
sizeInfo.setSizeCate1Cd(sizeCate1Cd);
|
|
|
sizeInfo.setSizeCate2Cd(sizeCate1Cd);
|
|
|
}
|