|
@@ -468,8 +468,10 @@ public class LawenforcementRecordServiceImpl extends BaseServiceImpl implements
|
|
|
if (fillForm != null) {
|
|
|
StringBuilder newDiles = new StringBuilder();
|
|
|
String filename = fillForm.getAttachName();
|
|
|
- newDiles.append(fillForm.getAttachPath()).append("+").append(filename);
|
|
|
- fillForm.setAttachPath(newDiles.toString());
|
|
|
+ if (StringUtils.isNotEmpty(fillForm.getAttachPath())){
|
|
|
+ newDiles.append(fillForm.getAttachPath()).append("+").append(filename);
|
|
|
+ fillForm.setAttachPath(newDiles.toString());
|
|
|
+ }
|
|
|
}
|
|
|
return fillForm;
|
|
|
}
|