|
@@ -183,7 +183,15 @@ public class TbLocationServiceImpl implements ITbLocationService
|
|
|
|
|
|
String sequence = getSequence(parentId, tbLocation.getId());
|
|
|
tbLocation.setSequence(sequence);
|
|
|
- return tbLocationMapper.updateTbLocation(tbLocation);
|
|
|
+ int result = tbLocationMapper.updateTbLocation(tbLocation);
|
|
|
+ if (result > 0) {
|
|
|
+ String fileUrl = getFileUrl(tbLocation.getNumber());
|
|
|
+ File file = new File(fileUrl);
|
|
|
+ if (file.isFile() && file.exists()) {
|
|
|
+ file.delete();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return result;
|
|
|
}
|
|
|
|
|
|
private String getSequence(Long parentId, Long locationId) {
|