|
@@ -101,11 +101,31 @@ public class TsfCustomerService {
|
|
|
public Customer getCustomerFindByCustNo(Integer custNo) {
|
|
public Customer getCustomerFindByCustNo(Integer custNo) {
|
|
|
Customer customer = new Customer();
|
|
Customer customer = new Customer();
|
|
|
customer.setCustNo(custNo);
|
|
customer.setCustNo(custNo);
|
|
|
|
|
+
|
|
|
customer.setCustStat(TscConstants.CustStat.ACTIVE.value());
|
|
customer.setCustStat(TscConstants.CustStat.ACTIVE.value());
|
|
|
customer.setSiteCd(TscConstants.Site.STYLE24.value());
|
|
customer.setSiteCd(TscConstants.Site.STYLE24.value());
|
|
|
customer.encryptData();
|
|
customer.encryptData();
|
|
|
return coreCustomerService.getCustomerInfo(customer);
|
|
return coreCustomerService.getCustomerInfo(customer);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 고객정보찾기 (휴면회원 비밀번호변경)
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param custNo - 고객번호
|
|
|
|
|
+ * @return Customer 고객정보
|
|
|
|
|
+ * @author jsshin
|
|
|
|
|
+ * @since 2021. 02. 24
|
|
|
|
|
+ */
|
|
|
|
|
+ public Customer getCustomerFindByCustNoDormant(Integer custNo) {
|
|
|
|
|
+ Customer customer = new Customer();
|
|
|
|
|
+ customer.setCustNo(custNo);
|
|
|
|
|
+
|
|
|
|
|
+ // 2022.01.22 휴면계정 비밀번호 변경시 처리
|
|
|
|
|
+ // customer.setCustStat(TscConstants.CustStat.ACTIVE.value());
|
|
|
|
|
+ customer.setSiteCd(TscConstants.Site.STYLE24.value());
|
|
|
|
|
+ customer.encryptData();
|
|
|
|
|
+ return coreCustomerService.getCustomerInfo(customer);
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 휴면고객 정보 찾기
|
|
* 휴면고객 정보 찾기
|