This commit is contained in:
2023-12-11 15:59:22 +08:00
parent c5a860daba
commit eb0edffd93

View File

@@ -330,7 +330,8 @@ public class LpkReserveOrderService extends MybatisBaseService<LpkReserveOrderMa
if (!exportList.isEmpty()) {
exportList.forEach(s -> {
if (StringUtils.isNotBlank(s.getUserPhone())) {
String phone = s.getUserPhone().substring(0, 3) + "****" + s.getUserPhone().substring(7);
// String phone = s.getUserPhone().substring(0, 3) + "****" + s.getUserPhone().substring(7);
String phone = s.getUserPhone();
s.setUserPhone(phone);
}
List<LpkReserveOrderGoods> orderGoods = lpkReserveOrderGoodsService.selByOrderSid(s.getSid());