From 84fd23e5e865bd5529441a0c318809a00362f44c Mon Sep 17 00:00:00 2001
From: wjli <591616088@qq.com>
Date: 星期一, 18 三月 2024 16:15:03 +0800
Subject: [PATCH] 添加签收图片对比功能

---
 xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/controller/CustomerController.java |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/controller/CustomerController.java b/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/controller/CustomerController.java
index e2a6718..998f23d 100644
--- a/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/controller/CustomerController.java
+++ b/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/controller/CustomerController.java
@@ -43,6 +43,11 @@
         wrapper.eq("customer_id",id);
         wrapper.eq("status",1);
         List<CustomerReceive> list = iCustomerReceiveService.list(wrapper);
+        for (CustomerReceive customerReceive : list) {
+            if(StrUtil.isBlank(customerReceive.getPhone())){
+                customerReceive.setPhone(" ");
+            }
+        }
         customer.setReceives(list);
         return new ResultUtil<Customer>().setData(customer);
     }

--
Gitblit v1.9.1