|
|
@@ -1781,16 +1781,12 @@ public class OrderNewServiceImpl extends BaseMybatisDao<TOrderNewMapper> impleme
|
|
|
}
|
|
|
|
|
|
public void downloadOrderImg(List<TOrderNewBo> list, HttpServletResponse response){
|
|
|
-
|
|
|
String downloadFileName = "";
|
|
|
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
|
|
|
ZipOutputStream zip = new ZipOutputStream(outputStream);
|
|
|
downloadFileName="订单合同数据.zip";
|
|
|
for (TOrderNewBo t : list) {
|
|
|
-
|
|
|
- //防止重名码
|
|
|
if (t != null) {
|
|
|
-
|
|
|
String annexUrl = t.getContractPictureUrl();
|
|
|
String[] split = annexUrl.split(",");
|
|
|
if (split.length>0){
|