From f950417180d4219df1f0400e3cd52d04473e62b1 Mon Sep 17 00:00:00 2001 From: zhaoqiaobo <583671871@qq.com> Date: Thu, 13 Mar 2025 14:19:36 +0800 Subject: [PATCH 01/22] =?UTF-8?q?feat(all):=20=E4=BB=B7=E6=A0=BC=E4=BD=93?= =?UTF-8?q?=E7=B3=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1 调整导出逻辑-根据模版增加导出限制 --- .../impl/BasicdataPriceServiceImpl.java | 1534 ++++++----------- 1 file changed, 568 insertions(+), 966 deletions(-) diff --git a/blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataPriceServiceImpl.java b/blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataPriceServiceImpl.java index 6b22adc7a..9898d9251 100644 --- a/blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataPriceServiceImpl.java +++ b/blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataPriceServiceImpl.java @@ -543,7 +543,26 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl priceIdSet = new HashSet<>(); Map basicdataPricePageV2VOMap = new HashMap<>(); + List templateIds = records.stream().filter(item -> StrUtil.isNotEmpty(item.getTemplateId())).map(item -> { + return Convert.toLong(item.getTemplateId()); + }).collect(Collectors.toList()); + Map templateEntityMap = new HashMap<>(); + if (CollUtil.isNotEmpty(templateIds)) { + List basicdataPriceTemplateEntities = templateService.listByIds(templateIds); + if (CollUtil.isNotEmpty(basicdataPriceTemplateEntities)) { + for (BasicdataPriceTemplateEntity basicdataPriceTemplateEntity : basicdataPriceTemplateEntities) { + templateEntityMap.put(basicdataPriceTemplateEntity.getId(), basicdataPriceTemplateEntity); + } + } + } + Map priceTemplateEntityMap = new HashMap<>(); for (BasicdataPricePageV2VO pricePageV2VO : records) { + String templateId = pricePageV2VO.getTemplateId(); + Long templateIdLong = Convert.toLong(templateId); + String id = pricePageV2VO.getId(); + if (templateEntityMap.containsKey(templateIdLong)) { + priceTemplateEntityMap.put(id, templateEntityMap.get(templateIdLong)); + } BasicdataPriceV3Excel basicdataPriceV3Excel = new BasicdataPriceV3Excel(); basicdataPriceV3Excel.setBrand(pricePageV2VO.getBrandName()); basicdataPriceV3Excel.setClient(pricePageV2VO.getClientName()); @@ -576,6 +595,8 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl routeEntities = basicdataPriceRouteService.list(Wrappers.lambdaQuery().in(BasicdataPriceRouteEntity::getPriceId, priceIdSet)); if (CollUtil.isNotEmpty(routeEntities)) { for (BasicdataPriceRouteEntity routeEntity : routeEntities) { + Long priceId = routeEntity.getPriceId(); + // 模版配置 是否有干线和提货 提货干线是否统一区域计费 priceRouteEntityMap.put(routeEntity.getId(), routeEntity); } } @@ -975,6 +996,8 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl routeCategoryBaseList = basicEntities.stream() - // .filter(item -> !StrUtil.equals(Convert.toStr(item.getBoId()), Convert.toStr(item.getPriceId()))) - // .filter(item -> ObjectUtil.isNotEmpty(item.getCategoryId())) - // .collect(Collectors.toList()); - // // 提货干线 有路径 + 有品类 - // List categoryBaseList = basicEntities.stream() - // .filter(item -> !StrUtil.equals(Convert.toStr(item.getBoId()), Convert.toStr(item.getPriceId()))) - // .filter(item -> ObjectUtil.isNotEmpty(item.getCategoryId())) - // .collect(Collectors.toList()); - // - // - // Map> priceFullMap = basicEntities.stream().collect(Collectors.groupingBy(BasicdataPriceCategoryBasicEntity::getPriceId)); - // for (Map.Entry> priceFullMapEntry : priceFullMap.entrySet()) { - // Long key = priceFullMapEntry.getKey(); - // List value = priceFullMapEntry.getValue(); - // // 带路径的 - // List collect = value.stream().filter(item -> !StrUtil.equals(Convert.toStr(item.getBoId()), Convert.toStr(item.getPriceId()))).collect(Collectors.toList()); - // if (CollUtil.isNotEmpty(collect)) { - // for (BasicdataPriceCategoryBasicEntity fullVehicleEntity : collect) { - // Long fullVehicleBoId = fullVehicleEntity.getBoId(); - // BasicdataPricePageV2VO pricePageV2VO = null; - // BasicdataPriceRouteEntity priceRouteEntity = priceRouteEntityMap.get(fullVehicleBoId); - // Long priceId = priceRouteEntity.getPriceId(); - // pricePageV2VO = basicdataPricePageV2VOMap.get(priceId); - // String clientName = pricePageV2VO.getClientName(); - // String brandName = pricePageV2VO.getBrandName(); - // String startProvince = regionMap.get(Convert.toStr(priceRouteEntity.getStartProvinceId())); - // String startCity = regionMap.get(Convert.toStr(priceRouteEntity.getStartCityId())); - // String startCounty = regionMap.get(Convert.toStr(priceRouteEntity.getStartCountyId())); - // String endProvince = regionMap.get(Convert.toStr(priceRouteEntity.getEndProvinceId())); - // String endCity = regionMap.get(Convert.toStr(priceRouteEntity.getEndCityId())); - // String endCounty = regionMap.get(Convert.toStr(priceRouteEntity.getEndCountyId())); - // String sendOrg = clientMap.get(priceRouteEntity.getSendOrgId()); - // Long categoryId = fullVehicleEntity.getCategoryId(); - // String categoryIdStr = Convert.toStr(ObjectUtil.isNotEmpty(categoryId) ? categoryId : ""); - // String effectiveTime = DateUtil.formatDate(pricePageV2VO.getEffectiveTime()); - // String onlyKey = Convert.toStr(clientName) + Convert.toStr(brandName) + Convert.toStr(effectiveTime) + categoryIdStr + Convert.toStr(startProvince) + Convert.toStr(startCity) + Convert.toStr(startCounty) - // + Convert.toStr(endProvince) + Convert.toStr(endCity) + Convert.toStr(endCounty) + Convert.toStr(sendOrg); - // BasicdataPriceCategoryV2Excel fullVehicleV2Excel = null; - // if (categoryV2ExcelMap.containsKey(onlyKey)) { - // fullVehicleV2Excel = categoryV2ExcelMap.get(onlyKey); - // } else { - // fullVehicleV2Excel = new BasicdataPriceCategoryV2Excel(); - // // 路径 - // fullVehicleV2Excel.setStartProvince(startProvince); - // fullVehicleV2Excel.setStartCity(startCity); - // fullVehicleV2Excel.setStartArea(startCounty); - // fullVehicleV2Excel.setEndProvince(endProvince); - // fullVehicleV2Excel.setEndCity(endCity); - // fullVehicleV2Excel.setEndArea(endCounty); - // fullVehicleV2Excel.setSendOrg(sendOrg); - // fullVehicleV2Excel.setCategory(categoryEntityMap.get(categoryIdStr)); - // if (ObjectUtil.isNotEmpty(pricePageV2VO)) { - // fullVehicleV2Excel.setClient(clientName); - // fullVehicleV2Excel.setBrand(brandName); - // fullVehicleV2Excel.setEffectiveTime(effectiveTime); - // fullVehicleV2Excel.setEffectiveStatus(pricePageV2VO.getEffectiveStatus()); - // } - // categoryV2ExcelMap.put(onlyKey, fullVehicleV2Excel); - // fullVehicleV2ExcelSet.add(clientName + brandName + Convert.toStr(effectiveTime)); - // } - // Integer type = fullVehicleEntity.getType(); - // String typeStr = ""; - // if (ObjectUtil.isNotEmpty(type)) { - // if (type == 1) { - // typeStr = "按件"; - // } else if (type == 3) { - // typeStr = "按方"; - // } else if (type == 4) { - // typeStr = "按重量"; - // } - // } - // Integer serviceType = fullVehicleEntity.getServiceType(); - // Double price = fullVehicleEntity.getPrice(); - // String priceStr = Convert.toStr(price); - // if (ObjectUtil.isNotEmpty(serviceType)) { - // if (serviceType == 1) { - // fullVehicleV2Excel.setPickupUnit(typeStr); - // fullVehicleV2Excel.setPickupPrice(priceStr); - // } else if (serviceType == 2) { - // fullVehicleV2Excel.setTrunkLineUnit(typeStr); - // fullVehicleV2Excel.setTrunkLinePrice(priceStr); - // } - // } - // } - // } - // // 不带路径的情况下 将数据分摊到每条数据中,不包含的情况下 则单独一行数据处理 - // List collect1 = value.stream().filter(item -> StrUtil.equals(Convert.toStr(item.getBoId()), Convert.toStr(item.getPriceId()))).collect(Collectors.toList()); - // if (CollUtil.isNotEmpty(collect1)) { - // for (BasicdataPriceCategoryBasicEntity basicdataPriceFullVehicleEntity : collect1) { - // Long priceId = basicdataPriceFullVehicleEntity.getPriceId(); - // BasicdataPricePageV2VO pricePageV2VO = basicdataPricePageV2VOMap.get(priceId); - // String clientName = pricePageV2VO.getClientName(); - // String brandName = pricePageV2VO.getBrandName(); - // Long categoryId = basicdataPriceFullVehicleEntity.getCategoryId(); - // String categoryIdStr = Convert.toStr(ObjectUtil.isNotEmpty(categoryId) ? categoryId : ""); - // String effectiveTime = DateUtil.formatDate(pricePageV2VO.getEffectiveTime()); - // String checkKey = clientName + brandName + Convert.toStr(effectiveTime); - // String checkKey1 = clientName + brandName + Convert.toStr(effectiveTime) + categoryIdStr; - // if (fullVehicleV2ExcelSet.contains(checkKey)) { - // if (CollUtil.isNotEmpty(categoryV2ExcelMap)) { - // for (Map.Entry priceFullVehicleEntity : categoryV2ExcelMap.entrySet()) { - // String key1 = priceFullVehicleEntity.getKey(); - // BasicdataPriceCategoryV2Excel value1 = priceFullVehicleEntity.getValue(); - // if (key1.contains(checkKey1)) { - // // 存在 - // Integer type = basicdataPriceFullVehicleEntity.getType(); - // String typeStr = ""; - // if (ObjectUtil.isNotEmpty(type)) { - // if (type == 1) { - // typeStr = "按件"; - // } else if (type == 3) { - // typeStr = "按方"; - // } else if (type == 4) { - // typeStr = "按重量"; - // } - // } - // Integer serviceType = basicdataPriceFullVehicleEntity.getServiceType(); - // Double price = basicdataPriceFullVehicleEntity.getPrice(); - // String priceStr = Convert.toStr(price); - // if (ObjectUtil.isNotEmpty(serviceType)) { - // if (serviceType == 1) { - // value1.setPickupUnit(typeStr); - // value1.setPickupPrice(priceStr); - // } else if (serviceType == 2) { - // value1.setTrunkLineUnit(typeStr); - // value1.setTrunkLinePrice(priceStr); - // } - // } - // } - // } - // } - // } else { - // // 不存在 - // BasicdataPriceCategoryV2Excel fullVehicleV2Excel = null; - // if (categoryV2ExcelMap.containsKey(checkKey1)) { - // fullVehicleV2Excel = categoryV2ExcelMap.get(checkKey1); - // } else { - // fullVehicleV2Excel = new BasicdataPriceCategoryV2Excel(); - // fullVehicleV2Excel.setCategory(categoryEntityMap.get(categoryIdStr)); - // if (ObjectUtil.isNotEmpty(pricePageV2VO)) { - // fullVehicleV2Excel.setClient(pricePageV2VO.getClientName()); - // fullVehicleV2Excel.setBrand(pricePageV2VO.getBrandName()); - // fullVehicleV2Excel.setEffectiveTime(effectiveTime); - // fullVehicleV2Excel.setEffectiveStatus(pricePageV2VO.getEffectiveStatus()); - // } - // categoryV2ExcelMap.put(checkKey1, fullVehicleV2Excel); - // } - // Integer type = basicdataPriceFullVehicleEntity.getType(); - // String typeStr = ""; - // if (ObjectUtil.isNotEmpty(type)) { - // if (type == 1) { - // typeStr = "按件"; - // } else if (type == 3) { - // typeStr = "按方"; - // } else if (type == 4) { - // typeStr = "按重量"; - // } - // } - // Integer serviceType = basicdataPriceFullVehicleEntity.getServiceType(); - // Double price = basicdataPriceFullVehicleEntity.getPrice(); - // String priceStr = Convert.toStr(price); - // if (ObjectUtil.isNotEmpty(serviceType)) { - // if (serviceType == 1) { - // fullVehicleV2Excel.setPickupUnit(typeStr); - // fullVehicleV2Excel.setPickupPrice(priceStr); - // } else if (serviceType == 2) { - // fullVehicleV2Excel.setTrunkLineUnit(typeStr); - // fullVehicleV2Excel.setTrunkLinePrice(priceStr); - // } - // } - // } - // } - // } - // } - // } - // - // if (CollUtil.isNotEmpty(warehouseEntities)) { - // // 业务id + 类型 + 车型 = 一条数据 - // Map> priceFullMap = warehouseEntities.stream().collect(Collectors.groupingBy(BasicdataPriceCategoryWarehouseEntity::getPriceId)); - // for (Map.Entry> priceFullMapEntry : priceFullMap.entrySet()) { - // Long key = priceFullMapEntry.getKey(); - // List value = priceFullMapEntry.getValue(); - // // 带路径的 - // List collect = value.stream().filter(item -> !StrUtil.equals(Convert.toStr(item.getBoId()), Convert.toStr(item.getPriceId()))).collect(Collectors.toList()); - // if (CollUtil.isNotEmpty(collect)) { - // for (BasicdataPriceCategoryWarehouseEntity fullVehicleEntity : collect) { - // Long fullVehicleBoId = fullVehicleEntity.getBoId(); - // BasicdataPricePageV2VO pricePageV2VO = null; - // BasicdataPriceRouteEntity priceRouteEntity = priceRouteEntityMap.get(fullVehicleBoId); - // Long priceId = priceRouteEntity.getPriceId(); - // pricePageV2VO = basicdataPricePageV2VOMap.get(priceId); - // String clientName = pricePageV2VO.getClientName(); - // String brandName = pricePageV2VO.getBrandName(); - // String startProvince = regionMap.get(Convert.toStr(priceRouteEntity.getStartProvinceId())); - // String startCity = regionMap.get(Convert.toStr(priceRouteEntity.getStartCityId())); - // String startCounty = regionMap.get(Convert.toStr(priceRouteEntity.getStartCountyId())); - // String endProvince = regionMap.get(Convert.toStr(priceRouteEntity.getEndProvinceId())); - // String endCity = regionMap.get(Convert.toStr(priceRouteEntity.getEndCityId())); - // String endCounty = regionMap.get(Convert.toStr(priceRouteEntity.getEndCountyId())); - // String sendOrg = clientMap.get(priceRouteEntity.getSendOrgId()); - // Long categoryId = fullVehicleEntity.getCategoryId(); - // String categoryIdStr = Convert.toStr(ObjectUtil.isNotEmpty(categoryId) ? categoryId : ""); - // String effectiveTime = DateUtil.formatDate(pricePageV2VO.getEffectiveTime()); - // String onlyKey = Convert.toStr(clientName) + Convert.toStr(brandName) + Convert.toStr(effectiveTime) + categoryIdStr + Convert.toStr(startProvince) + Convert.toStr(startCity) + Convert.toStr(startCounty) - // + Convert.toStr(endProvince) + Convert.toStr(endCity) + Convert.toStr(endCounty) + Convert.toStr(sendOrg); - // BasicdataPriceCategoryV2Excel fullVehicleV2Excel = null; - // if (categoryV2ExcelMap.containsKey(onlyKey)) { - // fullVehicleV2Excel = categoryV2ExcelMap.get(onlyKey); - // } else { - // fullVehicleV2Excel = new BasicdataPriceCategoryV2Excel(); - // // 路径 - // fullVehicleV2Excel.setStartProvince(startProvince); - // fullVehicleV2Excel.setStartCity(startCity); - // fullVehicleV2Excel.setStartArea(startCounty); - // fullVehicleV2Excel.setEndProvince(endProvince); - // fullVehicleV2Excel.setEndCity(endCity); - // fullVehicleV2Excel.setEndArea(endCounty); - // fullVehicleV2Excel.setSendOrg(sendOrg); - // fullVehicleV2Excel.setCategory(categoryEntityMap.get(categoryIdStr)); - // if (ObjectUtil.isNotEmpty(pricePageV2VO)) { - // fullVehicleV2Excel.setClient(clientName); - // fullVehicleV2Excel.setBrand(brandName); - // fullVehicleV2Excel.setEffectiveTime(effectiveTime); - // fullVehicleV2Excel.setEffectiveStatus(pricePageV2VO.getEffectiveStatus()); - // } - // categoryV2ExcelMap.put(onlyKey, fullVehicleV2Excel); - // fullVehicleV2ExcelSet.add(clientName + brandName + Convert.toStr(effectiveTime)); - // } - // Integer costType = fullVehicleEntity.getCostType(); - // Double withinThirtyPrice = fullVehicleEntity.getWithinThirtyPrice(); - // String withinThirtyPriceStr = Convert.toStr(withinThirtyPrice); - // Double betweenThirtySixtyPrice = fullVehicleEntity.getBetweenThirtySixtyPrice(); - // String betweenThirtySixtyPriceStr = Convert.toStr(betweenThirtySixtyPrice); - // Double beyondSixtyPrice = fullVehicleEntity.getBeyondSixtyPrice(); - // String beyondSixtyPriceStr = Convert.toStr(beyondSixtyPrice); - // Double beyondNinetyPrice = fullVehicleEntity.getBeyondNinetyPrice(); - // String beyondNinetyPriceStr = Convert.toStr(beyondNinetyPrice); - // Double operatePrice = fullVehicleEntity.getOperatePrice(); - // String operatePriceStr = Convert.toStr(operatePrice); - // Double warehouseManagementPrice = fullVehicleEntity.getWarehouseManagementPrice(); - // String warehouseManagementPriceStr = Convert.toStr(warehouseManagementPrice); - // Double warehouseSortPrice = fullVehicleEntity.getWarehouseSortPrice(); - // String warehouseSortPriceStr = Convert.toStr(warehouseSortPrice); - // if (ObjectUtil.isNotEmpty(costType)) { - // if (costType == 1) { - // fullVehicleV2Excel.setWithinThirtyPrice(withinThirtyPriceStr); - // fullVehicleV2Excel.setBetweenThirtySixtyPrice(betweenThirtySixtyPriceStr); - // fullVehicleV2Excel.setBeyondSixtyPrice(beyondSixtyPriceStr); - // fullVehicleV2Excel.setBeyondNinetyPrice(beyondNinetyPriceStr); - // } else if (costType == 2) { - // fullVehicleV2Excel.setWarehouseOperatePrice(operatePriceStr); - // fullVehicleV2Excel.setWarehouseManagementPrice(warehouseManagementPriceStr); - // fullVehicleV2Excel.setWarehouseSortPrice(warehouseSortPriceStr); - // } - // } - // } - // } - // // 不带路径的情况下 将数据分摊到每条数据中,不包含的情况下 则单独一行数据处理 - // List collect1 = value.stream().filter(item -> StrUtil.equals(Convert.toStr(item.getBoId()), Convert.toStr(item.getPriceId()))).collect(Collectors.toList()); - // if (CollUtil.isNotEmpty(collect1)) { - // for (BasicdataPriceCategoryWarehouseEntity basicdataPriceFullVehicleEntity : collect1) { - // Long priceId = basicdataPriceFullVehicleEntity.getPriceId(); - // BasicdataPricePageV2VO pricePageV2VO = basicdataPricePageV2VOMap.get(priceId); - // String clientName = pricePageV2VO.getClientName(); - // String brandName = pricePageV2VO.getBrandName(); - // Long categoryId = basicdataPriceFullVehicleEntity.getCategoryId(); - // String categoryIdStr = Convert.toStr(ObjectUtil.isNotEmpty(categoryId) ? categoryId : ""); - // String effectiveTime = DateUtil.formatDate(pricePageV2VO.getEffectiveTime()); - // String checkKey = clientName + brandName + Convert.toStr(effectiveTime); - // String checkKey1 = clientName + brandName + Convert.toStr(effectiveTime) + categoryIdStr; - // if (fullVehicleV2ExcelSet.contains(checkKey)) { - // if (CollUtil.isNotEmpty(categoryV2ExcelMap)) { - // for (Map.Entry priceFullVehicleEntity : categoryV2ExcelMap.entrySet()) { - // String key1 = priceFullVehicleEntity.getKey(); - // BasicdataPriceCategoryV2Excel value1 = priceFullVehicleEntity.getValue(); - // if (key1.contains(checkKey1)) { - // // 存在 - // Integer type = basicdataPriceFullVehicleEntity.getType(); - // String typeStr = ""; - // if (ObjectUtil.isNotEmpty(type)) { - // if (type == 1) { - // typeStr = "按件"; - // } else if (type == 3) { - // typeStr = "按方"; - // } else if (type == 4) { - // typeStr = "按重量"; - // } - // } - // Integer costType = basicdataPriceFullVehicleEntity.getCostType(); - // Double withinThirtyPrice = basicdataPriceFullVehicleEntity.getWithinThirtyPrice(); - // String withinThirtyPriceStr = Convert.toStr(withinThirtyPrice); - // Double betweenThirtySixtyPrice = basicdataPriceFullVehicleEntity.getBetweenThirtySixtyPrice(); - // String betweenThirtySixtyPriceStr = Convert.toStr(betweenThirtySixtyPrice); - // Double beyondSixtyPrice = basicdataPriceFullVehicleEntity.getBeyondSixtyPrice(); - // String beyondSixtyPriceStr = Convert.toStr(beyondSixtyPrice); - // Double beyondNinetyPrice = basicdataPriceFullVehicleEntity.getBeyondNinetyPrice(); - // String beyondNinetyPriceStr = Convert.toStr(beyondNinetyPrice); - // Double operatePrice = basicdataPriceFullVehicleEntity.getOperatePrice(); - // String operatePriceStr = Convert.toStr(operatePrice); - // Double warehouseManagementPrice = basicdataPriceFullVehicleEntity.getWarehouseManagementPrice(); - // String warehouseManagementPriceStr = Convert.toStr(warehouseManagementPrice); - // Double warehouseSortPrice = basicdataPriceFullVehicleEntity.getWarehouseSortPrice(); - // String warehouseSortPriceStr = Convert.toStr(warehouseSortPrice); - // if (ObjectUtil.isNotEmpty(costType)) { - // if (costType == 1) { - // value1.setWithinThirtyPrice(withinThirtyPriceStr); - // value1.setBetweenThirtySixtyPrice(betweenThirtySixtyPriceStr); - // value1.setBeyondSixtyPrice(beyondSixtyPriceStr); - // value1.setBeyondNinetyPrice(beyondNinetyPriceStr); - // } else if (costType == 2) { - // value1.setWarehouseOperatePrice(operatePriceStr); - // value1.setWarehouseManagementPrice(warehouseManagementPriceStr); - // value1.setWarehouseSortPrice(warehouseSortPriceStr); - // } - // } - // } - // } - // } - // } else { - // // 不存在 - // BasicdataPriceCategoryV2Excel fullVehicleV2Excel = null; - // if (categoryV2ExcelMap.containsKey(checkKey1)) { - // fullVehicleV2Excel = categoryV2ExcelMap.get(checkKey1); - // } else { - // fullVehicleV2Excel = new BasicdataPriceCategoryV2Excel(); - // fullVehicleV2Excel.setCategory(categoryEntityMap.get(categoryIdStr)); - // if (ObjectUtil.isNotEmpty(pricePageV2VO)) { - // fullVehicleV2Excel.setClient(pricePageV2VO.getClientName()); - // fullVehicleV2Excel.setBrand(pricePageV2VO.getBrandName()); - // fullVehicleV2Excel.setEffectiveTime(effectiveTime); - // fullVehicleV2Excel.setEffectiveStatus(pricePageV2VO.getEffectiveStatus()); - // } - // categoryV2ExcelMap.put(checkKey1, fullVehicleV2Excel); - // } - // Integer costType = basicdataPriceFullVehicleEntity.getCostType(); - // Double withinThirtyPrice = basicdataPriceFullVehicleEntity.getWithinThirtyPrice(); - // String withinThirtyPriceStr = Convert.toStr(withinThirtyPrice); - // Double betweenThirtySixtyPrice = basicdataPriceFullVehicleEntity.getBetweenThirtySixtyPrice(); - // String betweenThirtySixtyPriceStr = Convert.toStr(betweenThirtySixtyPrice); - // Double beyondSixtyPrice = basicdataPriceFullVehicleEntity.getBeyondSixtyPrice(); - // String beyondSixtyPriceStr = Convert.toStr(beyondSixtyPrice); - // Double beyondNinetyPrice = basicdataPriceFullVehicleEntity.getBeyondNinetyPrice(); - // String beyondNinetyPriceStr = Convert.toStr(beyondNinetyPrice); - // Double operatePrice = basicdataPriceFullVehicleEntity.getOperatePrice(); - // String operatePriceStr = Convert.toStr(operatePrice); - // Double warehouseManagementPrice = basicdataPriceFullVehicleEntity.getWarehouseManagementPrice(); - // String warehouseManagementPriceStr = Convert.toStr(warehouseManagementPrice); - // Double warehouseSortPrice = basicdataPriceFullVehicleEntity.getWarehouseSortPrice(); - // String warehouseSortPriceStr = Convert.toStr(warehouseSortPrice); - // if (ObjectUtil.isNotEmpty(costType)) { - // if (costType == 1) { - // fullVehicleV2Excel.setWithinThirtyPrice(withinThirtyPriceStr); - // fullVehicleV2Excel.setBetweenThirtySixtyPrice(betweenThirtySixtyPriceStr); - // fullVehicleV2Excel.setBeyondSixtyPrice(beyondSixtyPriceStr); - // fullVehicleV2Excel.setBeyondNinetyPrice(beyondNinetyPriceStr); - // } else if (costType == 2) { - // fullVehicleV2Excel.setWarehouseOperatePrice(operatePriceStr); - // fullVehicleV2Excel.setWarehouseManagementPrice(warehouseManagementPriceStr); - // fullVehicleV2Excel.setWarehouseSortPrice(warehouseSortPriceStr); - // } - // } - // } - // } - // } - // } - // } - // - // - // if (CollUtil.isNotEmpty(dispatchEntities)) { - // Map> priceFullMap = dispatchEntities.stream().collect(Collectors.groupingBy(BasicdataPriceCategoryDispatchEntity::getPriceId)); - // for (Map.Entry> priceFullMapEntry : priceFullMap.entrySet()) { - // Long key = priceFullMapEntry.getKey(); - // List value = priceFullMapEntry.getValue(); - // // 带路径的 - // List collect = value.stream().filter(item -> !StrUtil.equals(Convert.toStr(item.getBoId()), Convert.toStr(item.getPriceId()))).collect(Collectors.toList()); - // if (CollUtil.isNotEmpty(collect)) { - // for (BasicdataPriceCategoryDispatchEntity fullVehicleEntity : collect) { - // Long fullVehicleBoId = fullVehicleEntity.getBoId(); - // BasicdataPricePageV2VO pricePageV2VO = null; - // BasicdataPriceRouteEntity priceRouteEntity = priceRouteEntityMap.get(fullVehicleBoId); - // Long priceId = priceRouteEntity.getPriceId(); - // pricePageV2VO = basicdataPricePageV2VOMap.get(priceId); - // String clientName = pricePageV2VO.getClientName(); - // String brandName = pricePageV2VO.getBrandName(); - // String startProvince = regionMap.get(Convert.toStr(priceRouteEntity.getStartProvinceId())); - // String startCity = regionMap.get(Convert.toStr(priceRouteEntity.getStartCityId())); - // String startCounty = regionMap.get(Convert.toStr(priceRouteEntity.getStartCountyId())); - // String endProvince = regionMap.get(Convert.toStr(priceRouteEntity.getEndProvinceId())); - // String endCity = regionMap.get(Convert.toStr(priceRouteEntity.getEndCityId())); - // String endCounty = regionMap.get(Convert.toStr(priceRouteEntity.getEndCountyId())); - // String sendOrg = clientMap.get(priceRouteEntity.getSendOrgId()); - // Long categoryId = fullVehicleEntity.getCategoryId(); - // String categoryIdStr = Convert.toStr(ObjectUtil.isNotEmpty(categoryId) ? categoryId : ""); - // String effectiveTime = DateUtil.formatDate(pricePageV2VO.getEffectiveTime()); - // String onlyKey = Convert.toStr(clientName) + Convert.toStr(brandName) + Convert.toStr(effectiveTime) + categoryIdStr + Convert.toStr(startProvince) + Convert.toStr(startCity) + Convert.toStr(startCounty) - // + Convert.toStr(endProvince) + Convert.toStr(endCity) + Convert.toStr(endCounty) + Convert.toStr(sendOrg); - // BasicdataPriceCategoryV2Excel fullVehicleV2Excel = null; - // if (categoryV2ExcelMap.containsKey(onlyKey)) { - // fullVehicleV2Excel = categoryV2ExcelMap.get(onlyKey); - // } else { - // fullVehicleV2Excel = new BasicdataPriceCategoryV2Excel(); - // // 路径 - // fullVehicleV2Excel.setStartProvince(startProvince); - // fullVehicleV2Excel.setStartCity(startCity); - // fullVehicleV2Excel.setStartArea(startCounty); - // fullVehicleV2Excel.setEndProvince(endProvince); - // fullVehicleV2Excel.setEndCity(endCity); - // fullVehicleV2Excel.setEndArea(endCounty); - // fullVehicleV2Excel.setSendOrg(sendOrg); - // fullVehicleV2Excel.setCategory(categoryEntityMap.get(categoryIdStr)); - // if (ObjectUtil.isNotEmpty(pricePageV2VO)) { - // fullVehicleV2Excel.setClient(clientName); - // fullVehicleV2Excel.setBrand(brandName); - // fullVehicleV2Excel.setEffectiveTime(effectiveTime); - // fullVehicleV2Excel.setEffectiveStatus(pricePageV2VO.getEffectiveStatus()); - // } - // categoryV2ExcelMap.put(onlyKey, fullVehicleV2Excel); - // fullVehicleV2ExcelSet.add(clientName + brandName + Convert.toStr(effectiveTime)); - // } - // Integer costType = fullVehicleEntity.getCostType(); - // if (ObjectUtil.isNotEmpty(costType)) { - // if (costType == 1) { - // Double price = fullVehicleEntity.getPrice(); - // String priceStr = Convert.toStr(price); - // Double leaveBehindPrice = fullVehicleEntity.getLeaveBehindPrice(); - // String leaveBehindPriceStr = Convert.toStr(leaveBehindPrice); - // // 1:按件,2:按方,3:按重量,4:按公里,5:按吨公里,6:按吨 - // Integer type = fullVehicleEntity.getType(); - // if (ObjectUtil.isNotEmpty(type)) { - // if (type == 1) { - // fullVehicleV2Excel.setDispatchUnit("按件"); - // } else if (type == 2) { - // fullVehicleV2Excel.setDispatchUnit("按方"); - // } else if (type == 3) { - // fullVehicleV2Excel.setDispatchUnit("按重量"); - // } else if (type == 4) { - // fullVehicleV2Excel.setDispatchUnit("按公里"); - // } else if (type == 5) { - // fullVehicleV2Excel.setDispatchUnit("按吨公里"); - // } else if (type == 6) { - // fullVehicleV2Excel.setDispatchUnit("按吨"); - // } - // } - // fullVehicleV2Excel.setDispatchPrice(priceStr); - // fullVehicleV2Excel.setDispatchLeaveBehindPrice(leaveBehindPriceStr); - // } else if (costType == 2) { - // Double sortPrice = fullVehicleEntity.getSortPrice(); - // String sortPriceStr = Convert.toStr(sortPrice); - // Double handlingPrice = fullVehicleEntity.getHandlingPrice(); - // String handlingPriceStr = Convert.toStr(handlingPrice); - // Double relocationPrice = fullVehicleEntity.getRelocationPrice(); - // String relocationPriceStr = Convert.toStr(relocationPrice); - // Double upstairsDeliveryPrice = fullVehicleEntity.getUpstairsDeliveryPrice(); - // String upstairsDeliveryPriceStr = Convert.toStr(upstairsDeliveryPrice); - // String dispatchStairsCarryingCharge = pricePageV2VO.getDispatchStairsCarryingCharge(); - // fullVehicleV2Excel.setDispatchSortPrice(sortPriceStr); - // fullVehicleV2Excel.setDispatchHandlingPrice(handlingPriceStr); - // fullVehicleV2Excel.setDispatchRelocationPrice(relocationPriceStr); - // fullVehicleV2Excel.setDispatchDeliveryPrice(upstairsDeliveryPriceStr); - // fullVehicleV2Excel.setDispatchStairsCarryingCharge(dispatchStairsCarryingCharge); - // } - // } - // } - // } - // // 不带路径的情况下 将数据分摊到每条数据中,不包含的情况下 则单独一行数据处理 - // List collect1 = value.stream().filter(item -> StrUtil.equals(Convert.toStr(item.getBoId()), Convert.toStr(item.getPriceId()))).collect(Collectors.toList()); - // if (CollUtil.isNotEmpty(collect1)) { - // for (BasicdataPriceCategoryDispatchEntity basicdataPriceFullVehicleEntity : collect1) { - // Long priceId = basicdataPriceFullVehicleEntity.getPriceId(); - // BasicdataPricePageV2VO pricePageV2VO = basicdataPricePageV2VOMap.get(priceId); - // String clientName = pricePageV2VO.getClientName(); - // String brandName = pricePageV2VO.getBrandName(); - // String effectiveTime = DateUtil.formatDate(pricePageV2VO.getEffectiveTime()); - // Long categoryId = basicdataPriceFullVehicleEntity.getCategoryId(); - // String categoryIdStr = Convert.toStr(ObjectUtil.isNotEmpty(categoryId) ? categoryId : ""); - // String checkKey = clientName + brandName + Convert.toStr(effectiveTime); - // String checkKey1 = clientName + brandName + Convert.toStr(effectiveTime) + categoryIdStr; - // if (fullVehicleV2ExcelSet.contains(checkKey)) { - // if (CollUtil.isNotEmpty(categoryV2ExcelMap)) { - // for (Map.Entry priceFullVehicleEntity : categoryV2ExcelMap.entrySet()) { - // String key1 = priceFullVehicleEntity.getKey(); - // BasicdataPriceCategoryV2Excel value1 = priceFullVehicleEntity.getValue(); - // if (key1.contains(checkKey1)) { - // // 存在 - // Integer costType = basicdataPriceFullVehicleEntity.getCostType(); - // if (ObjectUtil.isNotEmpty(costType)) { - // if (costType == 1) { - // Double price = basicdataPriceFullVehicleEntity.getPrice(); - // String priceStr = Convert.toStr(price); - // Double leaveBehindPrice = basicdataPriceFullVehicleEntity.getLeaveBehindPrice(); - // String leaveBehindPriceStr = Convert.toStr(leaveBehindPrice); - // // 1:按件,2:按方,3:按重量,4:按公里,5:按吨公里,6:按吨 - // Integer type = basicdataPriceFullVehicleEntity.getType(); - // if (ObjectUtil.isNotEmpty(type)) { - // if (type == 1) { - // value1.setDispatchUnit("按件"); - // } else if (type == 2) { - // value1.setDispatchUnit("按方"); - // } else if (type == 3) { - // value1.setDispatchUnit("按重量"); - // } else if (type == 4) { - // value1.setDispatchUnit("按公里"); - // } else if (type == 5) { - // value1.setDispatchUnit("按吨公里"); - // } else if (type == 6) { - // value1.setDispatchUnit("按吨"); - // } - // } - // value1.setDispatchPrice(priceStr); - // value1.setDispatchLeaveBehindPrice(leaveBehindPriceStr); - // } else if (costType == 2) { - // Double sortPrice = basicdataPriceFullVehicleEntity.getSortPrice(); - // String sortPriceStr = Convert.toStr(sortPrice); - // Double handlingPrice = basicdataPriceFullVehicleEntity.getHandlingPrice(); - // String handlingPriceStr = Convert.toStr(handlingPrice); - // Double relocationPrice = basicdataPriceFullVehicleEntity.getRelocationPrice(); - // String relocationPriceStr = Convert.toStr(relocationPrice); - // Double upstairsDeliveryPrice = basicdataPriceFullVehicleEntity.getUpstairsDeliveryPrice(); - // String upstairsDeliveryPriceStr = Convert.toStr(upstairsDeliveryPrice); - // String dispatchStairsCarryingCharge = pricePageV2VO.getDispatchStairsCarryingCharge(); - // value1.setDispatchSortPrice(sortPriceStr); - // value1.setDispatchHandlingPrice(handlingPriceStr); - // value1.setDispatchRelocationPrice(relocationPriceStr); - // value1.setDispatchDeliveryPrice(upstairsDeliveryPriceStr); - // value1.setDispatchStairsCarryingCharge(dispatchStairsCarryingCharge); - // } - // } - // } - // } - // } - // } else { - // // 不存在 - // BasicdataPriceCategoryV2Excel fullVehicleV2Excel = null; - // if (categoryV2ExcelMap.containsKey(checkKey1)) { - // fullVehicleV2Excel = categoryV2ExcelMap.get(checkKey1); - // } else { - // fullVehicleV2Excel = new BasicdataPriceCategoryV2Excel(); - // fullVehicleV2Excel.setCategory(categoryEntityMap.get(categoryIdStr)); - // if (ObjectUtil.isNotEmpty(pricePageV2VO)) { - // fullVehicleV2Excel.setClient(pricePageV2VO.getClientName()); - // fullVehicleV2Excel.setBrand(pricePageV2VO.getBrandName()); - // fullVehicleV2Excel.setEffectiveTime(effectiveTime); - // fullVehicleV2Excel.setEffectiveStatus(pricePageV2VO.getEffectiveStatus()); - // } - // categoryV2ExcelMap.put(checkKey1, fullVehicleV2Excel); - // } - // Integer costType = basicdataPriceFullVehicleEntity.getCostType(); - // if (ObjectUtil.isNotEmpty(costType)) { - // if (costType == 1) { - // Double price = basicdataPriceFullVehicleEntity.getPrice(); - // String priceStr = Convert.toStr(price); - // Double leaveBehindPrice = basicdataPriceFullVehicleEntity.getLeaveBehindPrice(); - // String leaveBehindPriceStr = Convert.toStr(leaveBehindPrice); - // // 1:按件,2:按方,3:按重量,4:按公里,5:按吨公里,6:按吨 - // Integer type = basicdataPriceFullVehicleEntity.getType(); - // if (ObjectUtil.isNotEmpty(type)) { - // if (type == 1) { - // fullVehicleV2Excel.setDispatchUnit("按件"); - // } else if (type == 2) { - // fullVehicleV2Excel.setDispatchUnit("按方"); - // } else if (type == 3) { - // fullVehicleV2Excel.setDispatchUnit("按重量"); - // } else if (type == 4) { - // fullVehicleV2Excel.setDispatchUnit("按公里"); - // } else if (type == 5) { - // fullVehicleV2Excel.setDispatchUnit("按吨公里"); - // } else if (type == 6) { - // fullVehicleV2Excel.setDispatchUnit("按吨"); - // } - // } - // fullVehicleV2Excel.setDispatchPrice(priceStr); - // fullVehicleV2Excel.setDispatchLeaveBehindPrice(leaveBehindPriceStr); - // } else if (costType == 2) { - // Double sortPrice = basicdataPriceFullVehicleEntity.getSortPrice(); - // String sortPriceStr = Convert.toStr(sortPrice); - // Double handlingPrice = basicdataPriceFullVehicleEntity.getHandlingPrice(); - // String handlingPriceStr = Convert.toStr(handlingPrice); - // Double relocationPrice = basicdataPriceFullVehicleEntity.getRelocationPrice(); - // String relocationPriceStr = Convert.toStr(relocationPrice); - // Double upstairsDeliveryPrice = basicdataPriceFullVehicleEntity.getUpstairsDeliveryPrice(); - // String upstairsDeliveryPriceStr = Convert.toStr(upstairsDeliveryPrice); - // String dispatchStairsCarryingCharge = pricePageV2VO.getDispatchStairsCarryingCharge(); - // fullVehicleV2Excel.setDispatchSortPrice(sortPriceStr); - // fullVehicleV2Excel.setDispatchHandlingPrice(handlingPriceStr); - // fullVehicleV2Excel.setDispatchRelocationPrice(relocationPriceStr); - // fullVehicleV2Excel.setDispatchDeliveryPrice(upstairsDeliveryPriceStr); - // fullVehicleV2Excel.setDispatchStairsCarryingCharge(dispatchStairsCarryingCharge); - // } - // } - // } - // } - // } - // } - // } - if (CollUtil.isNotEmpty(categoryV2ExcelMap)) { Collection values = categoryV2ExcelMap.values(); if (CollUtil.isNotEmpty(values)) { @@ -3080,7 +2682,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl routeEntities = basicdataPriceRouteService.list(wrapper); // 如果到区没有查到价格,就到市 if (CollUtil.isEmpty(routeEntities) && ObjectUtil.isNotEmpty(param.getEndCountyId())) { - LambdaQueryWrapper wrapper1= Wrappers.lambdaQuery() + LambdaQueryWrapper wrapper1 = Wrappers.lambdaQuery() .eq(BasicdataPriceRouteEntity::getPriceId, priceEntity.getId()) .eq(BasicdataPriceRouteEntity::getSendOrgId, param.getSendOrgId()) .eq(BasicdataPriceRouteEntity::getStartProvinceId, param.getStartProvinceId()) @@ -3121,7 +2723,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl routeEntities = basicdataPriceRouteService.list(wrapper); if (CollUtil.isEmpty(routeEntities) && ObjectUtil.isNotEmpty(param.getEndCountyId())) { - LambdaQueryWrapper wrapper1= Wrappers.lambdaQuery() + LambdaQueryWrapper wrapper1 = Wrappers.lambdaQuery() .eq(BasicdataPriceRouteEntity::getPriceId, priceEntity.getId()) .eq(BasicdataPriceRouteEntity::getSendOrgId, param.getSendOrgId()) .eq(BasicdataPriceRouteEntity::getStartProvinceId, param.getStartProvinceId()) From 6cb4bff9705f127ef8e2551f8efde5596f846bca Mon Sep 17 00:00:00 2001 From: zhaoqiaobo <583671871@qq.com> Date: Thu, 13 Mar 2025 17:36:03 +0800 Subject: [PATCH 02/22] =?UTF-8?q?feat(all):=20=E6=8F=90=E8=B4=A7=E6=97=B6?= =?UTF-8?q?=E6=95=88=E6=8A=A5=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1 修改提货时效报表逻辑 --- .../report/mapper/TrunklinePickupMapper.xml | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml index 2efefabb2..681a1e97a 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml @@ -25,30 +25,30 @@ count(distinct ltb.billlading_code) pickupTruckCount, ifnull(sum(ltb.plan_num), '0') totalPickupItemCount, ifnull(sum(ltb.real_num), '0') pickedUpItemCount, - CASE + concat(CASE WHEN SUM(ltb.plan_num) = 0 THEN '0' ELSE ifnull(TRIM(TRAILING '.00' FROM FORMAT(ROUND(SUM(ltb.real_num) * 100.0 / SUM(ltb.plan_num), 2), 2)), '0') - END AS pickupRate, + END,'%') AS pickupRate, ifnull(sum(tt.num), '0') scannedPickupItemCount, - CASE + concat(CASE WHEN SUM(ltb.real_num) = 0 THEN '0' ELSE ifnull(TRIM(TRAILING '.00' FROM FORMAT(ROUND(SUM(tt.num) * 100.0 / SUM(ltb.real_num), 2), 2)), '0') - END AS scanRate, - ifnull(SUM(ttt.num), '0') batchPickupItemCount, - CASE - WHEN SUM(ltb.real_num) = 0 THEN '0' - ELSE ifnull(TRIM(TRAILING '.00' FROM FORMAT(ROUND(SUM(ttt.num) * 100.0 / SUM(ltb.real_num), 2), 2)), '0') - END AS batchPickupRate, + END,'%') AS scanRate, + (ifnull(sum(ltb.real_num), 0) - ifnull(sum(tt.num), 0)) batchPickupItemCount, + case + when sum(ltb.real_num) = 0 then '0' + else ifnull(TRIM(TRAILING '.00' from FORMAT(ROUND((ifnull(sum(ltb.real_num), 0) - ifnull(sum(tt.num), 0)) * 100.0 / sum(ltb.real_num), 2), 2)), + '0') end as batchPickupRate, ifnull(sum(com.num), 0) completedPickupCount, ifnull(sum(com.wcwcs), 0) qualifiedPickupCountWithin, ifnull(sum(nocom.wwccs), 0) overdueIncompleteCount, ifnull(sum(com.wccs), 0) overdueCompletedCount, ifnull(avg(com.zq), 0) averagePickupCycle, - CASE + concat(CASE WHEN SUM(com.num) = 0 THEN '0' ELSE ifnull(TRIM(TRAILING '.00' FROM FORMAT(ROUND(SUM(com.wcwcs) * 100.0 / SUM(com.num), 2), 2)), '0') - END AS qualifiedPickupRate + END,'%') AS qualifiedPickupRate from logpm_trunkline_billlading ltb left join logpm_warehouse_warehouse lww on lww.id = ltb.warehouse_id left join (select t.billlading_id, count(*) num @@ -186,10 +186,10 @@ and ltb.warehouse_name = #{query.warehouseName} - and ltb.create_time >= #{query.pickupStartTimeStart} + and ltb.start_time >= #{query.pickupStartTimeStart} - and ltb.create_time <= #{query.pickupStartTimeEnd} + and ltb.start_time <= #{query.pickupStartTimeEnd} and ltb.end_time >= #{query.pickupEndTimeStart} @@ -261,11 +261,11 @@ ifnull(sum(t.orderNum),0) orderNum, ifnull(sum(t.num),0) num, ifnull(sum(tt.signNum),0) signNum, - case when ifnull(sum(t.num),0) = 0 then 0 else round(ifnull(sum(tt.signNum),0)/ifnull(sum(t.num),0)) end signRate, - case when ifnull(sum(tt.signNum),0) = 0 then 0 else round(ifnull(sum(tt.batchNum),0)/ifnull(sum(tt.signNum),0)) end batchRate, + concat(case when ifnull(sum(t.num),0) = 0 then 0 else round(ifnull(sum(tt.signNum),0)/ifnull(sum(t.num),0)) end,'%') signRate, + concat(case when ifnull(sum(tt.signNum),0) = 0 then 0 else round(ifnull(sum(tt.batchNum),0)/ifnull(sum(tt.signNum),0)) end,'%') batchRate, ifnull(sum(tt.batchNum),0) batchNum, ifnull(sum(tt.hgNum),0) signOnTimeNum, - case when ifnull(sum(t.num),0) = 0 then 0 else round(ifnull(sum(tt.hgNum),0)/ifnull(sum(t.num),0)) end signOnTimeRate + concat(case when ifnull(sum(t.num),0) = 0 then 0 else round(ifnull(sum(tt.hgNum),0)/ifnull(sum(t.num),0)) end,'%') signOnTimeRate from (select lww.business_line, t.warehouse, t.brand_name, case when ifnull(lbc.type_service,1) = 1 then '商配' when ifnull(lbc.type_service,1) = 2 then '市配' From b8cb9393c128c8c5c24455846fe5ee7056459881 Mon Sep 17 00:00:00 2001 From: zhaoqiaobo <583671871@qq.com> Date: Thu, 13 Mar 2025 17:52:35 +0800 Subject: [PATCH 03/22] =?UTF-8?q?feat(all):=20=E6=8F=90=E8=B4=A7=E6=97=B6?= =?UTF-8?q?=E6=95=88=E6=8A=A5=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1 修改提货时效报表逻辑 --- .../java/com/logpm/report/mapper/TrunklinePickupMapper.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml index 681a1e97a..637c63d01 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml @@ -278,7 +278,7 @@ left join logpm_basicdata_client lbc on lbc.client_name = lww1.consignee and lbc.is_deleted = 0 left join logpm_warehouse_warehouse lww on lww.id = t.warehouse_id where t.warehouse_entry_time_end >= #{query.startCreateTime} and t.warehouse_entry_time_end <= #{query.endCreateTime} - and t.is_transfer = 0 + and t.is_transfer = 0 and lbc.type_service != 2 and lww.business_line in @@ -338,7 +338,7 @@ left join logpm_warehouse_waybill lww1 on lww1.waybill_no = t.waybill_number and lww1.is_deleted = 0 left join logpm_basicdata_client lbc on lbc.client_name = lww1.consignee and lbc.is_deleted = 0 where t.end_warehouse_in_time >= #{query.startCreateTime} and t.end_warehouse_in_time <= #{query.endCreateTime} - and t.sign_num is not null + and t.sign_num is not null and lbc.type_service != 2 and t.business_unit in From acc6795d7b6576a850f61bbccfb53590d0773ed5 Mon Sep 17 00:00:00 2001 From: zhaoqiaobo <583671871@qq.com> Date: Fri, 14 Mar 2025 10:45:45 +0800 Subject: [PATCH 04/22] =?UTF-8?q?feat(all):=20=E5=BF=97=E9=82=A6=E5=B7=A5?= =?UTF-8?q?=E5=8E=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1 修改工厂末端仓卸车确认回传逻辑 --- .../zbom/mq/ZbomNodeDataPushListener.java | 20 +++++++++++++++++-- .../impl/TrunklineCarsLoadServiceImpl.java | 2 ++ 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/blade-service/logpm-factory-data/logpm-factory-data-zbom/src/main/java/com/logpm/factorydata/zbom/mq/ZbomNodeDataPushListener.java b/blade-service/logpm-factory-data/logpm-factory-data-zbom/src/main/java/com/logpm/factorydata/zbom/mq/ZbomNodeDataPushListener.java index b3d17eb06..9e0a7ea44 100644 --- a/blade-service/logpm-factory-data/logpm-factory-data-zbom/src/main/java/com/logpm/factorydata/zbom/mq/ZbomNodeDataPushListener.java +++ b/blade-service/logpm-factory-data/logpm-factory-data-zbom/src/main/java/com/logpm/factorydata/zbom/mq/ZbomNodeDataPushListener.java @@ -48,6 +48,7 @@ import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; +import java.util.stream.Collectors; /** * 监听业务系统推送给志邦的节点数据 @@ -113,6 +114,20 @@ public class ZbomNodeDataPushListener { String warehouseName = content.get(0).getStr("warehouseName"); String orderCode = content.get(0).getStr("orderCode"); // 根据运单号和自编码分组查询出对应的数量 + // 末端仓卸车确认 判断包件是否是末端仓,是 推送,不是 跳过 + if (ObjectUtil.equals(workNodeEnums.getCode(), WorkNodeEnums.END_WAREHOUSE_UNLOADING.getCode())) { + content = content.stream().filter(item -> { + String currentWarehouse = item.getStr("warehouseName"); + String destinationWarehouse = item.getStr("destinationWarehouse"); + if (StrUtil.equals(currentWarehouse, destinationWarehouse)) { + return true; + } + return false; + }).collect(Collectors.toList()); + } + if (CollUtil.isEmpty(content)) { + return; + } List orders = orderPackageService.findOrderCodebypackageCodes(content); Map nodeDataMap = new HashMap<>(); if (CollUtil.isNotEmpty(orders)) { @@ -129,7 +144,7 @@ public class ZbomNodeDataPushListener { NodeDataDTO value = stringNodeDataDTOEntry.getValue(); // 卸车入库只发推一次 List list = nodePushService.list(Wrappers.lambdaQuery() - .select(ZbFactoryNodePushEntity::getId) + .select(ZbFactoryNodePushEntity::getId) .eq(ZbFactoryNodePushEntity::getPlatformOrderCode, value.getPlatformOrderCode()) .eq(ZbFactoryNodePushEntity::getWorkNode, node) .eq(ZbFactoryNodePushEntity::getWarehouseName, warehouseName) @@ -161,6 +176,7 @@ public class ZbomNodeDataPushListener { List nodeConfirmLsit = new ArrayList<>(); Map sendMsgMap = new HashMap<>(); // 构建提交参数 + buildParam(entries, node, workNodeEnums, orders, noSignNumberMap, nodeOrderMap, nodeConfirmLsit, sendMsgMap, warehouseName); if (CollUtil.isNotEmpty(nodeConfirmLsit)) { for (NodeConfirmParamDTO nodeConfirmParam : nodeConfirmLsit) { @@ -284,7 +300,7 @@ public class ZbomNodeDataPushListener { if (ObjectUtil.isNotEmpty(nodeOrderEntity.getPushNode()) && !StrUtil.contains(nodeOrderEntity.getPushNode(), ZbomNodeEnums.DELIVERY_ARRIVAL.getIndex().toString())) { // 第一次签收,节点改为送货抵达 currentNode = ZbomNodeEnums.DELIVERY_ARRIVAL; - buildSendMag(sendMsgMap, nodeData, key, paramDTO, node, nodeDelay,warehouseName); + buildSendMag(sendMsgMap, nodeData, key, paramDTO, node, nodeDelay, warehouseName); } else { // 查询当前未签收的数量与当前签收数量比较,如果未签收数较大,则是部分签收 currentNode = ZbomNodeEnums.PARTIAL_RECEIPT; diff --git a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java index b9b3eddd8..5ff7690e6 100644 --- a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java +++ b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java @@ -540,6 +540,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl Date: Fri, 14 Mar 2025 14:30:25 +0800 Subject: [PATCH 05/22] =?UTF-8?q?feat(all):=20=E6=8F=90=E8=B4=A7=E6=97=B6?= =?UTF-8?q?=E6=95=88=E6=8A=A5=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1 修改提货时效报表逻辑 --- .../controller/TrunklinePickupController.java | 16 ++ .../report/mapper/TrunklinePickupMapper.java | 4 + .../report/mapper/TrunklinePickupMapper.xml | 76 ++++++---- .../service/TrunklinePickupService.java | 4 + .../impl/TrunklinePickupServiceImpl.java | 54 +++++++ .../TrunklinePickupEfficiencyCostVO.java | 141 ++++++++++++++++++ 6 files changed, 264 insertions(+), 31 deletions(-) create mode 100644 blade-service/logpm-report/src/main/java/com/logpm/report/vo/trunklinebillloading/TrunklinePickupEfficiencyCostVO.java diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/controller/TrunklinePickupController.java b/blade-service/logpm-report/src/main/java/com/logpm/report/controller/TrunklinePickupController.java index 1b4e54208..0f389e827 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/controller/TrunklinePickupController.java +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/controller/TrunklinePickupController.java @@ -8,6 +8,7 @@ import com.logpm.report.query.TrunklinePickupEfficiencyDetailQuery; import com.logpm.report.query.TrunklinePickupEfficiencyQuery; import com.logpm.report.service.TrunklinePickupService; import com.logpm.report.vo.trunklinebillloading.B2BDeliverTimelinessVO; +import com.logpm.report.vo.trunklinebillloading.TrunklinePickupEfficiencyCostVO; import com.logpm.report.vo.trunklinebillloading.TrunklinePickupEfficiencyDetailVO; import com.logpm.report.vo.trunklinebillloading.TrunklinePickupEfficiencyVO; import io.swagger.annotations.Api; @@ -71,6 +72,21 @@ public class TrunklinePickupController { trunklinePickupService.exportEfficiencyDetail(response, query); } + @GetMapping("/efficiencyCost") + @ApiOperationSupport(order = 1) + @ApiOperation(value = "干线成本报表", notes = "干线成本报表") + public R> efficiencyCostPage(TrunklinePickupEfficiencyDetailQuery query) { + IPage pages = trunklinePickupService.efficiencyCostPage(query); + return R.data(pages); + } + + @GetMapping("/exportEfficiencyCost") + @ApiOperationSupport(order = 2) + @ApiOperation(value = "导出干线成本报表", notes = "导出干线成本报表") + public void exportEfficiencyCost(HttpServletResponse response, TrunklinePickupEfficiencyDetailQuery query) { + trunklinePickupService.exportEfficiencyCost(response, query); + } + @GetMapping("/b2BDeliveryTimeliness") @ApiOperationSupport(order = 1) @ApiOperation(value = "2B业务配送时效表", notes = "2B业务配送时效表") diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.java b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.java index a1392acdc..3f026d745 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.java +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.java @@ -7,6 +7,7 @@ import com.logpm.report.query.B2BDeliveryTimelinessQuery; import com.logpm.report.query.TrunklinePickupEfficiencyDetailQuery; import com.logpm.report.query.TrunklinePickupEfficiencyQuery; import com.logpm.report.vo.trunklinebillloading.B2BDeliverTimelinessVO; +import com.logpm.report.vo.trunklinebillloading.TrunklinePickupEfficiencyCostVO; import com.logpm.report.vo.trunklinebillloading.TrunklinePickupEfficiencyDetailVO; import com.logpm.report.vo.trunklinebillloading.TrunklinePickupEfficiencyVO; import org.apache.ibatis.annotations.Mapper; @@ -24,4 +25,7 @@ public interface TrunklinePickupMapper { List efficiencyDetailPage(@Param("page") IPage page, @Param("query") TrunklinePickupEfficiencyDetailQuery query, @Param("qualifieTime") int qualifieTime, @Param("warehouseEntities") List warehouseEntityList); List b2BDeliveryTimelinessPage(@Param("page") IPage page, @Param("query") B2BDeliveryTimelinessQuery query, @Param("qualifieTime") int qualifieTime, @Param("warehouseEntities") List warehouseEntityList); + + List efficiencyCostPage(@Param("page") IPage page, @Param("query") TrunklinePickupEfficiencyDetailQuery query, @Param("qualifieTime") int qualifieTime, @Param("warehouseEntities") List warehouseEntityList); + } diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml index 637c63d01..a36a768a1 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml @@ -110,42 +110,51 @@ + + select ltb.create_time pickupCreateTime, ltb.billlading_code pickupBatch, - ltb.car_number vehicleLicenseNumber, - ltb.driver_name driverName, - ltb.driver_phone driverPhone, - ltb.warehouse_name warehouseName, - ltb.line_name_title routeName, - ltb.start_time pickupStartTime, - ltb.end_time pickupEndTime, - ltb.billlading_status pickupStatus, - ltb.charge_type billingMode, - ltb.total_fee pickupFee, - ltb.remark remarks, - ltb.carrier_name carrier, - count(DISTINCT ltbw.id) orderCount, - ltb.real_num itemQuantity, - ltb.plan_num estimatedItemQuantity, - ltb.real_weight weight, - ltb.plan_weight plannedWeight, - ltb.real_volume volume, - ltb.plan_volume plannedVolume, - ltb.create_user createUserId, - TIMESTAMPDIFF(HOUR, ltb.create_time, ifnull(ltb.end_time,now())) actualPickupDuration, - rpec.time standardPickupDuration, - case - when TIMESTAMPDIFF(HOUR, ltb.create_time, ifnull(ltb.end_time,now())) > rpec.time then '是' - else '否' end pickupTimeout + ltb.car_number vehicleLicenseNumber, + ltb.driver_name driverName, + ltb.driver_phone driverPhone, + ltb.warehouse_name warehouseName, + ltb.line_name_title routeName, + ltb.start_time pickupStartTime, + ltb.end_time pickupEndTime, + ltb.billlading_status pickupStatus, + ltb.charge_type billingMode, + ltb.total_fee pickupFee, + ltb.remark remarks, + ltb.carrier_name carrier, + count(DISTINCT ltbw.id) orderCount, + ltb.real_num itemQuantity, + ltb.plan_num estimatedItemQuantity, + ltb.real_weight weight, + ltb.plan_weight plannedWeight, + ltb.real_volume volume, + ltb.plan_volume plannedVolume, + ltb.create_user createUserId, + TIMESTAMPDIFF(HOUR, ltb.create_time, ifnull(ltb.end_time,now())) actualPickupDuration, + rpec.time standardPickupDuration, + case + when TIMESTAMPDIFF(HOUR, ltb.create_time, ifnull(ltb.end_time,now())) > rpec.time then '是' + else '否' end pickupTimeout, + case when lbda.type = '1' then '自有' when lbda.type = '2' then '加盟' when lbda.type = '3' then '外调' when lbda.type = '4' then '临调' end trainType, + lbcm.vehicle_model settlementType from logpm_trunkline_billlading ltb + left join logpm_basicdata_driver_artery lbda on ltb.driver_id = lbda.id and lbda.is_deleted = 0 + left join logpm_basicdata_vehicle lbv on lbv.vehicle_nub = ltb.car_number and lbv.is_deleted = 0 + left join logpm_basic_car_model lbcm on lbcm.id = lbv.vehicle_model_id and lbcm.is_deleted = 0 left join logpm_warehouse_warehouse lww on lww.id = ltb.warehouse_id - left join logpm_report_pickup_efficiency_config rpec on rpec.type = 1 - left join logpm_trunkline_billlading_line ltbl on ltbl.billlading_id = ltb.id and ltbl.is_deleted = 0 - left join logpm_trunkline_billlading_waybill ltbw - on ltbw.billlading_id = ltb.id and ltbw.waybill_no != '————' + left join logpm_report_pickup_efficiency_config rpec on rpec.type = 1 + left join logpm_trunkline_billlading_line ltbl on ltbl.billlading_id = ltb.id and ltbl.is_deleted = 0 + left join logpm_trunkline_billlading_waybill ltbw + on ltbw.billlading_id = ltb.id and ltbw.waybill_no != '————' where ltb.is_deleted = 0 - and ltb.billlading_status != 5 + and ltb.billlading_status != 5 and lww.business_line in @@ -230,7 +239,7 @@ group by ltb.id order by ltb.create_time desc - + + + diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/service/TrunklinePickupService.java b/blade-service/logpm-report/src/main/java/com/logpm/report/service/TrunklinePickupService.java index 21a33ccd5..ae8485106 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/service/TrunklinePickupService.java +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/service/TrunklinePickupService.java @@ -5,6 +5,7 @@ import com.logpm.report.query.B2BDeliveryTimelinessQuery; import com.logpm.report.query.TrunklinePickupEfficiencyDetailQuery; import com.logpm.report.query.TrunklinePickupEfficiencyQuery; import com.logpm.report.vo.trunklinebillloading.B2BDeliverTimelinessVO; +import com.logpm.report.vo.trunklinebillloading.TrunklinePickupEfficiencyCostVO; import com.logpm.report.vo.trunklinebillloading.TrunklinePickupEfficiencyDetailVO; import com.logpm.report.vo.trunklinebillloading.TrunklinePickupEfficiencyVO; @@ -24,4 +25,7 @@ public interface TrunklinePickupService { void exportB2BDeliveryTimeliness(HttpServletResponse response, B2BDeliveryTimelinessQuery query); + IPage efficiencyCostPage(TrunklinePickupEfficiencyDetailQuery query); + + void exportEfficiencyCost(HttpServletResponse response, TrunklinePickupEfficiencyDetailQuery query); } diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/TrunklinePickupServiceImpl.java b/blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/TrunklinePickupServiceImpl.java index bade3c903..78f12e354 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/TrunklinePickupServiceImpl.java +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/TrunklinePickupServiceImpl.java @@ -13,6 +13,7 @@ import com.logpm.report.query.TrunklinePickupEfficiencyDetailQuery; import com.logpm.report.query.TrunklinePickupEfficiencyQuery; import com.logpm.report.service.TrunklinePickupService; import com.logpm.report.vo.trunklinebillloading.B2BDeliverTimelinessVO; +import com.logpm.report.vo.trunklinebillloading.TrunklinePickupEfficiencyCostVO; import com.logpm.report.vo.trunklinebillloading.TrunklinePickupEfficiencyDetailVO; import com.logpm.report.vo.trunklinebillloading.TrunklinePickupEfficiencyVO; import lombok.AllArgsConstructor; @@ -179,4 +180,57 @@ public class TrunklinePickupServiceImpl implements TrunklinePickupService { List records = trunklinePickupEfficiencyVOIPage.getRecords(); ExcelUtil.export(response, "2B配送时效报表", "sheet1", records, B2BDeliverTimelinessVO.class); } + + @Override + public IPage efficiencyCostPage(TrunklinePickupEfficiencyDetailQuery query) { + IPage page = Condition.getPage(query); + // 条件中存在仓库 + List warehouseEntityList = new ArrayList<>(); + // 是否切库 + BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); + if (ObjectUtil.isNotEmpty(myCurrentWarehouse)) { + warehouseEntityList.add(myCurrentWarehouse); + } else { + // 服务仓 + List warehouseEntities = warehouseClient.getMyWarehouseList(); + if (CollUtil.isNotEmpty(warehouseEntities)) { + warehouseEntityList.addAll(warehouseEntities); + } + } + // 获取租户配置信息 + int qualifieTime = trunklinePickupMapper.findConfig(1); + List list = trunklinePickupMapper.efficiencyCostPage(page, query, qualifieTime, warehouseEntityList); + if(CollUtil.isNotEmpty(list)){ + String updateUserIds = list.stream() + .filter(vo -> ObjectUtil.isNotEmpty(vo.getCreateUserId())) + .map(TrunklinePickupEfficiencyCostVO::getCreateUserId) + .collect(Collectors.joining(",")); + Map userMap = new HashMap<>(); + if (StrUtil.isNotEmpty(updateUserIds)) { + R> listR = iUserClient.userInfoByIds(AuthUtil.getTenantId(), updateUserIds); + if (R.isSuccess(listR)) { + List data = listR.getData(); + for (User datum : data) { + userMap.put(Convert.toStr(datum.getId()), datum.getRealName()); + } + } + } + for (TrunklinePickupEfficiencyCostVO trunklinePickupEfficiencyDetailVO : list) { + String createUserId = trunklinePickupEfficiencyDetailVO.getCreateUserId(); + if (StrUtil.isNotEmpty(createUserId)) { + trunklinePickupEfficiencyDetailVO.setCreateUserName(userMap.get(createUserId)); + } + } + } + return page.setRecords(list); + } + + @Override + public void exportEfficiencyCost(HttpServletResponse response, TrunklinePickupEfficiencyDetailQuery query) { + query.setCurrent(1); + query.setSize(-1); + IPage trunklinePickupEfficiencyVOIPage = efficiencyCostPage(query); + List records = trunklinePickupEfficiencyVOIPage.getRecords(); + ExcelUtil.export(response, "干线提货成本报表", "sheet1", records, TrunklinePickupEfficiencyCostVO.class); + } } diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/vo/trunklinebillloading/TrunklinePickupEfficiencyCostVO.java b/blade-service/logpm-report/src/main/java/com/logpm/report/vo/trunklinebillloading/TrunklinePickupEfficiencyCostVO.java new file mode 100644 index 000000000..0f366a6f0 --- /dev/null +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/vo/trunklinebillloading/TrunklinePickupEfficiencyCostVO.java @@ -0,0 +1,141 @@ +package com.logpm.report.vo.trunklinebillloading; + +import com.alibaba.excel.annotation.ExcelIgnore; +import com.alibaba.excel.annotation.ExcelProperty; +import com.alibaba.excel.annotation.write.style.ColumnWidth; +import com.alibaba.excel.annotation.write.style.ContentRowHeight; +import com.alibaba.excel.annotation.write.style.HeadRowHeight; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.io.Serializable; + +/** + * 干线时效明细 报表 vo + * + * @author zhaoqiaobo + * @create 2024-03-06 16:02 + */ +@ColumnWidth(25) +@HeadRowHeight(20) +@ContentRowHeight(18) +@ApiModel(value = "干线时效明细报表", description = "干线时效明细报表") +@Data +public class TrunklinePickupEfficiencyCostVO implements Serializable { + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "提货创建时间") + @ExcelProperty(value = "提货创建时间") + private String pickupCreateTime; + + @ApiModelProperty(value = "提货批次") + @ExcelProperty(value = "提货批次") + private String pickupBatch; + + @ApiModelProperty(value = "车牌号") + @ExcelProperty(value = "车牌号") + private String vehicleLicenseNumber; + + @ApiModelProperty(value = "司机名称") + @ExcelProperty(value = "司机名称") + private String driverName; + + @ApiModelProperty(value = "司机电话") + @ExcelProperty(value = "司机电话") + private String driverPhone; + + @ApiModelProperty(value = "仓库名称") + @ExcelProperty(value = "仓库名称") + private String warehouseName; + + @ApiModelProperty(value = "线路名称") + @ExcelProperty(value = "线路名称") + private String routeName; + + @ApiModelProperty(value = "提货开始时间") + @ExcelProperty(value = "提货开始时间") + private String pickupStartTime; + + @ApiModelProperty(value = "提货完成时间") + @ExcelProperty(value = "提货完成时间") + private String pickupEndTime; + + @ApiModelProperty(value = "提货状态") + @ExcelProperty(value = "提货状态") + private String pickupStatus; + + @ApiModelProperty(value = "计费模式") + @ExcelProperty(value = "计费模式") + private String billingMode; + + @ApiModelProperty(value = "提货费用") + @ExcelProperty(value = "提货费用") + private String pickupFee; + + @ApiModelProperty(value = "备注") + @ExcelProperty(value = "备注") + private String remarks; + + @ApiModelProperty(value = "承运商") + @ExcelProperty(value = "承运商") + private String carrier; + + @ApiModelProperty(value = "单数") + @ExcelProperty(value = "单数") + private String orderCount; + + @ApiModelProperty(value = "件数") + @ExcelProperty(value = "件数") + private String itemQuantity; + + @ApiModelProperty(value = "预计件数") + @ExcelProperty(value = "预计件数") + private String estimatedItemQuantity; + + @ApiModelProperty(value = "重量") + @ExcelProperty(value = "重量") + private String weight; + + @ApiModelProperty(value = "计划重量") + @ExcelProperty(value = "计划重量") + private String plannedWeight; + + @ApiModelProperty(value = "体积") + @ExcelProperty(value = "体积") + private String volume; + + @ApiModelProperty(value = "计划体积") + @ExcelProperty(value = "计划体积") + private String plannedVolume; + + @ApiModelProperty(value = "实际提货时效") + @ExcelProperty(value = "实际提货时效") + private String actualPickupDuration; + + @ApiModelProperty(value = "提货标准时效") + @ExcelProperty(value = "提货标准时效") + private String standardPickupDuration; + + @ApiModelProperty(value = "提货是否超时") + @ExcelProperty(value = "提货是否超时") + private String pickupTimeout; + + @ApiModelProperty(value = "创建人id") + @ExcelIgnore + private String createUserId; + + @ApiModelProperty(value = "创建人") + @ExcelProperty(value = "创建人") + private String createUserName; + + @ApiModelProperty(value = "车次类型") + @ExcelProperty(value = "车次类型") + private String trainType; + + @ApiModelProperty(value = "车辆结算类型") + @ExcelProperty(value = "车辆结算类型") + private String settlementType; + +} From 4c488a8876bf9ff4a843722710fec338246c910b Mon Sep 17 00:00:00 2001 From: zhaoqiaobo <583671871@qq.com> Date: Fri, 14 Mar 2025 14:47:47 +0800 Subject: [PATCH 06/22] =?UTF-8?q?feat(all):=20=E6=8F=90=E8=B4=A7=E6=97=B6?= =?UTF-8?q?=E6=95=88=E6=8A=A5=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1 修改提货时效报表逻辑 --- .../java/com/logpm/report/mapper/TrunklinePickupMapper.xml | 6 ++++++ .../report/query/TrunklinePickupEfficiencyDetailQuery.java | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml index a36a768a1..81b9870e7 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml @@ -191,6 +191,12 @@ and ltb.driver_phone like concat('%',#{query.driverPhone},'%') + + and lbcm.vehicle_model like concat('%',#{query.settlementType},'%') + + + and case when lbda.type = '1' then '自有' when lbda.type = '2' then '加盟' when lbda.type = '3' then '外调' when lbda.type = '4' then '临调' end like concat('%',#{query.trainType},'%') + and ltb.warehouse_name = #{query.warehouseName} diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/query/TrunklinePickupEfficiencyDetailQuery.java b/blade-service/logpm-report/src/main/java/com/logpm/report/query/TrunklinePickupEfficiencyDetailQuery.java index 4a3ed1a44..08a2388c0 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/query/TrunklinePickupEfficiencyDetailQuery.java +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/query/TrunklinePickupEfficiencyDetailQuery.java @@ -65,6 +65,12 @@ public class TrunklinePickupEfficiencyDetailQuery extends Query { @ApiModelProperty(value = "提货是否超时") private String pickupTimeout; + @ApiModelProperty(value = "车次类型") + private String trainType; + + @ApiModelProperty(value = "车辆结算类型") + private String settlementType; + @ApiModelProperty(value = "1提货车次数 2提货完成数 3提货合格数 4超时未完成数 5超时完成数") private Integer type; From b6cb81003b5881b0c92074aed59bed66310d1e84 Mon Sep 17 00:00:00 2001 From: zhaoqiaobo <583671871@qq.com> Date: Fri, 14 Mar 2025 15:12:04 +0800 Subject: [PATCH 07/22] =?UTF-8?q?feat(all):=20=E6=8F=90=E8=B4=A7=E6=97=B6?= =?UTF-8?q?=E6=95=88=E6=8A=A5=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1 修改提货时效报表逻辑 --- .../report/mapper/TrunklinePickupMapper.xml | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml index 81b9870e7..97ad2eb8f 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml @@ -44,7 +44,7 @@ ifnull(sum(com.wcwcs), 0) qualifiedPickupCountWithin, ifnull(sum(nocom.wwccs), 0) overdueIncompleteCount, ifnull(sum(com.wccs), 0) overdueCompletedCount, - ifnull(avg(com.zq), 0) averagePickupCycle, + round(ifnull(avg(com.zq), 0),2) averagePickupCycle, concat(CASE WHEN SUM(com.num) = 0 THEN '0' ELSE ifnull(TRIM(TRAILING '.00' FROM FORMAT(ROUND(SUM(com.wcwcs) * 100.0 / SUM(com.num), 2), 2)), '0') @@ -61,13 +61,13 @@ group by t.billlading_id) ttt on ttt.billlading_id = ltb.id left join(select t.id, 1 num, - TIMESTAMPDIFF(HOUR, t.create_time, ifnull(t.end_time,now())) zq, - case when TIMESTAMPDIFF(HOUR, t.create_time, ifnull(t.end_time,now())) > #{qualifieTime} then 1 else 0 end wccs, - case when TIMESTAMPDIFF(HOUR, t.create_time, ifnull(t.end_time,now())) #{qualifieTime} then 1 else 0 end wcwcs + round(TIMESTAMPDIFF(SECOND, t.create_time, t.end_time)/3600,2) zq, + case when round(TIMESTAMPDIFF(SECOND, t.create_time, t.end_time)/3600,2) > #{qualifieTime} then 1 else 0 end wccs, + case when round(TIMESTAMPDIFF(SECOND, t.create_time, t.end_time)/3600,2) #{qualifieTime} then 1 else 0 end wcwcs from logpm_trunkline_billlading t where t.billlading_status in ('3', '4')) com on com.id = ltb.id left join(select t.id, - case when TIMESTAMPDIFF(HOUR, t.create_time, ifnull(t.end_time,now())) > #{qualifieTime} then 1 else 0 end wwccs + case when round(TIMESTAMPDIFF(SECOND, t.create_time, t.end_time)/3600,2) > #{qualifieTime} then 1 else 0 end wwccs from logpm_trunkline_billlading t where t.billlading_status in ('1', '2')) nocom on nocom.id = ltb.id where ltb.is_deleted = 0 and ltb.billlading_status != 5 @@ -137,10 +137,10 @@ ltb.real_volume volume, ltb.plan_volume plannedVolume, ltb.create_user createUserId, - TIMESTAMPDIFF(HOUR, ltb.create_time, ifnull(ltb.end_time,now())) actualPickupDuration, + round(TIMESTAMPDIFF(SECOND, ltb.create_time, ifnull(ltb.end_time,now()))/3600,2) actualPickupDuration, rpec.time standardPickupDuration, case - when TIMESTAMPDIFF(HOUR, ltb.create_time, ifnull(ltb.end_time,now())) > rpec.time then '是' + when round(TIMESTAMPDIFF(SECOND, ltb.create_time, ifnull(ltb.end_time,now()))/3600,2) > rpec.time then '是' else '否' end pickupTimeout, case when lbda.type = '1' then '自有' when lbda.type = '2' then '加盟' when lbda.type = '3' then '外调' when lbda.type = '4' then '临调' end trainType, lbcm.vehicle_model settlementType @@ -214,10 +214,10 @@ - and TIMESTAMPDIFF(HOUR, ltb.create_time, ifnull(ltb.end_time,now())) <= rpec.time + and round(TIMESTAMPDIFF(SECOND, ltb.create_time, ifnull(ltb.end_time,now()))/3600,2) <= rpec.time - and TIMESTAMPDIFF(HOUR, ltb.create_time,ifnull(ltb.end_time,now())) > rpec.time + and round(TIMESTAMPDIFF(SECOND, ltb.create_time, ifnull(ltb.end_time,now()))/3600,2) > rpec.time @@ -232,15 +232,15 @@ and ltb.billlading_status in ('3', '4') - and TIMESTAMPDIFF(HOUR, ltb.create_time,ifnull(ltb.end_time,now())) <= rpec.time + and round(TIMESTAMPDIFF(SECOND, ltb.create_time, ifnull(ltb.end_time,now()))/3600,2) <= rpec.time and ltb.billlading_status in ('1', '2') - and TIMESTAMPDIFF(HOUR, ltb.create_time, ifnull(ltb.end_time,now())) > rpec.time + and round(TIMESTAMPDIFF(SECOND, ltb.create_time, ifnull(ltb.end_time,now()))/3600,2) > rpec.time and ltb.billlading_status in ('3', '4') - and TIMESTAMPDIFF(HOUR, ltb.create_time, ifnull(ltb.end_time,now())) > rpec.time + and round(TIMESTAMPDIFF(SECOND, ltb.create_time, ifnull(ltb.end_time,now()))/3600,2) > rpec.time group by ltb.id From ca4cab5ed1e11da8f99ff7faf91aa2065c970520 Mon Sep 17 00:00:00 2001 From: PigBaoBei <2739175034@qq.com> Date: Fri, 14 Mar 2025 16:34:52 +0800 Subject: [PATCH 08/22] =?UTF-8?q?=E8=87=AA=E6=8F=90PC=E7=AD=BE=E6=94=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/DistrilbutionBillLadingServiceImpl.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistrilbutionBillLadingServiceImpl.java b/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistrilbutionBillLadingServiceImpl.java index 9ad192f5f..19a27028e 100644 --- a/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistrilbutionBillLadingServiceImpl.java +++ b/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistrilbutionBillLadingServiceImpl.java @@ -1452,7 +1452,8 @@ public class DistrilbutionBillLadingServiceImpl extends BaseServiceImpl nodeFanoutMsg = buildNodeFanoutMsgBySign(billLadingEntity, ladingScanEntities, AuthUtil.getUser(), myCurrentWarehouse); + iDistributionNodeWorkService.signByBill(nodeFanoutMsg, AuthUtil.getUser()); // 进行日志记录 // warehouseUpdownTypeClient.downPackageAndDelTrayAndIsUpdate(collect, myCurrentWarehouse.getId(), "后台PC自提签收下架", false); @@ -1483,6 +1484,7 @@ public class DistrilbutionBillLadingServiceImpl extends BaseServiceImpl Date: Fri, 14 Mar 2025 17:47:04 +0800 Subject: [PATCH 09/22] =?UTF-8?q?feat(all):=20=E6=8F=90=E8=B4=A7=E6=97=B6?= =?UTF-8?q?=E6=95=88=E6=8A=A5=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1 修改提货时效报表逻辑 --- .../java/com/logpm/report/mapper/TrunklinePickupMapper.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml index 97ad2eb8f..7568d2c2b 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml @@ -293,7 +293,7 @@ left join logpm_basicdata_client lbc on lbc.client_name = lww1.consignee and lbc.is_deleted = 0 left join logpm_warehouse_warehouse lww on lww.id = t.warehouse_id where t.warehouse_entry_time_end >= #{query.startCreateTime} and t.warehouse_entry_time_end <= #{query.endCreateTime} - and t.is_transfer = 0 and lbc.type_service != 2 + and t.is_transfer = 0 and (lbc.type_service != 2 or lbc.type_service is null) and lww.business_line in @@ -353,7 +353,7 @@ left join logpm_warehouse_waybill lww1 on lww1.waybill_no = t.waybill_number and lww1.is_deleted = 0 left join logpm_basicdata_client lbc on lbc.client_name = lww1.consignee and lbc.is_deleted = 0 where t.end_warehouse_in_time >= #{query.startCreateTime} and t.end_warehouse_in_time <= #{query.endCreateTime} - and t.sign_num is not null and lbc.type_service != 2 + and t.sign_num is not null and (lbc.type_service != 2 or lbc.type_service is null) and t.business_unit in From e67e9a181c6e74569e434502fb743117cb7b4a96 Mon Sep 17 00:00:00 2001 From: "pref_mail@163.com" Date: Sun, 16 Mar 2025 15:58:00 +0800 Subject: [PATCH 10/22] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E8=BF=90=E5=8D=95?= =?UTF-8?q?=E6=97=A5=E5=BF=97=E5=AD=98=E5=9C=A8=E5=A4=9A=E6=9D=A1=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trunkline/service/impl/OpenOrderAsyncServiceImpl.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderAsyncServiceImpl.java b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderAsyncServiceImpl.java index 84732d7af..744feab3a 100644 --- a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderAsyncServiceImpl.java +++ b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderAsyncServiceImpl.java @@ -139,9 +139,10 @@ public class OpenOrderAsyncServiceImpl implements IOpenOrderAsyncService { queryWrapper.eq("warehouse_id",warehouseId) .eq("waybill_id",waybillId) .eq("track_type",trackType); - TrunklineWaybillTrackEntity waybillTrackEntity = trunklineWaybillTrackService.getOne(queryWrapper); - if(Objects.isNull(waybillTrackEntity)){ - waybillTrackEntity = new TrunklineWaybillTrackEntity(); + + List list = trunklineWaybillTrackService.list(queryWrapper); + if(list.isEmpty()){ + TrunklineWaybillTrackEntity waybillTrackEntity = new TrunklineWaybillTrackEntity(); waybillTrackEntity.setWarehouseId(warehouseId); waybillTrackEntity.setWarehouseName(warehouseName); waybillTrackEntity.setWaybillId(waybillId); From f10d5ac6dbe68c5e6f967f1d67ce5c706bf66df8 Mon Sep 17 00:00:00 2001 From: "pref_mail@163.com" Date: Sun, 16 Mar 2025 16:15:00 +0800 Subject: [PATCH 11/22] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E8=BF=90=E5=8D=95?= =?UTF-8?q?=E6=97=A5=E5=BF=97=E5=AD=98=E5=9C=A8=E5=A4=9A=E6=9D=A1=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E7=9A=84=E9=97=AE=E9=A2=98=20=E5=A2=9E=E5=8A=A0redis?= =?UTF-8?q?=20=E7=BC=93=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../impl/OpenOrderAsyncServiceImpl.java | 46 ++++++++++++++----- 1 file changed, 34 insertions(+), 12 deletions(-) diff --git a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderAsyncServiceImpl.java b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderAsyncServiceImpl.java index 744feab3a..0e35ab625 100644 --- a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderAsyncServiceImpl.java +++ b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderAsyncServiceImpl.java @@ -23,6 +23,7 @@ import org.springblade.common.annotations.LogpmAsync; import org.springblade.common.constant.broadcast.FanoutConstants; import org.springblade.common.model.FanoutMsg; import org.springblade.common.utils.CommonUtil; +import org.springblade.core.redis.cache.BladeRedis; import org.springblade.core.secure.BladeUser; import org.springblade.core.secure.utils.AuthUtil; import org.springblade.system.cache.UserCache; @@ -76,6 +77,9 @@ public class OpenOrderAsyncServiceImpl implements IOpenOrderAsyncService { private IDistributionParcelListClient distributionParcelListClient; @Autowired private ITrunklineCarsLoadScanService carsLoadScanService; + @Autowired + private BladeRedis bladeRedis; + @LogpmAsync("asyncExecutor") @@ -127,6 +131,15 @@ public class OpenOrderAsyncServiceImpl implements IOpenOrderAsyncService { // DynamicDataSourceContextHolder.clear(); } + + private String buildKey(Long waybillId, String trackType, String refer, String operationRemark,Long userId, Long warehouseId){ + StringBuffer stringBu = new StringBuffer(); + stringBu.append(waybillId) + .append(trackType).append(refer).append(operationRemark).append(userId).append(warehouseId); + return stringBu.toString(); + + } + @Override public void saveAbnormalLog(Long waybillId, String waybillNo, String trackType, String refer, String operationRemark, String nickName, Long userId, Long warehouseId, String warehouseName) { if(Objects.isNull(waybillId)){ @@ -142,18 +155,27 @@ public class OpenOrderAsyncServiceImpl implements IOpenOrderAsyncService { List list = trunklineWaybillTrackService.list(queryWrapper); if(list.isEmpty()){ - TrunklineWaybillTrackEntity waybillTrackEntity = new TrunklineWaybillTrackEntity(); - waybillTrackEntity.setWarehouseId(warehouseId); - waybillTrackEntity.setWarehouseName(warehouseName); - waybillTrackEntity.setWaybillId(waybillId); - waybillTrackEntity.setWaybillNo(waybillNo); - waybillTrackEntity.setTrackType(trackType); - waybillTrackEntity.setRefer(refer); - waybillTrackEntity.setOperationRemark(operationRemark); - waybillTrackEntity.setCreateUserName(nickName); - waybillTrackEntity.setCheckStatus(1); - waybillTrackEntity.setCheckTime(new Date()); - trunklineWaybillTrackService.save(waybillTrackEntity); + String key =buildKey(waybillId, waybillNo, trackType, refer, userId, warehouseId); + Object o = bladeRedis.get(key); + if(Objects.isNull(o)){ + // 对这个保存方法进行10s的缓存锁 避免数据库的读写延迟 + bladeRedis.setEx(key, "进入", 10L); + TrunklineWaybillTrackEntity waybillTrackEntity = new TrunklineWaybillTrackEntity(); + waybillTrackEntity.setWarehouseId(warehouseId); + waybillTrackEntity.setWarehouseName(warehouseName); + waybillTrackEntity.setWaybillId(waybillId); + waybillTrackEntity.setWaybillNo(waybillNo); + waybillTrackEntity.setTrackType(trackType); + waybillTrackEntity.setRefer(refer); + waybillTrackEntity.setOperationRemark(operationRemark); + waybillTrackEntity.setCreateUserName(nickName); + waybillTrackEntity.setCheckStatus(1); + waybillTrackEntity.setCheckTime(new Date()); + trunklineWaybillTrackService.save(waybillTrackEntity); + }else{ + log.warn("saveAbnormalLog >>>> 重复保存,不做处理"); + } + } }else{ TrunklineWaybillTrackEntity waybillTrackEntity = new TrunklineWaybillTrackEntity(); From a382d9d721b9d8704e91a640082b4b6e03dd7f66 Mon Sep 17 00:00:00 2001 From: zhaoqiaobo <583671871@qq.com> Date: Mon, 17 Mar 2025 10:04:44 +0800 Subject: [PATCH 12/22] =?UTF-8?q?feat(all):=20=E6=8F=90=E8=B4=A7=E6=97=B6?= =?UTF-8?q?=E6=95=88=E6=8A=A5=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1 修改提货时效报表逻辑 --- .../report/mapper/TrunklinePickupMapper.xml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml index 7568d2c2b..8359fb954 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/TrunklinePickupMapper.xml @@ -276,11 +276,17 @@ ifnull(sum(t.orderNum),0) orderNum, ifnull(sum(t.num),0) num, ifnull(sum(tt.signNum),0) signNum, - concat(case when ifnull(sum(t.num),0) = 0 then 0 else round(ifnull(sum(tt.signNum),0)/ifnull(sum(t.num),0)) end,'%') signRate, - concat(case when ifnull(sum(tt.signNum),0) = 0 then 0 else round(ifnull(sum(tt.batchNum),0)/ifnull(sum(tt.signNum),0)) end,'%') batchRate, - ifnull(sum(tt.batchNum),0) batchNum, - ifnull(sum(tt.hgNum),0) signOnTimeNum, - concat(case when ifnull(sum(t.num),0) = 0 then 0 else round(ifnull(sum(tt.hgNum),0)/ifnull(sum(t.num),0)) end,'%') signOnTimeRate + concat(case + when ifnull(sum(t.num), 0) = 0 then 0 + else round((ifnull(sum(tt.signNum), 0)*100) / ifnull(sum(t.num), 0),2) end, '%') as signRate, + concat(case + when ifnull(sum(tt.signNum), 0) = 0 then 0 + else round((ifnull(sum(tt.batchNum), 0)*100) / ifnull(sum(tt.signNum), 0),2) end, '%') as batchRate, + ifnull(sum(tt.batchNum), 0) as batchNum, + ifnull(sum(tt.hgNum), 0) as signOnTimeNum, + concat(case + when ifnull(sum(t.num), 0) = 0 then 0 + else round((ifnull(sum(tt.hgNum), 0)*100) / ifnull(sum(t.num), 0),2) end, '%') as signOnTimeRate from (select lww.business_line, t.warehouse, t.brand_name, case when ifnull(lbc.type_service,1) = 1 then '商配' when ifnull(lbc.type_service,1) = 2 then '市配' From 12e4c0c16494458125d3228f50c0eff54dc24014 Mon Sep 17 00:00:00 2001 From: "pref_mail@163.com" Date: Mon, 17 Mar 2025 13:50:48 +0800 Subject: [PATCH 13/22] =?UTF-8?q?fix:=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/logpm/basic/controller/BasicNoticeController.java | 5 +++++ .../basicdata/controller/BasicdataClientController.java | 2 +- .../service/impl/DistributionStockArticleServiceImpl.java | 5 ++++- .../trunkline/service/impl/OpenOrderAsyncServiceImpl.java | 8 ++++---- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/blade-service/logpm-basic/src/main/java/com/logpm/basic/controller/BasicNoticeController.java b/blade-service/logpm-basic/src/main/java/com/logpm/basic/controller/BasicNoticeController.java index 2f87f264d..706aacbc3 100644 --- a/blade-service/logpm-basic/src/main/java/com/logpm/basic/controller/BasicNoticeController.java +++ b/blade-service/logpm-basic/src/main/java/com/logpm/basic/controller/BasicNoticeController.java @@ -102,6 +102,11 @@ public class BasicNoticeController extends BladeController { @ApiOperationSupport(order = 2) @ApiOperation(value = "分页", notes = "传入notice") public R> list() { + + if(AuthUtil.isAdmin()){ + return R.data(null); + } + LambdaQueryWrapper lambdaQueryWrapper = new LambdaQueryWrapper<>(); lambdaQueryWrapper.orderByDesc(BasicNotice::getReleaseTime); List list = noticeService.list(lambdaQueryWrapper); diff --git a/blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/BasicdataClientController.java b/blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/BasicdataClientController.java index dd97b0920..c324fb388 100644 --- a/blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/BasicdataClientController.java +++ b/blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/BasicdataClientController.java @@ -79,7 +79,7 @@ public class BasicdataClientController extends BladeController { private final IBasicdataStoreBusinessService basicdataStoreBusinessService; private final IBasicdataStoreContactService basicdataStoreContactService; - private final IUserClient userClient; + /** * 基础客户表 详情 diff --git a/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionStockArticleServiceImpl.java b/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionStockArticleServiceImpl.java index 92525ccd5..10a3bc900 100644 --- a/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionStockArticleServiceImpl.java +++ b/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionStockArticleServiceImpl.java @@ -3221,7 +3221,10 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl orderPackageCodes, Long warehouseId) { List orderCodes = distributionParcelListService.findOrderCodesByOrderPackageCodes(orderPackageCodes, warehouseId); - return baseMapper.findOrderTotalNumByOrderCodes(orderCodes, warehouseId); + if(!orderCodes.isEmpty()){ + return baseMapper.findOrderTotalNumByOrderCodes(orderCodes, warehouseId); + } + return 0; } @Override diff --git a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderAsyncServiceImpl.java b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderAsyncServiceImpl.java index 0e35ab625..e0cd9e032 100644 --- a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderAsyncServiceImpl.java +++ b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderAsyncServiceImpl.java @@ -199,8 +199,8 @@ public class OpenOrderAsyncServiceImpl implements IOpenOrderAsyncService { Long loadId = carsLoadLineEntity.getLoadId(); Integer sort = carsLoadLineEntity.getSort(); - String tenantId = AuthUtil.getTenantId(); - BladeUser user = AuthUtil.getUser(); +// String tenantId = AuthUtil.getTenantId(); +// BladeUser user = AuthUtil.getUser(); // DynamicDataSourceContextHolder.push(tenantId); TrunklineCarsLoadEntity carsLoadEntity = trunklineCarsLoadService.getById(loadId); @@ -250,8 +250,8 @@ public class OpenOrderAsyncServiceImpl implements IOpenOrderAsyncService { Long loadId = carsLoadLineEntity.getLoadId(); Integer sort = carsLoadLineEntity.getSort(); - String tenantId = AuthUtil.getTenantId(); - BladeUser user = AuthUtil.getUser(); +// String tenantId = AuthUtil.getTenantId(); +// BladeUser user = AuthUtil.getUser(); // DynamicDataSourceContextHolder.push(tenantId); TrunklineCarsLoadEntity carsLoadEntity = trunklineCarsLoadService.getById(loadId); From 7427e2913d2cb4b6395967b9977ac40bb880fcf6 Mon Sep 17 00:00:00 2001 From: "pref_mail@163.com" Date: Mon, 17 Mar 2025 15:49:07 +0800 Subject: [PATCH 14/22] =?UTF-8?q?fix:=E5=A2=9E=E5=8A=A0=E5=AF=B9=E4=BA=8E?= =?UTF-8?q?=E6=94=AF=E5=87=BA=E5=BA=93=E5=AD=98=E5=93=81=E7=9A=84=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E7=AD=BE=E6=94=B6=E4=BF=A1=E6=81=AF=E6=8E=A8=E9=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../impl/DistributionSignforServiceImpl.java | 54 +++++++++++++------ 1 file changed, 38 insertions(+), 16 deletions(-) diff --git a/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionSignforServiceImpl.java b/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionSignforServiceImpl.java index d88b88818..a9422e5e5 100644 --- a/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionSignforServiceImpl.java +++ b/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionSignforServiceImpl.java @@ -1906,7 +1906,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl ids = v.stream().map(DistributionReservationZeroPackageEntity::getParcelListId).collect(Collectors.toList()); num.updateAndGet(v1 -> v1 + v.stream().mapToInt(DistributionReservationZeroPackageEntity::getQuantity).sum()); - distributionReservationZeroPackageService.recoverZeroPackage(distrilbutionloadingscanDTO.getReservationId(), ids,false); + distributionReservationZeroPackageService.recoverZeroPackage(distrilbutionloadingscanDTO.getReservationId(), ids, false); if (planMap.get(k).size() == ids.size()) { orderNum.getAndSet(1); distributionReservationStockarticleService.update(new UpdateWrapper().lambda() @@ -2702,12 +2702,12 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl abnormalLoadingList = distributionLoadscanMapper.selectAbnormalLoadingByReservationIds(reservationIdList); // 通过预约ID分组 - Map> abnormalMap = abnormalLoadingList.stream().filter(d -> d.getReservationId()!=null).collect(Collectors.groupingBy(ReseverationAnyTypeNumberDTO::getReservationId)); + Map> abnormalMap = abnormalLoadingList.stream().filter(d -> d.getReservationId() != null).collect(Collectors.groupingBy(ReseverationAnyTypeNumberDTO::getReservationId)); List abnormalSignList = distributionLoadscanMapper.selectAbnormalSigningByReservationIds(reservationIdList); // 通过预约ID分组 - Map> abnormalSignMap = abnormalSignList.stream().filter(d-> d.getReservationId()!=null).collect(Collectors.groupingBy(ReseverationAnyTypeNumberDTO::getReservationId)); + Map> abnormalSignMap = abnormalSignList.stream().filter(d -> d.getReservationId() != null).collect(Collectors.groupingBy(ReseverationAnyTypeNumberDTO::getReservationId)); // 获取市配的 List shiPeireservationIdList = distributionSignforVOS.stream().filter(d -> d.getDeliveryType().equals(DistributionTypeConstant.shipie.getValue())).map(DistributionSignforVO::getReservationId).collect(Collectors.toList()); @@ -2715,7 +2715,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl allDisStockListDetailEntities = distributionReservationMapper.selectInventoryListByReservations(shiPeireservationIdList); // 通过预约ID分组 - Map> shiPeiMap = allDisStockListDetailEntities.stream().filter(d-> d.getReservationId()!=null).collect(Collectors.groupingBy(DisStockListDetailEntity::getReservationId)); + Map> shiPeiMap = allDisStockListDetailEntities.stream().filter(d -> d.getReservationId() != null).collect(Collectors.groupingBy(DisStockListDetailEntity::getReservationId)); distributionSignforVOS.forEach(d -> { @@ -6356,23 +6356,45 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl Date: Mon, 17 Mar 2025 15:51:16 +0800 Subject: [PATCH 15/22] =?UTF-8?q?1.=E5=B9=B2=E7=BA=BFbug=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=202.=E6=8A=A5=E8=A1=A8=E6=98=8E=E7=BB=86bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common/annotations/Master.java | 7 ++ .../logpm/report/config/MyBatisConfig.java | 11 ++ .../report/config/MybatisPlusConfig.java | 64 ++++++++++- .../report/dto/AllTrunklineTimeDetailDTO.java | 2 +- .../logpm/report/dto/ReportIncomingDTO.java | 1 + .../report/dto/ReportStartTimeDetailDTO.java | 2 +- .../interceptor/MasterCommentInterceptor.java | 67 +++++++++++ .../report/mapper/ReportIncomingMapper.java | 2 + .../report/mapper/ReportIncomingMapper.xml | 106 ++++++++++++------ .../report/mapper/ReportQuallityMapper.xml | 27 ++++- .../logpm/report/mapper/ReportTimeMapper.xml | 64 +++++------ .../impl/ReportIncomingServiceImpl.java | 76 +------------ .../mapper/TrunklineCarsLoadMapper.xml | 4 + .../service/impl/OpenOrderServiceImpl.java | 12 +- .../impl/TrunklineCarsLoadServiceImpl.java | 67 +++++++++-- .../logpm/warehouse/config/MyBatisConfig.java | 12 ++ .../interceptor/MasterCommentInterceptor.java | 100 +++++++++++++++++ .../impl/WarehouseTrayTypeServiceImpl.java | 35 +++++- .../impl/WarehouseUpdownTypeServiceImpl.java | 64 +++++++---- 19 files changed, 540 insertions(+), 183 deletions(-) create mode 100644 blade-biz-common/src/main/java/org/springblade/common/annotations/Master.java create mode 100644 blade-service/logpm-report/src/main/java/com/logpm/report/config/MyBatisConfig.java create mode 100644 blade-service/logpm-report/src/main/java/com/logpm/report/interceptor/MasterCommentInterceptor.java create mode 100644 blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/config/MyBatisConfig.java create mode 100644 blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/interceptor/MasterCommentInterceptor.java diff --git a/blade-biz-common/src/main/java/org/springblade/common/annotations/Master.java b/blade-biz-common/src/main/java/org/springblade/common/annotations/Master.java new file mode 100644 index 000000000..e2083bbba --- /dev/null +++ b/blade-biz-common/src/main/java/org/springblade/common/annotations/Master.java @@ -0,0 +1,7 @@ +package org.springblade.common.annotations; +import java.lang.annotation.*; + +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.METHOD) +public @interface Master { +} diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/config/MyBatisConfig.java b/blade-service/logpm-report/src/main/java/com/logpm/report/config/MyBatisConfig.java new file mode 100644 index 000000000..26b7f8751 --- /dev/null +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/config/MyBatisConfig.java @@ -0,0 +1,11 @@ +package com.logpm.report.config; + +//@Configuration +public class MyBatisConfig { + +// @Bean +// public MasterCommentInterceptor masterCommentInterceptor() { +// return new MasterCommentInterceptor(); +// } + +} diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/config/MybatisPlusConfig.java b/blade-service/logpm-report/src/main/java/com/logpm/report/config/MybatisPlusConfig.java index 1b22c3edc..53c8a37e5 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/config/MybatisPlusConfig.java +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/config/MybatisPlusConfig.java @@ -2,10 +2,19 @@ package com.logpm.report.config; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor; -import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor; +import com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor; +import com.logpm.report.interceptor.MasterCommentInterceptor; import org.mybatis.spring.annotation.MapperScan; +import org.springblade.core.mp.intercept.QueryInterceptor; +import org.springblade.core.mp.plugins.BladePaginationInterceptor; +import org.springblade.core.mp.props.MybatisPlusProperties; +import org.springblade.core.tool.utils.ObjectUtil; +import org.springframework.beans.factory.ObjectProvider; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.Primary; +import org.springframework.core.annotation.AnnotationAwareOrderComparator; +import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; /** * @author zhaoqiaobo @@ -13,12 +22,59 @@ import org.springframework.context.annotation.Configuration; */ @Configuration @MapperScan("com.baomidou.cloud.service.*.mapper*r") -public class MybatisPlusConfig { +public class MybatisPlusConfig implements WebMvcConfigurer { +// @Bean +// public MybatisPlusInterceptor mybatisPlusInterceptor(){ +// MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor(); +// interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL)); +// return interceptor; +// } + + +// @Bean +// public MasterCommentInterceptor masterCommentInterceptor() { +// return new MasterCommentInterceptor(); +// } + + + /** + * mybatis-plus 拦截器集合 + */ @Bean - public MybatisPlusInterceptor mybatisPlusInterceptor(){ +// @ConditionalOnMissingBean(MybatisPlusInterceptor.class) + @Primary + public MybatisPlusInterceptor mybatisPlusInterceptor(ObjectProvider queryInterceptors, + TenantLineInnerInterceptor tenantLineInnerInterceptor, + MybatisPlusProperties mybatisPlusProperties) { MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor(); - interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL)); + + + + // 配置租户拦截器 + if (mybatisPlusProperties.getTenantMode()) { + interceptor.addInnerInterceptor(tenantLineInnerInterceptor); + } + // 配置分页拦截器 + BladePaginationInterceptor paginationInterceptor = new BladePaginationInterceptor(); + // 配置自定义查询拦截器 + QueryInterceptor[] queryInterceptorArray = queryInterceptors.getIfAvailable(); + if (ObjectUtil.isNotEmpty(queryInterceptorArray)) { + AnnotationAwareOrderComparator.sort(queryInterceptorArray); + paginationInterceptor.setQueryInterceptors(queryInterceptorArray); + } + paginationInterceptor.setMaxLimit(mybatisPlusProperties.getPageLimit()); + paginationInterceptor.setOverflow(mybatisPlusProperties.getOverflow()); + paginationInterceptor.setOptimizeJoin(mybatisPlusProperties.getOptimizeJoin()); + paginationInterceptor.setDbType(DbType.MYSQL); + interceptor.addInnerInterceptor(paginationInterceptor); + + // 添加性能分析插件(开发环境使用,生产环境移除) +// interceptor.addInnerInterceptor(new PerformanceInterceptor()); + + //拼接sql头拦截器 + interceptor.addInnerInterceptor(new MasterCommentInterceptor()); + return interceptor; } diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/dto/AllTrunklineTimeDetailDTO.java b/blade-service/logpm-report/src/main/java/com/logpm/report/dto/AllTrunklineTimeDetailDTO.java index 6cafeaa2e..58016fde6 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/dto/AllTrunklineTimeDetailDTO.java +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/dto/AllTrunklineTimeDetailDTO.java @@ -47,7 +47,7 @@ public class AllTrunklineTimeDetailDTO implements Serializable { private String serviceNum; private String trainNumber; - private Integer isDesIncomging; + private Integer isDesIncoming; private Integer isOverTime; // 未超时 0 超时1 diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportIncomingDTO.java b/blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportIncomingDTO.java index 9585cc1d8..4aa63528a 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportIncomingDTO.java +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportIncomingDTO.java @@ -28,5 +28,6 @@ public class ReportIncomingDTO implements Serializable { private List brands; private String consignee; + private Integer type; } diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportStartTimeDetailDTO.java b/blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportStartTimeDetailDTO.java index dc5da508a..8860d3843 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportStartTimeDetailDTO.java +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportStartTimeDetailDTO.java @@ -41,7 +41,7 @@ public class ReportStartTimeDetailDTO implements Serializable { private String serviceNum; private String trainNumber; - private Integer isDesIncomging; + private Integer isStarting; private Integer isOverTime; // 未超时 0 超时1 //开单件数 1 diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/interceptor/MasterCommentInterceptor.java b/blade-service/logpm-report/src/main/java/com/logpm/report/interceptor/MasterCommentInterceptor.java new file mode 100644 index 000000000..783a2abb7 --- /dev/null +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/interceptor/MasterCommentInterceptor.java @@ -0,0 +1,67 @@ +package com.logpm.report.interceptor; + +import com.baomidou.mybatisplus.core.toolkit.PluginUtils; +import com.baomidou.mybatisplus.extension.plugins.inner.InnerInterceptor; +import lombok.extern.slf4j.Slf4j; +import org.apache.ibatis.executor.statement.StatementHandler; +import org.apache.ibatis.mapping.BoundSql; +import org.apache.ibatis.mapping.MappedStatement; +import org.apache.ibatis.mapping.SqlCommandType; +import org.apache.ibatis.plugin.Intercepts; +import org.apache.ibatis.plugin.Signature; +import org.springblade.common.annotations.Master; + +import java.lang.reflect.Field; +import java.lang.reflect.Method; +import java.sql.Connection; + + +@Intercepts({ + @Signature( + type = StatementHandler.class, + method = "prepare", + args = {Connection.class, Integer.class} + ) +}) +@Slf4j +public class MasterCommentInterceptor implements InnerInterceptor { + + @Override + public void beforePrepare(StatementHandler sh, Connection connection, Integer transactionTimeout) { + PluginUtils.MPStatementHandler handler = PluginUtils.mpStatementHandler(sh); + MappedStatement ms = handler.mappedStatement(); + SqlCommandType sct = ms.getSqlCommandType(); + Method method = getMethodFromMappedStatement(ms); + if (method != null && method.isAnnotationPresent(Master.class)) { + BoundSql boundSql = handler.boundSql(); + String sql = boundSql.getSql(); + sql = "/*MASTER*/ " + sql; + try { + Field field = boundSql.getClass().getDeclaredField("sql"); + field.setAccessible(true); + field.set(boundSql, sql); + } catch (NoSuchFieldException e) { + log.error("NoSuchFieldException:", e); + } catch (IllegalAccessException e) { + log.error("IllegalAccessException:", e); + } + } + } + + private Method getMethodFromMappedStatement(MappedStatement ms) { + try { + String methodName = ms.getId().substring(ms.getId().lastIndexOf(".") + 1); + Class mapperClass = Class.forName(ms.getId().substring(0, ms.getId().lastIndexOf("."))); + for (Method method : mapperClass.getMethods()) { + if (method.getName().equals(methodName)) { + return method; + } + } + } catch (ClassNotFoundException e) { + // 忽略异常 + } + return null; + } + + +} diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportIncomingMapper.java b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportIncomingMapper.java index fcddcc511..31e1b75b0 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportIncomingMapper.java +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportIncomingMapper.java @@ -6,6 +6,7 @@ import com.logpm.report.dto.ReportIncomingDetailDTO; import com.logpm.report.vo.*; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; +import org.springblade.common.annotations.Master; import java.util.List; @@ -13,6 +14,7 @@ import java.util.List; public interface ReportIncomingMapper { + @Master IPage deptIncomingPage(IPage page, @Param("param") ReportIncomingDTO reportIncomingDTO); List findIncomingNum( @Param("param") ReportIncomingDTO reportIncomingDTO); diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportIncomingMapper.xml b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportIncomingMapper.xml index 6e9016d7c..a00d7a10b 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportIncomingMapper.xml +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportIncomingMapper.xml @@ -99,8 +99,15 @@ '全部' brand, - YEAR(lww.document_making_time) nian, - MONTH(lww.document_making_time) yue, + + YEAR(lww.document_making_time) timeStr, + + + CONCAT(YEAR(lww.document_making_time),'-',QUARTER(lww.document_making_time)) timeStr, + + + CONCAT(YEAR(lww.document_making_time),'-',MONTH(lww.document_making_time)) timeStr, + count(lww.id) waybillNum, sum(lww.total_count) num, sum(IFNULL(lww.total_weight,0)) weight, @@ -149,22 +156,34 @@ and lww.document_making_time <= #{param.endTime} - group by YEAR(lww.document_making_time), - - waw.business_line, - - - lww.departure_warehouse_id, - lww.departure_warehouse_name, - - - lww.destination_warehouse_id, - lww.destination_warehouse_name, - - - lww.brand, - - MONTH(lww.document_making_time) + group by + + + YEAR(lww.document_making_time), + + + YEAR(lww.document_making_time), + QUARTER(lww.document_making_time), + + + YEAR(lww.document_making_time), + MONTH(lww.document_making_time), + + + waw.business_line, + + + lww.departure_warehouse_id, + lww.departure_warehouse_name, + + + lww.destination_warehouse_id, + lww.destination_warehouse_name, + + + lww.brand, + + @@ -251,8 +270,15 @@ '全部' brand, - YEAR(lww.document_making_time) nian, - MONTH(lww.document_making_time) yue, + + YEAR(lww.document_making_time) timeStr, + + + CONCAT(YEAR(lww.document_making_time),'-',QUARTER(lww.document_making_time)) timeStr, + + + CONCAT(YEAR(lww.document_making_time),'-',MONTH(lww.document_making_time)) timeStr, + case when lww.waybill_type = '1' then count(ldpl.id) when lww.waybill_type = '2' then sum(ldpn.quantity) end stockNum, case when lww.waybill_type = '1' then sum(IF(ldpl.order_package_status='70',1,0)) @@ -293,20 +319,32 @@ and lww.document_making_time <= #{param.endTime} - group by YEAR(lww.document_making_time), - - waw.business_line, - - - lww.departure_warehouse_name, - - - lww.destination_warehouse_name, - - - lww.brand, - - MONTH(lww.document_making_time) + group by + + + YEAR(lww.document_making_time), + + + YEAR(lww.document_making_time), + QUARTER(lww.document_making_time), + + + YEAR(lww.document_making_time), + MONTH(lww.document_making_time), + + + waw.business_line, + + + lww.departure_warehouse_name, + + + lww.destination_warehouse_name, + + + lww.brand, + + diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportQuallityMapper.xml b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportQuallityMapper.xml index 9dce52b9a..5766a2110 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportQuallityMapper.xml +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportQuallityMapper.xml @@ -157,6 +157,12 @@ and lww.departure_warehouse_id = #{param.departureWarehouseId} and lww.destination_warehouse_id = #{param.destinationWarehouseId} and lww.brand = #{param.brand} + + and lww.create_time >= #{param.startTime} + + + and lww.create_time <= #{param.endTime} + and ltwt.refer = '发车前修改' @@ -188,8 +194,21 @@ lww.destination_warehouse_id destinationWarehouseId, lww.destination_warehouse_name destinationWarehouseName, lww.brand brand, - lww.waybill_status waybillStatus, + case when lww.waybill_status='10' then '部分入库' + when lww.waybill_status='20' then '入库' + when lww.waybill_status='30' then '部分中转' + when lww.waybill_status='40' then '中转' + when lww.waybill_status='50' then '目的仓部分到达' + when lww.waybill_status='60' then '目的仓到达' + when lww.waybill_status='70' then '配送部分装车' + when lww.waybill_status='80' then '配送装车' + when lww.waybill_status='90' then '部分签收' + when lww.waybill_status='100' then '已签收' + else '未知' end waybillStatus, lww.waybill_type waybillType, + CASE WHEN lww.waybill_type=1 THEN '订制品' + WHEN lww.waybill_type=2 THEN '零担' + ELSE '未知' END waybillType, lww.agent agent, lww.create_time createTime, ltwt.create_time applyTime, @@ -208,6 +227,12 @@ and lww.departure_warehouse_id = #{param.departureWarehouseId} and lww.destination_warehouse_id = #{param.destinationWarehouseId} and lww.brand = #{param.brand} + + and lww.create_time >= #{param.startTime} + + + and lww.create_time <= #{param.endTime} + and ltwt.refer = '发车前修改' diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportTimeMapper.xml b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportTimeMapper.xml index af2e2f0db..29b791686 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportTimeMapper.xml +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportTimeMapper.xml @@ -569,7 +569,7 @@ sum(ldpl.quantity) incomingNum, count(ltcls.id) outNum, sum(ldpl.quantity)-count(ltcls.id) noOutNum, - sum(if(ldpl.order_package_status='20' and now() < DATE_ADD( ldpl.create_time, INTERVAL #{param.hoursTime} HOUR ),1,0 )) noOutOverNum, + sum(if(ldpl.order_package_status='20' and now() > DATE_ADD( ldpl.create_time, INTERVAL #{param.hoursTime} HOUR ),1,0 )) noOutOverNum, sum(if(ltcll.start_date < DATE_ADD( ldpl.create_time, INTERVAL #{param.hoursTime} HOUR ),1,0)) outOnTimeNum, IFNULL(round(sum(if(ltcll.start_date < DATE_ADD( ldpl.create_time, INTERVAL #{param.hoursTime} HOUR ),1,0))/count(ltcls.id)*100,2),'0.00') outOnTimeRate, round(sum(TIMESTAMPDIFF(SECOND, ldpl.create_time, ltcll.start_date))/count(ltcls.id)/3600,1) avgTime @@ -638,7 +638,7 @@ sum(ldpl.quantity) incomingNum, count(ltcls.id) outNum, sum(ldpl.quantity)-count(ltcls.id) noOutNum, - sum(if(ldpl.order_package_status='20' and now() < DATE_ADD( ldpl.create_time, INTERVAL #{param.hoursTime} HOUR ),1,0 )) noOutOverNum, + sum(if(ldpl.order_package_status='20' and now() > DATE_ADD( ldpl.create_time, INTERVAL #{param.hoursTime} HOUR ),1,0 )) noOutOverNum, sum(if(ltcll.start_date <= DATE_ADD( ldpl.create_time, INTERVAL #{param.hoursTime} HOUR ),1,0)) outOnTimeNum, IFNULL(concat(round(sum(if(ltcll.start_date <= DATE_ADD( ldpl.create_time, INTERVAL #{param.hoursTime} HOUR ),1,0))/count(ltcls.id)*100,2),'%'),'0.00%') outOnTimeRate, round(sum(TIMESTAMPDIFF(SECOND, ldpl.create_time, ltcll.start_date))/count(ltcls.id)/3600,1) avgTime @@ -2547,8 +2547,8 @@ ldpl.create_time desIncomgingTime, round(TIMESTAMPDIFF(SECOND,ltad.create_time,ldpl.create_time)/3600,1) incomingHours, IFNULL(lrat.hours_time,#{param.hoursTime}) hoursTime, - case when round(TIMESTAMPDIFF(SECOND,ltad.create_time,ldpl.create_time)/3600,1)<=IFNULL(lrat.hours_time,#{param.hoursTime}) then '0' - when round(TIMESTAMPDIFF(SECOND,ltad.create_time,ldpl.create_time)/3600,1)>IFNULL(lrat.hours_time,#{param.hoursTime}) then '1' + case when round(TIMESTAMPDIFF(SECOND,ltad.create_time,IFNULL(ldpl.create_time,NOW()))/3600,1)<=IFNULL(lrat.hours_time,#{param.hoursTime}) then '0' + when round(TIMESTAMPDIFF(SECOND,ltad.create_time,IFNULL(ldpl.create_time,NOW()))/3600,1)>IFNULL(lrat.hours_time,#{param.hoursTime}) then '1' else '未知' end isOverTime from logpm_trunkline_advance_detail ltad left join logpm_trunkline_advance lta on lta.id = ltad.advance_id @@ -2589,14 +2589,14 @@ and ltad.train_number like concat('%',#{param.trainNumber},'%') - - and IF(ldpl.id IS NULL,0,1) = #{param.isDesIncomging} + + and IF(ldpl.id IS NULL,0,1) = #{param.isDesIncoming} - and round(TIMESTAMPDIFF(SECOND,ltad.create_time,ldpl.create_time)/3600,1)<=IFNULL(lrat.hours_time,#{param.hoursTime}) + and round(TIMESTAMPDIFF(SECOND,ltad.create_time,IFNULL(ldpl.create_time,NOW()))/3600,1)<=IFNULL(lrat.hours_time,#{param.hoursTime}) - and round(TIMESTAMPDIFF(SECOND,ltad.create_time,ldpl.create_time)/3600,1)>IFNULL(lrat.hours_time,#{param.hoursTime}) + and round(TIMESTAMPDIFF(SECOND,ltad.create_time,IFNULL(ldpl.create_time,NOW()))/3600,1)>IFNULL(lrat.hours_time,#{param.hoursTime}) and ldpl.id IS NOT NULL @@ -2606,7 +2606,7 @@ and ldpl.id IS NOT NULL - and round(TIMESTAMPDIFF(SECOND,ltad.create_time,ldpl.create_time)/3600,1)<=IFNULL(lrat.hours_time,#{param.hoursTime}) + and round(TIMESTAMPDIFF(SECOND,ltad.create_time,IFNULL(ldpl.create_time,NOW()))/3600,1)<=IFNULL(lrat.hours_time,#{param.hoursTime}) @@ -2639,8 +2639,8 @@ ldpl.create_time desIncomgingTime, round(TIMESTAMPDIFF(SECOND,ltad.create_time,ldpl.create_time)/3600,1) incomingHours, IFNULL(lrat.hours_time,#{param.hoursTime}) hoursTime, - case when round(TIMESTAMPDIFF(SECOND,ltad.create_time,ldpl.create_time)/3600,1)<=IFNULL(lrat.hours_time,#{param.hoursTime}) then '未超时' - when round(TIMESTAMPDIFF(SECOND,ltad.create_time,ldpl.create_time)/3600,1)>IFNULL(lrat.hours_time,#{param.hoursTime}) then '超时' + case when round(TIMESTAMPDIFF(SECOND,ltad.create_time,IFNULL(ldpl.create_time,NOW()))/3600,1)<=IFNULL(lrat.hours_time,#{param.hoursTime}) then '未超时' + when round(TIMESTAMPDIFF(SECOND,ltad.create_time,IFNULL(ldpl.create_time,NOW()))/3600,1)>IFNULL(lrat.hours_time,#{param.hoursTime}) then '超时' else '未知' end isOverTime from logpm_trunkline_advance_detail ltad left join logpm_trunkline_advance lta on lta.id = ltad.advance_id @@ -2681,14 +2681,14 @@ and ltad.train_number like concat('%',#{param.trainNumber},'%') - - and IF(ldpl.id IS NULL,0,1) = #{param.isDesIncomging} + + and IF(ldpl.id IS NULL,0,1) = #{param.isDesIncoming} - and round(TIMESTAMPDIFF(SECOND,ltad.create_time,ldpl.create_time)/3600,1)<=IFNULL(lrat.hours_time,#{param.hoursTime}) + and round(TIMESTAMPDIFF(SECOND,ltad.create_time,IFNULL(ldpl.create_time,NOW()))/3600,1)<=IFNULL(lrat.hours_time,#{param.hoursTime}) - and round(TIMESTAMPDIFF(SECOND,ltad.create_time,ldpl.create_time)/3600,1)>IFNULL(lrat.hours_time,#{param.hoursTime}) + and round(TIMESTAMPDIFF(SECOND,ltad.create_time,IFNULL(ldpl.create_time,NOW()))/3600,1)>IFNULL(lrat.hours_time,#{param.hoursTime}) and ldpl.id IS NOT NULL @@ -2698,7 +2698,7 @@ and ldpl.id IS NOT NULL - and round(TIMESTAMPDIFF(SECOND,ltad.create_time,ldpl.create_time)/3600,1)<=IFNULL(lrat.hours_time,#{param.hoursTime}) + and round(TIMESTAMPDIFF(SECOND,ltad.create_time,IFNULL(ldpl.create_time,NOW()))/3600,1)<=IFNULL(lrat.hours_time,#{param.hoursTime}) @@ -2776,8 +2776,8 @@ and ltad.train_number like concat('%',#{param.trainNumber},'%') - - and if(ltcll.start_date is null,0,1) = #{param.isDesIncomging} + + and if(ltcll.start_date is null,0,1) = #{param.isStarting} and round(TIMESTAMPDIFF(SECOND,ltad.incoming_time,IFNULL(ltcll.start_date,NOW()))/3600,1)<=#{param.hoursTime} @@ -2876,8 +2876,8 @@ and ltad.train_number like concat('%',#{param.trainNumber},'%') - - and if(ltcll.start_date is null,0,1) = #{param.isDesIncomging} + + and if(ltcll.start_date is null,0,1) = #{param.isStarting} and round(TIMESTAMPDIFF(SECOND,ltad.incoming_time,IFNULL(ltcll.start_date,NOW()))/3600,1)<=#{param.hoursTime} @@ -2929,9 +2929,9 @@ if(ltcll.start_date is null,0,1) isStarting, ltcll.start_date startTime, round(TIMESTAMPDIFF(SECOND,ldpl.create_time,IFNULL(ltcll.start_date,NOW()))/3600,1) startHours, - 72 hoursTime, - case when round(TIMESTAMPDIFF(SECOND,ldpl.create_time,IFNULL(ltcll.start_date,NOW()))/3600,1)<=72 then '未超时' - when round(TIMESTAMPDIFF(SECOND,ldpl.create_time,IFNULL(ltcll.start_date,NOW()))/3600,1)>72 then '超时' + #{param.hoursTime} hoursTime, + case when round(TIMESTAMPDIFF(SECOND,ldpl.create_time,IFNULL(ltcll.start_date,NOW()))/3600,1)<=#{param.hoursTime} then '0' + when round(TIMESTAMPDIFF(SECOND,ldpl.create_time,IFNULL(ltcll.start_date,NOW()))/3600,1)>#{param.hoursTime} then '1' else '未知' end isOverTime from logpm_distribution_parcel_list ldpl left join logpm_trunkline_advance lta on lta.id = ldpl.advance_id @@ -2976,8 +2976,8 @@ and ldpl.train_number like concat('%',#{param.trainNumber},'%') - - and if(ltcll.start_date is null,0,1) = #{param.isDesIncomging} + + and if(ltcll.start_date is null,0,1) = #{param.isStarting} and round(TIMESTAMPDIFF(SECOND,ldpl.create_time,IFNULL(ltcll.start_date,NOW()))/3600,1)<=#{param.hoursTime} @@ -2993,7 +2993,7 @@ and ltcls.id is null - and now() <= DATE_ADD( ldpl.create_time, INTERVAL #{param.hoursTime} HOUR ) + and now() >= DATE_ADD( ldpl.create_time, INTERVAL #{param.hoursTime} HOUR ) @@ -3027,9 +3027,9 @@ if(ltcll.start_date is null,0,1) isStarting, ltcll.start_date startTime, round(TIMESTAMPDIFF(SECOND,ldpl.create_time,IFNULL(ltcll.start_date,NOW()))/3600,1) startHours, - 72 hoursTime, - case when round(TIMESTAMPDIFF(SECOND,ldpl.create_time,IFNULL(ltcll.start_date,NOW()))/3600,1)<=72 then '未超时' - when round(TIMESTAMPDIFF(SECOND,ldpl.create_time,IFNULL(ltcll.start_date,NOW()))/3600,1)>72 then '超时' + #{param.hoursTime} hoursTime, + case when round(TIMESTAMPDIFF(SECOND,ldpl.create_time,IFNULL(ltcll.start_date,NOW()))/3600,1)<=#{param.hoursTime} then '未超时' + when round(TIMESTAMPDIFF(SECOND,ldpl.create_time,IFNULL(ltcll.start_date,NOW()))/3600,1)>#{param.hoursTime} then '超时' else '未知' end isOverTime from logpm_distribution_parcel_list ldpl left join logpm_trunkline_advance lta on lta.id = ldpl.advance_id @@ -3074,8 +3074,8 @@ and ldpl.train_number like concat('%',#{param.trainNumber},'%') - - and if(ltcll.start_date is null,0,1) = #{param.isDesIncomging} + + and if(ltcll.start_date is null,0,1) = #{param.isStarting} and round(TIMESTAMPDIFF(SECOND,ldpl.create_time,IFNULL(ltcll.start_date,NOW()))/3600,1)<=#{param.hoursTime} @@ -3091,7 +3091,7 @@ and ltcls.id is null - and now() <= DATE_ADD( ldpl.create_time, INTERVAL #{param.hoursTime} HOUR ) + and now() >= DATE_ADD( ldpl.create_time, INTERVAL #{param.hoursTime} HOUR ) diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportIncomingServiceImpl.java b/blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportIncomingServiceImpl.java index 6d85588f0..475019176 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportIncomingServiceImpl.java +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportIncomingServiceImpl.java @@ -515,79 +515,11 @@ public class ReportIncomingServiceImpl implements IReportIncomingService { page.setCurrent(reportIncomingDTO.getPageNum()); page.setSize(reportIncomingDTO.getPageSize()); - String year = reportIncomingDTO.getYear(); - String month = reportIncomingDTO.getMonth(); String startTimeStr = reportIncomingDTO.getStartTimeStr(); String endTimeStr = reportIncomingDTO.getEndTimeStr(); - String timeStr = null; - if(StringUtil.isNotBlank(startTimeStr) && StringUtil.isNotBlank(endTimeStr)){ - reportIncomingDTO.setStartTime(CommonUtil.getStartByDateStr(startTimeStr)); - reportIncomingDTO.setEndTime(CommonUtil.getEndByDateStr(endTimeStr)); - timeStr=startTimeStr+"至"+endTimeStr; - }else{ - if(StringUtil.isNotBlank(month)){ - Calendar instance = Calendar.getInstance(); - if(StringUtil.isBlank(year)){ - log.info("############deptIncomingPage:请选择年份"); - return R.fail(405,"请选择年份"); - } - try{ - SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM"); - SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); - - final Date parse = sdf.parse(year+"-"+month); - reportIncomingDTO.setStartTime(CommonUtil.StringToDate(sdf1.format(parse))); - final Calendar cal = Calendar.getInstance(); - cal.setTime(parse); - final int last = cal.getActualMaximum(Calendar.DAY_OF_MONTH); - cal.set(Calendar.DAY_OF_MONTH, last); - cal.add(Calendar.DATE, +1); - cal.add(Calendar.SECOND, -1); - reportIncomingDTO.setEndTime(cal.getTime()); - - timeStr = year+"年"+month+"月"; - - }catch (Exception e){ - log.info("############deptIncomingPage:"); - return R.fail(405,"请选择年份"); - } - }else{ - if(StringUtil.isNotBlank(year)){ - Calendar instance = Calendar.getInstance(); - instance.set(Calendar.YEAR,Integer.parseInt(year)); - instance.set(Calendar.MONTH,Calendar.JANUARY); - instance.set(Calendar.DAY_OF_MONTH,1); - instance.set(Calendar.HOUR_OF_DAY, 0); - instance.set(Calendar.MINUTE, 0); - instance.set(Calendar.SECOND, 0); - instance.set(Calendar.MILLISECOND, 0); - reportIncomingDTO.setStartTime(instance.getTime()); - instance.set(Calendar.MONTH,Calendar.DECEMBER); - instance.set(Calendar.DAY_OF_MONTH,31); - instance.set(Calendar.HOUR_OF_DAY, 23); - instance.set(Calendar.MINUTE, 59); - instance.set(Calendar.SECOND, 59); - instance.set(Calendar.MILLISECOND, 999); - reportIncomingDTO.setEndTime(instance.getTime()); - timeStr = year+"年"; - }else{ - Calendar instance = Calendar.getInstance(); - instance.set(Calendar.HOUR_OF_DAY, 23); - instance.set(Calendar.MINUTE, 59); - instance.set(Calendar.SECOND, 59); - instance.set(Calendar.MILLISECOND, 999); - reportIncomingDTO.setEndTime(instance.getTime()); - instance.add(Calendar.DATE, -7); - instance.set(Calendar.HOUR_OF_DAY, 0); - instance.set(Calendar.MINUTE, 0); - instance.set(Calendar.SECOND, 0); - instance.set(Calendar.MILLISECOND, 0); - reportIncomingDTO.setStartTime(instance.getTime()); - timeStr=CommonUtil.dateToStringGeneral(reportIncomingDTO.getStartTime())+"至"+CommonUtil.dateToStringGeneral(reportIncomingDTO.getEndTime()); - } - } - } + reportIncomingDTO.setStartTime(CommonUtil.getStartByDateStr(startTimeStr)); + reportIncomingDTO.setEndTime(CommonUtil.getEndByDateStr(endTimeStr)); IPage iPage = reportIncomingMapper.deptIncomingPageNew(page,reportIncomingDTO); @@ -598,7 +530,7 @@ public class ReportIncomingServiceImpl implements IReportIncomingService { .collect(Collectors.toMap(t-> t.getBusinessLine()+"&&"+t.getBrand()+"&&"+t.getDepartureWarehouseName()+"&&"+t.getDestinationWarehouseName()+"&&"+t.getNian()+"&&"+t.getYue(), reportDeptIncomingNumVO -> reportDeptIncomingNumVO)); List records = iPage.getRecords(); - String finalTimeStr = timeStr; +// String finalTimeStr = timeStr; records.forEach(reportDeptIncomingVO -> { String businessLine = reportDeptIncomingVO.getBusinessLine(); String brand = reportDeptIncomingVO.getBrand(); @@ -606,7 +538,7 @@ public class ReportIncomingServiceImpl implements IReportIncomingService { String destinationWarehouseName = reportDeptIncomingVO.getDestinationWarehouseName(); String nian = reportDeptIncomingVO.getNian(); String yue = reportDeptIncomingVO.getYue(); - reportDeptIncomingVO.setTimeStr(finalTimeStr); +// reportDeptIncomingVO.setTimeStr(finalTimeStr); ReportDeptIncomingNumVO reportDeptIncomingNumVO = map.get(businessLine + "&&" + brand + "&&" + departureWarehouseName + "&&" + destinationWarehouseName+"&&"+nian+"&&"+yue); if(!Objects.isNull(reportDeptIncomingNumVO)){ reportDeptIncomingVO.setStockNum(reportDeptIncomingNumVO.getStockNum()); diff --git a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/mapper/TrunklineCarsLoadMapper.xml b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/mapper/TrunklineCarsLoadMapper.xml index a0b330f74..23f7abe63 100644 --- a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/mapper/TrunklineCarsLoadMapper.xml +++ b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/mapper/TrunklineCarsLoadMapper.xml @@ -188,6 +188,9 @@ and Locate(#{param.loadCarsNo},ltcl.cars_no) > 0 + + and ltcl.load_status = #{param.loadStatus} + and ltcl.create_time >= #{param.createTimeStart} @@ -518,6 +521,7 @@ ltcl.is_settlement isSettlement, ltcl.customer_type customerType, ltcl.start_time startTime, + ltcl.arrive_time arriveTime, ltcl.plan_loading_number planLoadingNumber, ltcl.real_loading_number realLoadingNumber, ltcl.unload_number unloadNumber, diff --git a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderServiceImpl.java b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderServiceImpl.java index c1dca9926..490792a86 100644 --- a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderServiceImpl.java +++ b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/OpenOrderServiceImpl.java @@ -3061,9 +3061,6 @@ public class OpenOrderServiceImpl implements IOpenOrderService { String warehouseName = openOrderDTO.getWarehouseName(); String editReson = openOrderDTO.getEditReson(); String refer = openOrderDTO.getRefer(); - if(StringUtil.isBlank(refer)){ - refer = " "; - } List updateAdvanceDetailList = openOrderDTO.getUpdateAdvanceDetailList(); WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillId(waybillId); @@ -3149,9 +3146,14 @@ public class OpenOrderServiceImpl implements IOpenOrderService { advanceDetailService.updateBatchById(updateAdvanceDetailList); } -// String operationRemark = "修改运单"+waybillNo+",时间:"+ CommonUtil.dateToString(waybillEntity.getCreateTime())+","+updateMsg; + String operationRemark = "备注:" + refer + " 修改内容:" + updateMsg; + if(StringUtil.isBlank(refer)){ + operationRemark = "修改内容:" + updateMsg; + } + + //异步存入日志 - openOrderAsyncService.saveUpdateLog(waybillId, waybillNo, "888", editReson, "备注:" + refer + " 修改内容:" + updateMsg, AuthUtil.getNickName(), AuthUtil.getUserId(), warehouseId, warehouseName, waybillEntity); + openOrderAsyncService.saveUpdateLog(waybillId, waybillNo, "888", editReson, operationRemark, AuthUtil.getNickName(), AuthUtil.getUserId(), warehouseId, warehouseName, waybillEntity); // List wayBillDetailList = warehouseWaybillDetailClient.findListByWaybillNo(waybillNo); diff --git a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java index 5ff7690e6..467d4f92a 100644 --- a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java +++ b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java @@ -862,7 +862,14 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl scanLoadIds = trunklineCarsLoadScanService.findAllIdListByLoadIdAndScanStatus(loadId,"1"); -// List scanLoadIds = trunklineCarsLoadScanService.findAllIdListByLoadIdAndNoScanStatus(loadId,"3"); - List scanLoadIds = trunklineCarsLoadScanService.findAllIdListByLoadIdAndScanStatus(loadId,"2"); + return signLoadScanByIds(scanLoadIds,warehouseId); + }else if("2".equals(deliveryType)){ + List scanLoadIds = trunklineCarsLoadScanService.findAllIdListByLoadIdAndScanStatus(loadId,"2"); + + return signLoadScanByIds(scanLoadIds,warehouseId); - return signLoadScanByIds(scanLoadIds,warehouseId); + }else{ + log.warn("#############signCars: 三方中转送货方式不存在 loadId={}", loadId); + return R.fail(405,"三方中转送货方式不存在"); + } + + +// List scanLoadIds = trunklineCarsLoadScanService.findAllIdListByLoadIdAndNoScanStatus(loadId,"3"); +// List scanLoadIds = trunklineCarsLoadScanService.findAllIdListByLoadIdAndScanStatus(loadId,"2"); +// +// return signLoadScanByIds(scanLoadIds,warehouseId); // carsLoadEntity.setSignTime(new Date()); // carsLoadEntity.setLoadStatus("90"); @@ -3404,6 +3427,15 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl page = new Page<>(); page.setCurrent(loadCarsDTO.getPageNum()); page.setSize(loadCarsDTO.getPageSize()); @@ -3439,7 +3471,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl map = new HashMap<>(); + map.put("data", pageList); + + String loadType = carsLoadEntity.getLoadType(); + String deliveryType = carsLoadEntity.getDeliveryType(); + + map.put("loadType",loadType); + map.put("deliveryType",deliveryType); + + return R.data(map); } @Override @@ -10792,9 +10834,20 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl !"20".equals(parcelListEntity.getOrderPackageStatus())) .collect(Collectors.toList()); + int allTotal = packageList.size(); + + if(CollUtil.isNotEmpty(noStockParcelListEntityList)){ - log.warn("##################loadingTrayPackageList: 存在不在库的包件 warehouseId={}", warehouseId); - throw new CustomerException(405, "存在不在库的包件"); + + int size = noStockParcelListEntityList.size(); + if(NumberUtil.equals(allTotal,size)){ + log.warn("##################loadingTrayPackageList: 托盘已经装车 warehouseId={}", warehouseId); + throw new CustomerException(405, "托盘已经装车"); + }else{ + log.warn("##################loadingTrayPackageList: 托盘数据异常 warehouseId={}", warehouseId); + throw new CustomerException(405, "托盘数据异常,请联系管理员"); + } + } List noPlanPackageList = new ArrayList<>(); diff --git a/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/config/MyBatisConfig.java b/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/config/MyBatisConfig.java new file mode 100644 index 000000000..cc8b28d8b --- /dev/null +++ b/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/config/MyBatisConfig.java @@ -0,0 +1,12 @@ +package com.logpm.warehouse.config; + +import com.logpm.warehouse.interceptor.MasterCommentInterceptor; +import org.springframework.context.annotation.Bean; + +//@Configuration +public class MyBatisConfig { + @Bean + public MasterCommentInterceptor masterCommentInterceptor() { + return new MasterCommentInterceptor(); + } +} diff --git a/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/interceptor/MasterCommentInterceptor.java b/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/interceptor/MasterCommentInterceptor.java new file mode 100644 index 000000000..94afbf7e8 --- /dev/null +++ b/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/interceptor/MasterCommentInterceptor.java @@ -0,0 +1,100 @@ +package com.logpm.warehouse.interceptor; + +import org.apache.ibatis.executor.Executor; +import org.apache.ibatis.mapping.BoundSql; +import org.apache.ibatis.mapping.MappedStatement; +import org.apache.ibatis.plugin.*; +import org.apache.ibatis.session.ResultHandler; +import org.apache.ibatis.session.RowBounds; +import org.springblade.common.annotations.Master; + +import java.lang.reflect.Method; +import java.util.Properties; + +@Intercepts({ + @Signature( + type = Executor.class, + method = "query", + args = {MappedStatement.class, Object.class, RowBounds.class, ResultHandler.class} + ) +}) +public class MasterCommentInterceptor implements Interceptor { + + @Override + public Object intercept(Invocation invocation) throws Throwable { + // 获取当前执行的 MappedStatement + MappedStatement ms = (MappedStatement) invocation.getArgs()[0]; + + // 检查方法是否标记了 @Master 注解 + Method method = getMethodFromMappedStatement(ms); + if (method != null && method.isAnnotationPresent(Master.class)) { + // 获取原始 SQL + BoundSql boundSql = ms.getBoundSql(invocation.getArgs()[1]); + String originalSql = boundSql.getSql(); + + // 添加 /*master*/ 注释 + String newSql = "/*FORCE_MASTER*/ " + originalSql; + + // 创建新的 BoundSql 和 MappedStatement + BoundSql newBoundSql = new BoundSql( + ms.getConfiguration(), + newSql, + boundSql.getParameterMappings(), + boundSql.getParameterObject() + ); + MappedStatement newMs = rebuildMappedStatement(ms, newBoundSql); + + // 替换原参数中的 MappedStatement + invocation.getArgs()[0] = newMs; + } + return invocation.proceed(); + } + + // 根据 MappedStatement 获取对应的 Method + private Method getMethodFromMappedStatement(MappedStatement ms) { + try { + String methodName = ms.getId().substring(ms.getId().lastIndexOf(".") + 1); + Class mapperClass = Class.forName(ms.getId().substring(0, ms.getId().lastIndexOf("."))); + for (Method method : mapperClass.getMethods()) { + if (method.getName().equals(methodName)) { + return method; + } + } + } catch (ClassNotFoundException e) { + // 忽略异常 + } + return null; + } + + // 重建 MappedStatement(避免缓存污染) + private MappedStatement rebuildMappedStatement(MappedStatement ms, BoundSql newBoundSql) { + MappedStatement.Builder builder = new MappedStatement.Builder( + ms.getConfiguration(), + ms.getId() + "-master", + ms.getSqlSource(), + ms.getSqlCommandType() + ); + builder.resource(ms.getResource()) + .fetchSize(ms.getFetchSize()) + .statementType(ms.getStatementType()) + .keyGenerator(ms.getKeyGenerator()) + .keyProperty(String.join(",", ms.getKeyProperties())) + .timeout(ms.getTimeout()) + .parameterMap(ms.getParameterMap()) + .resultMaps(ms.getResultMaps()) + .resultSetType(ms.getResultSetType()) + .cache(ms.getCache()) + .flushCacheRequired(ms.isFlushCacheRequired()) + .useCache(ms.isUseCache()) + .databaseId(ms.getDatabaseId()); + return builder.build(); + } + + @Override + public Object plugin(Object target) { + return Plugin.wrap(target, this); + } + + @Override + public void setProperties(Properties properties) {} +} diff --git a/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/impl/WarehouseTrayTypeServiceImpl.java b/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/impl/WarehouseTrayTypeServiceImpl.java index b30f75827..b4596610f 100644 --- a/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/impl/WarehouseTrayTypeServiceImpl.java +++ b/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/impl/WarehouseTrayTypeServiceImpl.java @@ -495,8 +495,14 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl orderPackageCodes) { @@ -508,15 +511,21 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl Date: Mon, 17 Mar 2025 15:52:35 +0800 Subject: [PATCH 16/22] =?UTF-8?q?1.=E4=BB=A3=E7=A0=81=E8=BF=98=E5=8E=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../logpm/warehouse/config/MyBatisConfig.java | 8 +++---- .../interceptor/MasterCommentInterceptor.java | 21 +++++++++---------- 2 files changed, 14 insertions(+), 15 deletions(-) diff --git a/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/config/MyBatisConfig.java b/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/config/MyBatisConfig.java index cc8b28d8b..f8714ac57 100644 --- a/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/config/MyBatisConfig.java +++ b/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/config/MyBatisConfig.java @@ -5,8 +5,8 @@ import org.springframework.context.annotation.Bean; //@Configuration public class MyBatisConfig { - @Bean - public MasterCommentInterceptor masterCommentInterceptor() { - return new MasterCommentInterceptor(); - } +// @Bean +// public MasterCommentInterceptor masterCommentInterceptor() { +// return new MasterCommentInterceptor(); +// } } diff --git a/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/interceptor/MasterCommentInterceptor.java b/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/interceptor/MasterCommentInterceptor.java index 94afbf7e8..f644bd783 100644 --- a/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/interceptor/MasterCommentInterceptor.java +++ b/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/interceptor/MasterCommentInterceptor.java @@ -1,23 +1,22 @@ package com.logpm.warehouse.interceptor; -import org.apache.ibatis.executor.Executor; import org.apache.ibatis.mapping.BoundSql; import org.apache.ibatis.mapping.MappedStatement; -import org.apache.ibatis.plugin.*; -import org.apache.ibatis.session.ResultHandler; -import org.apache.ibatis.session.RowBounds; +import org.apache.ibatis.plugin.Interceptor; +import org.apache.ibatis.plugin.Invocation; +import org.apache.ibatis.plugin.Plugin; import org.springblade.common.annotations.Master; import java.lang.reflect.Method; import java.util.Properties; -@Intercepts({ - @Signature( - type = Executor.class, - method = "query", - args = {MappedStatement.class, Object.class, RowBounds.class, ResultHandler.class} - ) -}) +//@Intercepts({ +// @Signature( +// type = Executor.class, +// method = "query", +// args = {MappedStatement.class, Object.class, RowBounds.class, ResultHandler.class} +// ) +//}) public class MasterCommentInterceptor implements Interceptor { @Override From a8a54fa419671a9ccc7076e343d0bc5296001ea8 Mon Sep 17 00:00:00 2001 From: zhenghaoyu Date: Mon, 17 Mar 2025 16:45:52 +0800 Subject: [PATCH 17/22] =?UTF-8?q?1.=E8=A3=85=E8=BD=A6=E6=98=8E=E7=BB=86?= =?UTF-8?q?=E9=80=BB=E8=BE=91=E8=BF=98=E5=8E=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../impl/TrunklineCarsLoadServiceImpl.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java index 467d4f92a..c3b1b681d 100644 --- a/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java +++ b/blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java @@ -3472,16 +3472,16 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl map = new HashMap<>(); - map.put("data", pageList); - - String loadType = carsLoadEntity.getLoadType(); - String deliveryType = carsLoadEntity.getDeliveryType(); +// Map map = new HashMap<>(); +// map.put("data", pageList); +// +// String loadType = carsLoadEntity.getLoadType(); +// String deliveryType = carsLoadEntity.getDeliveryType(); - map.put("loadType",loadType); - map.put("deliveryType",deliveryType); +// map.put("loadType",loadType); +// map.put("deliveryType",deliveryType); - return R.data(map); + return R.data(pageList); } @Override From 390cf35318953adf7104637b86c99f1f983daf8a Mon Sep 17 00:00:00 2001 From: zhenghaoyu Date: Mon, 17 Mar 2025 17:09:05 +0800 Subject: [PATCH 18/22] =?UTF-8?q?1.=E6=8A=A5=E8=A1=A8bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../report/mapper/ReportIncomingMapper.xml | 59 ++++++++++++------- .../impl/ReportIncomingServiceImpl.java | 5 +- .../report/vo/ReportDeptIncomingNumVO.java | 1 + 3 files changed, 43 insertions(+), 22 deletions(-) diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportIncomingMapper.xml b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportIncomingMapper.xml index a00d7a10b..0247cbc31 100644 --- a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportIncomingMapper.xml +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportIncomingMapper.xml @@ -103,7 +103,7 @@ YEAR(lww.document_making_time) timeStr, - CONCAT(YEAR(lww.document_making_time),'-',QUARTER(lww.document_making_time)) timeStr, + CONCAT(YEAR(lww.document_making_time),'-Q',QUARTER(lww.document_making_time)) timeStr, CONCAT(YEAR(lww.document_making_time),'-',MONTH(lww.document_making_time)) timeStr, @@ -274,7 +274,7 @@ YEAR(lww.document_making_time) timeStr, - CONCAT(YEAR(lww.document_making_time),'-',QUARTER(lww.document_making_time)) timeStr, + CONCAT(YEAR(lww.document_making_time),'-Q',QUARTER(lww.document_making_time)) timeStr, CONCAT(YEAR(lww.document_making_time),'-',MONTH(lww.document_making_time)) timeStr, @@ -437,8 +437,15 @@ '全部' brand, - YEAR(lww.document_making_time) nian, - MONTH(lww.document_making_time) yue, + + YEAR(lww.document_making_time) timeStr, + + + CONCAT(YEAR(lww.document_making_time),'-Q',QUARTER(lww.document_making_time)) timeStr, + + + CONCAT(YEAR(lww.document_making_time),'-',MONTH(lww.document_making_time)) timeStr, + count(lww.id) waybillNum, sum(lww.total_count) num, sum(IFNULL(lww.total_weight,0)) weight, @@ -487,22 +494,34 @@ and lww.document_making_time <= #{param.endTime} - group by YEAR(lww.document_making_time), - - waw.business_line, - - - lww.departure_warehouse_id, - lww.departure_warehouse_name, - - - lww.destination_warehouse_id, - lww.destination_warehouse_name, - - - lww.brand, - - MONTH(lww.document_making_time) + group by + + + YEAR(lww.document_making_time), + + + YEAR(lww.document_making_time), + QUARTER(lww.document_making_time), + + + YEAR(lww.document_making_time), + MONTH(lww.document_making_time), + + + waw.business_line, + + + lww.departure_warehouse_id, + lww.departure_warehouse_name, + + + lww.destination_warehouse_id, + lww.destination_warehouse_name, + + + lww.brand, + +