|
|
@@ -129,18 +129,15 @@ public class Customer extends TscBaseDomain {
|
|
|
}
|
|
|
|
|
|
public String getMaskingCustNm() {
|
|
|
- this.custNm = CryptoUtils.decryptAES(this.custNm);
|
|
|
return TscSession.getAttribute("maskingYn").equals("Y") ? MaskingUtils.name(this.custNm) : this.custNm;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getMaskingCellPhnno() {
|
|
|
- this.cellPhnno = CryptoUtils.decryptAES(this.cellPhnno);
|
|
|
return TscSession.getAttribute("maskingYn").equals("Y") ? MaskingUtils.phoneNo(this.cellPhnno) : this.cellPhnno;
|
|
|
}
|
|
|
|
|
|
public String getMaskingEmail() {
|
|
|
- this.email = CryptoUtils.decryptAES(this.email);
|
|
|
return TscSession.getAttribute("maskingYn").equals("Y") ? MaskingUtils.email(this.email) : this.email;
|
|
|
}
|
|
|
|