|
|
@@ -73,6 +73,7 @@ public class TsaCustomerService {
|
|
|
*/
|
|
|
public Customer getCustomerInfo(Integer custNo) {
|
|
|
Customer customer = new Customer();
|
|
|
+ customer.setSiteCd(TscConstants.Site.STYLE24.value());
|
|
|
customer.setCustNo(custNo);
|
|
|
customer.setCustStat(TscConstants.CustStat.ACTIVE.value());
|
|
|
return coreCustomerService.getCustomerInfo(customer);
|
|
|
@@ -138,6 +139,7 @@ public class TsaCustomerService {
|
|
|
*/
|
|
|
@Transactional("shopTxnManager")
|
|
|
public GagaMap saveCustomerSecede(Customer customer) {
|
|
|
+ customer.setSiteCd(TscConstants.Site.STYLE24.value());
|
|
|
customer.setCustStat(TscConstants.CustStat.SECEDE.value());
|
|
|
return coreCustomerService.saveCustomerSecede(customer);
|
|
|
}
|