瀏覽代碼

优化修改位置二维码

LinWuTai 1 年之前
父節點
當前提交
10a4a91754
共有 1 個文件被更改,包括 14 次插入1 次删除
  1. 14 1
      ruoyi-admin/src/main/java/com/ruoyi/asset/service/impl/TbLocationServiceImpl.java

+ 14 - 1
ruoyi-admin/src/main/java/com/ruoyi/asset/service/impl/TbLocationServiceImpl.java

@@ -239,7 +239,20 @@ public class TbLocationServiceImpl implements ITbLocationService
     @Override
     public void createQrCodeDataByLocation(TbLocation tbLocation) {
         QrDTO qrDTO = new QrDTO();
-        qrDTO.setName(tbLocation.getName());
+        String sequence = tbLocation.getSequence();
+        String[] ids = sequence.split(",");
+        StringBuilder stringBuilder = new StringBuilder();
+        for (int i = 0; i < ids.length; i++) {
+            Long locationId = Long.valueOf(ids[i]);
+            TbLocation location = tbLocationMapper.selectTbLocationById(locationId);
+            if (location != null) {
+                stringBuilder.append(location.getName());
+                if (i < ids.length - 1) {
+                    stringBuilder.append("-");
+                }
+            }
+        }
+        qrDTO.setName(stringBuilder.toString());
         qrDTO.setValue(tbLocation.getNumber());
 
         File file = new File(getFileUrl(qrDTO.getValue()));