Browse Source

优化修改位置二维码

LinWuTai 1 year ago
parent
commit
10a4a91754

+ 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()));