|
|
@@ -10,6 +10,8 @@ import java.util.List;
|
|
|
import java.util.Map;
|
|
|
import java.util.Set;
|
|
|
|
|
|
+import javax.annotation.PostConstruct;
|
|
|
+
|
|
|
import org.apache.commons.io.FileUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
@@ -166,7 +168,7 @@ public class OrderCochainServiceImpl extends AbstractServiceImpl<IOrderCochainDa
|
|
|
if (repeat != null && repeat.equals(key) && isflag) {
|
|
|
isflag = false;
|
|
|
downloadByPath(orderFile.getSignedPdfUrl(), map, "公证申请表等相关文书", zipList);
|
|
|
- } else {
|
|
|
+ } else if (!repeat.equals(key)) {
|
|
|
downloadByPath(orderFile.getSignedPdfUrl(), map, orderFile.getFileName(), zipList);
|
|
|
}
|
|
|
|