|
|
|
@ -747,10 +747,10 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
public List<PrintPreviewVO> printBatch(String ids, String tempId) throws Exception { |
|
|
|
|
public Map<String,List<PrintPreviewVO>> printBatch(String ids, String tempId) throws Exception { |
|
|
|
|
|
|
|
|
|
List<PrintPreviewVO> list = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
Map<String,List<PrintPreviewVO>> stringListMap = new HashMap<>(); |
|
|
|
|
BasicPrintTemplateEntity template = basicPrintTemplateClient.getPrintTemplate(tempId); |
|
|
|
|
|
|
|
|
|
String[] idArray = ids.split(","); |
|
|
|
@ -761,6 +761,7 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
|
|
|
|
|
for (String s : idArray) { |
|
|
|
|
|
|
|
|
|
List<PrintPreviewVO> list = new ArrayList<>(); |
|
|
|
|
/** |
|
|
|
|
* 查询运单 |
|
|
|
|
*/ |
|
|
|
@ -790,11 +791,11 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
stringListMap.put(s,list); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return list; |
|
|
|
|
return stringListMap; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|