|
|
|
@ -266,7 +266,7 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
distributionStockArticleEntity.setAcceptWarehouseName(warehouseWaybill.getDestinationWarehouseName()); |
|
|
|
|
distributionStockArticleEntity.setIsZero("1"); |
|
|
|
|
distributionStockArticleEntity.setIncomingNum(allNum); |
|
|
|
|
distributionStockArticleEntity.setTenantId(StringUtil.isEmpty(AuthUtil.getTenantId())?TenantNum.HUITONGCODE:AuthUtil.getTenantId()); |
|
|
|
|
distributionStockArticleEntity.setTenantId(StringUtil.isEmpty(AuthUtil.getTenantId()) ? TenantNum.HUITONGCODE : AuthUtil.getTenantId()); |
|
|
|
|
|
|
|
|
|
List<WarehouseWayBillDetail> details = warehouseWayBillDetailService.findByWaybillId(waybillId); |
|
|
|
|
StringBuilder sb = new StringBuilder(); |
|
|
|
@ -392,7 +392,7 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findEntityListByOrderCode(orderCode, warehouseId); |
|
|
|
|
//把parcelListEntityList转化为firsts为key的Map
|
|
|
|
|
Map<String, DistributionParcelListEntity> parcelListEntityMap = parcelListEntityList.stream() |
|
|
|
|
.collect(Collectors.toMap(DistributionParcelListEntity::getFirsts, parcelListEntity -> parcelListEntity)); |
|
|
|
|
.collect(Collectors.toMap(DistributionParcelListEntity::getFirsts, parcelListEntity -> parcelListEntity)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Integer subNum = 0; |
|
|
|
@ -463,7 +463,7 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
splitNum = 0; |
|
|
|
|
} |
|
|
|
|
DistributionParcelListEntity parcelList = parcelListEntityMap.get(productName); |
|
|
|
|
parcelList.setQuantity(parcelList.getQuantity()-splitNum); |
|
|
|
|
parcelList.setQuantity(parcelList.getQuantity() - splitNum); |
|
|
|
|
parcelListEntityMap.put(productName, parcelList); |
|
|
|
|
|
|
|
|
|
DistributionParcelListEntity distributionParcelListEntity = new DistributionParcelListEntity(); |
|
|
|
@ -579,7 +579,7 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
warehouseWaybill.setReceivedTotalPrice(BigDecimal.ZERO); |
|
|
|
|
warehouseWaybill.setWaybillType(2); |
|
|
|
|
warehouseWaybill.setReceivedStatus(0); |
|
|
|
|
warehouseWaybill.setTenantId(StringUtil.isEmpty(AuthUtil.getTenantId())?TenantNum.HUITONGCODE:AuthUtil.getTenantId()); |
|
|
|
|
warehouseWaybill.setTenantId(StringUtil.isEmpty(AuthUtil.getTenantId()) ? TenantNum.HUITONGCODE : AuthUtil.getTenantId()); |
|
|
|
|
|
|
|
|
|
BasicdataClientEntity agentClient = basicdataClientClient.findByName(agent); |
|
|
|
|
if (!Objects.isNull(agentClient)) { |
|
|
|
@ -711,7 +711,7 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
IPage<WarehouseWaybillVO> pageList = baseMapper.pageList(page, waybillDTO); |
|
|
|
|
List<WarehouseWaybillVO> records = pageList.getRecords(); |
|
|
|
|
|
|
|
|
|
if(!records.isEmpty()){ |
|
|
|
|
if (!records.isEmpty()) { |
|
|
|
|
//把records中的id取出作为一个集合
|
|
|
|
|
List<Long> ids = records.stream().map(WarehouseWaybillVO::getId).collect(Collectors.toList()); |
|
|
|
|
List<WarehouseWayBillDetail> wayBillDetailList = warehouseWayBillDetailService.findByWaybillIds(ids); |
|
|
|
@ -776,10 +776,10 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
public Map<String,List<PrintPreviewVO>> printBatch(String ids, String tempId) throws Exception { |
|
|
|
|
public Map<String, List<PrintPreviewVO>> printBatch(String ids, String tempId) throws Exception { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Map<String,List<PrintPreviewVO>> stringListMap = new HashMap<>(); |
|
|
|
|
Map<String, List<PrintPreviewVO>> stringListMap = new HashMap<>(); |
|
|
|
|
BasicPrintTemplateEntity template = basicPrintTemplateClient.getPrintTemplate(tempId); |
|
|
|
|
|
|
|
|
|
String[] idArray = ids.split(","); |
|
|
|
@ -814,13 +814,13 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
warehouseWayBillDetails = detailList.subList(i * 4, 4); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
PrintPreviewVO printPreviewVO = buildPrintWallet(warehouseWaybillEntity, warehouseWayBillDetails, template); |
|
|
|
|
PrintPreviewVO printPreviewVO = buildPrintWallet(warehouseWaybillEntity, warehouseWayBillDetails, template,num,i); |
|
|
|
|
|
|
|
|
|
list.add(printPreviewVO); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
stringListMap.put(s,list); |
|
|
|
|
stringListMap.put(s, list); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -896,22 +896,22 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
List<ExportWarehouseWaybillVO> list = baseMapper.exportWaybillList(waybillDTO); |
|
|
|
|
|
|
|
|
|
list.forEach(item -> { |
|
|
|
|
item.setPayType(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_PAY_TYPE,item.getPayType())); |
|
|
|
|
item.setPayWay(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_PAY_WAY,item.getPayWay())); |
|
|
|
|
item.setDeliveryWay(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_DELIVERY_WAY,item.getDeliveryWay())); |
|
|
|
|
item.setUrgency(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_URGENCY,item.getUrgency())); |
|
|
|
|
item.setTransportType(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_TRANSPORT_TYPE,item.getTransportType())); |
|
|
|
|
item.setPickupCompleteOrNotStr(item.getPickupCompleteOrNot() == 1?"是":"否"); |
|
|
|
|
item.setTrunklineCompleteOrNotStr(item.getTrunklineCompleteOrNot() == 1?"是":"否"); |
|
|
|
|
item.setPayType(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_PAY_TYPE, item.getPayType())); |
|
|
|
|
item.setPayWay(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_PAY_WAY, item.getPayWay())); |
|
|
|
|
item.setDeliveryWay(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_DELIVERY_WAY, item.getDeliveryWay())); |
|
|
|
|
item.setUrgency(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_URGENCY, item.getUrgency())); |
|
|
|
|
item.setTransportType(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_TRANSPORT_TYPE, item.getTransportType())); |
|
|
|
|
item.setPickupCompleteOrNotStr(item.getPickupCompleteOrNot() == 1 ? "是" : "否"); |
|
|
|
|
item.setTrunklineCompleteOrNotStr(item.getTrunklineCompleteOrNot() == 1 ? "是" : "否"); |
|
|
|
|
item.setWaybillStatus(WaybillStatusEnum.getValue(item.getWaybillStatus())); |
|
|
|
|
item.setFreezeStatusStr(item.getFreezeStatus() == 1?"是":"否"); |
|
|
|
|
item.setAbolishStatusStr(item.getAbolishStatus() == 1?"是":"否"); |
|
|
|
|
item.setFreezeStatusStr(item.getFreezeStatus() == 1 ? "是" : "否"); |
|
|
|
|
item.setAbolishStatusStr(item.getAbolishStatus() == 1 ? "是" : "否"); |
|
|
|
|
}); |
|
|
|
|
return list; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private PrintPreviewVO buildPrintWallet(WarehouseWaybillEntity warehouseWaybillEntity, List<WarehouseWayBillDetail> warehouseWayBillDetails, BasicPrintTemplateEntity template) throws Exception { |
|
|
|
|
private PrintPreviewVO buildPrintWallet(WarehouseWaybillEntity warehouseWaybillEntity, List<WarehouseWayBillDetail> warehouseWayBillDetails, BasicPrintTemplateEntity template,int total,int num) throws Exception { |
|
|
|
|
PrintPreviewVO printPreviewVO = new PrintPreviewVO(); |
|
|
|
|
String html = TemplateUtil.getTemplateByUrl(template.getTemplateUrl()); |
|
|
|
|
|
|
|
|
@ -920,14 +920,21 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
map.put("查询单号", warehouseWaybillEntity.getWaybillNo()); |
|
|
|
|
map.put("起运地", warehouseWaybillEntity.getDepartureWarehouseName()); |
|
|
|
|
map.put("到达站", warehouseWaybillEntity.getDestinationWarehouseName()); |
|
|
|
|
map.put("客户车次号", "客户车次号: "+warehouseWaybillEntity.getCustomerTrain()); |
|
|
|
|
map.put("客户车次号", "客户车次号: " + warehouseWaybillEntity.getCustomerTrain()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
map.put("托运单位名称", warehouseWaybillEntity.getShipper()); |
|
|
|
|
map.put("托运单位电话", warehouseWaybillEntity.getShipperMobile()); |
|
|
|
|
map.put("托运单位地址", warehouseWaybillEntity.getShipperAddress()); |
|
|
|
|
|
|
|
|
|
map.put("收货单位名称", warehouseWaybillEntity.getConsignee()); |
|
|
|
|
StringBuffer sb = new StringBuffer(); |
|
|
|
|
sb.append(warehouseWaybillEntity.getConsignee()); |
|
|
|
|
if (!StringUtil.isBlank(warehouseWaybillEntity.getConsigneeName())) { |
|
|
|
|
sb.append("("); |
|
|
|
|
sb.append(warehouseWaybillEntity.getConsigneeName()); |
|
|
|
|
sb.append(")"); |
|
|
|
|
} |
|
|
|
|
map.put("收货单位名称", sb.toString()); |
|
|
|
|
map.put("收货单位电话", warehouseWaybillEntity.getConsigneeMobile()); |
|
|
|
|
map.put("收货单位地址", warehouseWaybillEntity.getConsigneeAddress()); |
|
|
|
|
|
|
|
|
@ -935,7 +942,7 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
map.put("备注", warehouseWaybillEntity.getRemark()); |
|
|
|
|
map.put("填票人", warehouseWaybillEntity.getAgent()); |
|
|
|
|
|
|
|
|
|
map.put("托运日期", DateUtil.format(warehouseWaybillEntity.getCreateTime(),"yyyy-MM-dd")); |
|
|
|
|
map.put("托运日期", DateUtil.format(warehouseWaybillEntity.getCreateTime(), "yyyy-MM-dd")); |
|
|
|
|
// 格式化费用 保留2位小数
|
|
|
|
|
map.put("运费总计", formatToTwoDecimalPlaces(sumFreight(warehouseWaybillEntity))); |
|
|
|
|
|
|
|
|
@ -958,29 +965,30 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
map.put("仓库管理费金额", formatToTwoDecimalPlaces(warehouseWaybillEntity.getWarehouseManagementFee())); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<Map<String,Object>> ls = new ArrayList<>(); |
|
|
|
|
Integer sumNumber=0; |
|
|
|
|
List<Map<String, Object>> ls = new ArrayList<>(); |
|
|
|
|
Integer sumNumber = 0; |
|
|
|
|
BigDecimal sumWEIGHT = new BigDecimal("0.00"); |
|
|
|
|
BigDecimal sumVOLUME = new BigDecimal("0.00"); |
|
|
|
|
for (WarehouseWayBillDetail warehouseWayBillDetail : warehouseWayBillDetails) { |
|
|
|
|
Map<String,Object> t = new HashMap<>(); |
|
|
|
|
t.put("货物名称",warehouseWayBillDetail.getProductName()); |
|
|
|
|
t.put("件数",warehouseWayBillDetail.getNum()); |
|
|
|
|
Map<String, Object> t = new HashMap<>(); |
|
|
|
|
t.put("货物名称", warehouseWayBillDetail.getProductName()); |
|
|
|
|
t.put("件数", warehouseWayBillDetail.getNum()); |
|
|
|
|
sumNumber = sumNumber + warehouseWayBillDetail.getNum(); |
|
|
|
|
t.put("包装",""); |
|
|
|
|
t.put("重量",warehouseWayBillDetail.getWeight()); |
|
|
|
|
t.put("包装", ""); |
|
|
|
|
t.put("重量", warehouseWayBillDetail.getWeight()); |
|
|
|
|
sumWEIGHT = sumWEIGHT.add(warehouseWayBillDetail.getWeight()); |
|
|
|
|
t.put("体积",warehouseWayBillDetail.getVolume()); |
|
|
|
|
t.put("体积", warehouseWayBillDetail.getVolume()); |
|
|
|
|
sumVOLUME = sumVOLUME.add(warehouseWayBillDetail.getVolume()); |
|
|
|
|
ls.add(t); |
|
|
|
|
} |
|
|
|
|
map.put("货物明细", ls); |
|
|
|
|
|
|
|
|
|
// 增加合计
|
|
|
|
|
map.put("合计件数",sumNumber); |
|
|
|
|
map.put("合计重量",formatToTwoDecimalPlaces(sumWEIGHT)); |
|
|
|
|
map.put("合计体积",formatToTwoDecimalPlaces(sumVOLUME)); |
|
|
|
|
|
|
|
|
|
map.put("合计件数", sumNumber); |
|
|
|
|
map.put("合计重量", formatToTwoDecimalPlaces(sumWEIGHT)); |
|
|
|
|
map.put("合计体积", formatToTwoDecimalPlaces(sumVOLUME)); |
|
|
|
|
map.put("t", total+1); |
|
|
|
|
map.put("n", num+1); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String popHtml = TemplateUtil.popTemplate("运单", map, html); |
|
|
|
@ -990,7 +998,7 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private String formatToTwoDecimalPlaces(BigDecimal value) { |
|
|
|
|
if(ObjectUtil.isNull(value)){ |
|
|
|
|
if (ObjectUtil.isNull(value)) { |
|
|
|
|
return ""; |
|
|
|
|
} |
|
|
|
|
return value.setScale(2, RoundingMode.HALF_UP).toString(); |
|
|
|
|