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