|
|
@@ -9,6 +9,8 @@ import lombok.extern.slf4j.Slf4j;
|
|
|
import com.style24.admin.biz.dao.TsaWmsWithdrawDao;
|
|
|
import com.style24.persistence.domain.WmsWithdraw;
|
|
|
import com.style24.persistence.domain.Withdraw;
|
|
|
+import com.style24.persistence.domain.WithdrawExc;
|
|
|
+
|
|
|
import com.style24.persistence.domain.Delivery;
|
|
|
import com.style24.core.support.message.TscMessageByLocale;
|
|
|
|
|
|
@@ -92,5 +94,20 @@ public class TsaWmsWithdrawService {
|
|
|
wmsWithdrawDao.updateReRecallOrder(withdraw);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * WMS_IF 회수예외 처리결과 등록
|
|
|
+ * @param
|
|
|
+ * @return Delivery
|
|
|
+ * @author moon
|
|
|
+ * @since 2021. 03. 02
|
|
|
+ */
|
|
|
+ @Transactional("wmsTxnManager")
|
|
|
+ public void updateTbIfRecallExceptionRslt(WithdrawExc excData) {
|
|
|
+
|
|
|
+ excData.setIfstat("2");
|
|
|
+ wmsWithdrawDao.updateWmsIfWithdrawExcList(excData);
|
|
|
+ wmsWithdrawDao.updateWmsIfWithdrawExcItemList(excData);
|
|
|
+ wmsWithdrawDao.updateWmsIfWithdrawExcMemoList(excData);
|
|
|
+ }
|
|
|
|
|
|
}
|