|
@@ -1541,7 +1541,11 @@ public class ApiController extends BaseController {
|
|
|
List<CcOutboundCdr> list = ccOutboundCdrService.selectCcOutboundCdrList(ccOutboundCdr);
|
|
List<CcOutboundCdr> list = ccOutboundCdrService.selectCcOutboundCdrList(ccOutboundCdr);
|
|
|
for (CcOutboundCdr data: list) {
|
|
for (CcOutboundCdr data: list) {
|
|
|
data.setWavFileUrl("/recordings/files?filename=" + data.getRecordFilename());
|
|
data.setWavFileUrl("/recordings/files?filename=" + data.getRecordFilename());
|
|
|
- data.setCallee(CommonUtils.maskPhoneNumber(data.getCallee()));
|
|
|
|
|
|
|
+ try {
|
|
|
|
|
+ data.setCallee(DESUtil.encrypt(data.getCallee()));
|
|
|
|
|
+ } catch (Throwable e) {
|
|
|
|
|
+ throw new RuntimeException(e);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
return getDataTable(list);
|
|
return getDataTable(list);
|
|
|
}
|
|
}
|