Browse Source

Merge remote-tracking branch 'origin/dev' into dev

visual
pref_mail@163.com 5 months ago
parent
commit
09e289140e
  1. 4
      blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/entity/AftersalesWorkOrderEntity.java
  2. 1
      blade-service-api/logpm-trunkline-api/src/main/java/com/logpm/trunkline/dto/LoadCarsDTO.java
  3. 14
      blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/controller/AftersalesWorkOrderController.java
  4. 29
      blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/excel/AftersalesWorkOrderExcel.java
  5. 3
      blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesWorkOrderMapper.java
  6. 179
      blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesWorkOrderMapper.xml
  7. 7
      blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/IAftersalesWorkOrderService.java
  8. 56
      blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/impl/AftersalesWorkOrderServiceImpl.java
  9. 26
      blade-service/logpm-patch/src/main/java/com/logpm/patch/jobhandle/SyncOrderInfoToPlatform.java
  10. 16
      blade-service/logpm-patch/src/main/java/com/logpm/patch/mapper/WarehouseMappingDataMapper.java
  11. 50
      blade-service/logpm-patch/src/main/java/com/logpm/patch/mapper/WarehouseMappingDataMapper.xml
  12. 10
      blade-service/logpm-patch/src/main/java/com/logpm/patch/service/IWarehouseMappingDataService.java
  13. 27
      blade-service/logpm-patch/src/main/java/com/logpm/patch/service/impl/WarehouseMappingDataServiceImpl.java
  14. 45
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/controller/CarsLoadController.java
  15. 144
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/excel/TrunklineCarsLoadExcel.java
  16. 8
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/mapper/TrunklineCarsLoadMapper.java
  17. 152
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/mapper/TrunklineCarsLoadMapper.xml
  18. 7
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/ITrunklineCarsLoadService.java
  19. 23
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java

4
blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/entity/AftersalesWorkOrderEntity.java

@ -312,6 +312,10 @@ public class AftersalesWorkOrderEntity extends TenantEntity {
private String totalAmountNum;
@TableField(exist=false)
private String workOrderStatusNameS;
@TableField(exist=false)
private String resultTypes;
@TableField(exist=false)
private String compensationMethods;

1
blade-service-api/logpm-trunkline-api/src/main/java/com/logpm/trunkline/dto/LoadCarsDTO.java

@ -213,5 +213,6 @@ public class LoadCarsDTO implements Serializable {
private String arriveTime;
private String createUserName;
private String createTime;
private String ids;
}

14
blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/controller/AftersalesWorkOrderController.java

@ -722,6 +722,20 @@ public class AftersalesWorkOrderController extends BladeController {
ExcelUtil.export(response, "异常工单数据" + DateUtil.time(), "异常工单数据", list, AftersalesWorkOrderExcel.class);
}
/**
* 导出数据
*
*/
@GetMapping("/exportWorkOrder")
@ApiOperationSupport(order = 9)
@ApiOperation(value = "导出数据", notes = "传入aftersalesWorkOrder")
public void exportWorkOrder(@ApiIgnore @RequestParam Map<String, Object> aftersalesWorkOrder, BladeUser bladeUser, HttpServletResponse response) {
// List<AftersalesWorkOrderExcel> list = aftersalesWorkOrderService.exportAftersalesWorkOrder(aftersalesWorkOrder);
List<AftersalesWorkOrderExcel> list = aftersalesWorkOrderService.exportWorkOrder(aftersalesWorkOrder);
ExcelUtil.export(response, "异常工单数据" + DateUtil.time(), "异常工单数据", list, AftersalesWorkOrderExcel.class);
}
@GetMapping("/exportAftersalesWorkOrderList")
@ApiOperationSupport(order = 9)
@ApiOperation(value = "导出数据", notes = "传入aftersalesWorkOrder")

29
blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/excel/AftersalesWorkOrderExcel.java

@ -49,8 +49,7 @@ public class AftersalesWorkOrderExcel implements Serializable {
@ColumnWidth(20)
@ExcelProperty("工单异常类型")
private String workOrderTypeName;
@ExcelIgnore //工单异常类型
private String workOrderType;
/**
* 发现节点;提货发货干线库内配送其他签收PC安装PC
*/
@ -107,7 +106,8 @@ public class AftersalesWorkOrderExcel implements Serializable {
*/
@ColumnWidth(20)
@ExcelProperty("工单状态")
private String workOrderStatus;
private String workOrderStatusName;
@ColumnWidth(20)
@ExcelProperty("品牌")
private String brandName;
@ -241,4 +241,27 @@ public class AftersalesWorkOrderExcel implements Serializable {
private String processNumber;
/**
* 钉钉流程号
*/
@ColumnWidth(20)
@ExcelProperty("赔款金额")
private String totalAmountNum;
/**
* 钉钉流程号
*/
@ColumnWidth(20)
@ExcelProperty("处理结果")
private String resultTypes;
/**
* 钉钉流程号
*/
@ColumnWidth(20)
@ExcelProperty("赔付方式")
private String compensationMethods;
}

3
blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesWorkOrderMapper.java

@ -108,4 +108,7 @@ public interface AftersalesWorkOrderMapper extends BaseMapper<AftersalesWorkOrde
List<AftersalesWorkOrderExcel> selectWaitAftersalesWorkOrderList(@Param("warehouseIds")List<Long> warehouseListIds);
List<AftersalesWorkOrderExcel> exportListOwn(@Param("param") AftersalesWorkOrderEntity workOrderEntity);
}

179
blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesWorkOrderMapper.xml

@ -89,7 +89,183 @@
lawo.customer_service_name customerServiceName,
lawo.warehouse_id warehouseId,
lawo.investigation_process investigationProcess,
lawo.customer_service_id customerServiceId
lawo.customer_service_id customerServiceId,
IFNULL( sum( lapr.money ), 0 ) AS totalAmountNum,
GROUP_CONCAT(DISTINCT lapr.result_type) AS resultTypes,
GROUP_CONCAT(DISTINCT lapr.compensation_method) AS compensationMethods
FROM
logpm_aftersales_work_order lawo
LEFT JOIN logpm_aftersales_processor lap ON lawo.id = lap.work_order_id
AND lap.types_of = '2'
AND lap.conditions IN ( 1, 2 )
LEFT JOIN logpm_aftersales_completion_record lacr ON lacr.work_order_id = lawo.id
AND lacr.is_deleted = '0'
LEFT JOIN (SELECT
a.id,
group_concat( DISTINCT b.`first` SEPARATOR ',' ) AS `first`,
group_concat( DISTINCT b.secondary SEPARATOR ',' ) AS secondary,
group_concat( DISTINCT b.brand_name SEPARATOR ',' ) AS brand_name,
group_concat( DISTINCT b.package_code SEPARATOR ',' ) AS package_code,
group_concat( DISTINCT b.waybill_number SEPARATOR ',' ) AS waybill_number
FROM
logpm_aftersales_work_order AS a
LEFT JOIN logpm_aftersales_abnormal_package AS b ON a.id = b.work_order_id
WHERE
a.is_deleted = 0
AND b.is_deleted = 0
GROUP BY
a.id) AS t ON t.id = lawo.id
LEFT JOIN logpm_aftersales_processing_results AS lapr ON lapr.work_order_id = lawo.id
<where>
lawo.is_deleted = 0
<if test="param.workOrderStatusNameS != null and param.workOrderStatusNameS != '' ">and lawo.work_order_status = #{param.workOrderStatusNameS } </if>
<if test="param.id != null and param.id != '' ">and lawo.id = #{param.id } </if>
<if test="param.workOrderType != null and param.workOrderType != '' ">and lawo.work_order_type = #{param.workOrderType } </if>
<if test="param.initiationIdentification != null and param.initiationIdentification != '' ">and lawo.initiation_identification = #{param.initiationIdentification } </if>
<if test="param.discoveryNode != null and param.discoveryNode != '' ">and lawo.discovery_node = #{param.discoveryNode } </if>
<if test="param.workOrderNumber != null and param.workOrderNumber != '' ">and lawo.work_order_number like concat('%',#{param.workOrderNumber },'%') </if>
<if test="param.waybillNumber != null and param.waybillNumber != '' ">and lawo.waybill_number like concat('%', #{param.waybillNumber },'%') </if>
<if test="param.orderCode != null and param.orderCode != '' ">and lawo.order_code like concat('%', #{param.orderCode },'%') </if>
<if test="param.trainNumber != null and param.trainNumber != '' ">and lawo.train_number like concat('%', #{param.trainNumber },'%') </if>
<if test="param.vehicleRoute != null and param.vehicleRoute != '' ">and lawo.vehicle_route like concat('%', #{param.vehicleRoute },'%') </if>
<if test="param.deliverGoodsTime != null ">and date_format(from_unixtime( lawo.deliver_goods_time),'%Y-%m-%d') = date_format(#{param.deliverGoodsTime },'%Y-%m-%d') </if>
<if test="param.discoveryTime != null ">and date_format(from_unixtime(lawo.discovery_time),'%Y-%m-%d') = date_format( #{param.discoveryTime},'%Y-%m-%d') </if>
<if test="param.warehousingTime != null "> and date_format(from_unixtime(lawo.warehousing_time),'%Y-%m-%d') = date_format( #{param.warehousingTime},'%Y-%m-%d') </if>
<if test="param.deliveryTime != null ">and date_format(from_unixtime( lawo.delivery_time),'%Y-%m-%d') = date_format(#{param.deliveryTime} param.deliveryTime,'%Y-%m-%d') </if>
<if test="param.auditTime != null ">and date_format(from_unixtime(lawo.audit_time),'%Y-%m-%d') = date_format(#{param.auditTime},'%Y-%m-%d') </if>
<if test="param.entryTime != null ">and date_format(from_unixtime(lawo.entry_time),'%Y-%m-%d') = date_format(#{param.entryTime},'%Y-%m-%d') </if>
<if test="param.overTime != null ">and date_format(from_unixtime(lawo.over_time),'%Y-%m-%d') = date_format(#{param.overTime}),'%Y-%m-%d') </if>
<if test="param.waybillMall != null and param.waybillMall != '' ">and lawo.waybill_mall like concat('%', #{param.waybillMall },'%') </if>
<if test="param.deliveryDriver != null and param.deliveryDriver != '' ">and lawo.delivery_driver = #{param.deliveryDriver } </if>
<if test="param.customerServiceState != null and param.customerServiceState == 30 "> and lawo.work_order_status in ('40') </if>
<if test="param.customerServiceState != null and param.customerServiceState == 40 "> and lawo.work_order_status in ('20') </if>
<if test="param.customerServiceState != null and param.customerServiceState == 31 "> and lawo.work_order_status in ('30') </if>
<if test="param.customerServiceState != null and param.customerServiceState == 60 "> and lawo.work_order_status in ('30') </if>
<if test="param.customerServiceState != null and param.customerServiceState == 10 "> and lawo.work_order_status in ('70','80','100') </if>
<if test="param.customerServiceId != null and param.customerServiceId != '' ">and lawo.customer_service_id = #{param.customerServiceId } </if>
<if test="param.customerServiceName != null and param.customerServiceName != '' ">and lawo.customer_service_name like concat('%', #{param.customerServiceName },'%') </if>
<if test="param.waybillMallId != null and param.waybillMallId != '' ">and lawo.waybill_mall_id = #{param.waybillMallId } </if>
<if test="param.problemDescription != null and param.problemDescription != '' ">and lawo.problem_description = #{param.problemDescription} </if>
<if test="param.warehouseId != null and param.warehouseId != '' and param.handleStatus != null ">and (lap.warehouse_id = #{param.warehouseId} OR lap.business_id = #{param.warehouseId}) </if>
<if test="param.personResponsible != null and param.personResponsible != '' ">and lawo.person_responsible = #{param.personResponsible } </if>
<if test="param.processNumber != null and param.processNumber != '' ">and lawo.process_number = #{param.processNumber } </if>
<if test="param.reviewedBy != null and param.reviewedBy != '' ">and lawo.reviewed_by = #{param.reviewedBy } </if>
<if test="param.operator != null and param.operator != '' ">and lawo.operator = #{param.operator } </if>
<if test="param.responsiblePerson != null and param.responsiblePerson != '' ">and lawo.responsible_person = #{param.responsiblePerson } </if>
<if test="param.processedBy != null and param.processedBy != '' ">and lawo.processed_by = #{param.processedBy} </if>
<if test="param.investigationProcess != null and param.investigationProcess != '' ">and lawo.investigation_process = #{param.investigationProcess } </if>
<if test="param.relatedWorkOrdersId != null and param.relatedWorkOrdersId != '' ">and lawo.related_work_orders_id = #{param.relatedWorkOrdersId } </if>
<if test="param.workOrderStatus != null and param.workOrderStatus != ''">and lawo.work_order_status in( #{param.workOrderStatus }) </if>
<if test="param.customerIdentification != null and param.customerIdentification == 1 ">
and lawo.work_order_status IN ( '10', '20', '21', '30', '40', '50', '60', '70', '80', '90' ,'100','110')
</if>
<if test="param.handleStatus != null and param.handleStatus == 40 "> and lawo.work_order_status in ('10') and lap.types_of = '2' and lap.processing_status in ('1') </if>
<if test="param.handleStatus != null and param.handleStatus == 50 "> and lawo.work_order_status in ('20') and lap.types_of = '2' </if>
<if test="param.handleStatus!= null and param.handleStatus == 30"> and lawo.work_order_status in (21,30) and lap.processing_status = '4' </if>
<if test="param.handleStatus!= null and param.handleStatus == 10 ">and lap.types_of = '2' </if>
<if test="param.handleStatus!= null and param.handleStatus == 20 ">and ((lawo.work_order_status in (80,100,70) OR lacr.warehouse_id=#{param.warehouseId})) </if>
<if test="param.workOrderType != null and param.workOrderType != '' ">and lawo.work_order_type = #{param.workOrderType } </if>
<if test="param.discoveryNode != null and param.discoveryNode != '' ">and lawo.discovery_node = #{param.discoveryNode } </if>
<if test="param.workOrderNumber != null and param.workOrderNumber != '' ">and lawo.work_order_number like concat('%',#{param.workOrderNumber },'%') </if>
<if test="param.trainNumber != null and param.trainNumber != '' ">and lawo.train_number like concat('%', #{param.trainNumber },'%') </if>
<if test="param.vehicleRoute != null and param.vehicleRoute != '' ">and lawo.vehicle_route like concat('%', #{param.vehicleRoute },'%') </if>
<if test="param.workOrderStatus != null and param.workOrderStatus != '' and param.handleStatus != 40 "> and lawo.work_order_status in ( #{param.workOrderStatus }) </if>
<if test="param.customerServiceState!= null and param.customerServiceState == 80 ">and lawo.work_order_status in ('10') </if>
<if test="param.first != null and param.first != '' ">and t.first like concat('%',#{param.first},'%') </if>
<if test="param.secondary != null and param.secondary != '' ">and t.secondary like concat('%',#{param.secondary},'%') </if>
<if test="param.brandName != null and param.brandName != '' ">and t.brand_name like concat('%',#{param.brandName},'%') </if>
<if test="param.waybillNumber != null and param.waybillNumber != ''">and t.waybill_number like concat('%',#{param.waybillNumber},'%') </if>
<if test="param.packageCode != null and param.packageCode != ''">and t.package_code like concat('%',#{param.packageCode},'%') </if>
</where>
group by lawo.id
ORDER BY lawo.create_time DESC
</select>
<select id="exportListOwn" resultType="com.logpm.aftersales.excel.AftersalesWorkOrderExcel">
SELECT DISTINCT
lawo.id,
CASE
lawo.work_order_type
WHEN 1 THEN
'货损'
WHEN 2 THEN
'少货'
WHEN 3 THEN
'窜货'
WHEN 4 THEN
'加急'
WHEN 5 THEN
'其他' ELSE '未知类型'
END workOrderTypeName,
CASE
lawo.discovery_node
WHEN 1 THEN
'提货环节'
WHEN 2 THEN
'发货环节'
WHEN 3 THEN
'干线卸车环节'
WHEN 4 THEN
'库内作业环节'
WHEN 5 THEN
'配送装车环节'
WHEN 6 THEN
'配送签收环节'
WHEN 7 THEN
'安装环节'
WHEN 7 THEN
'其他' ELSE '未知节点'
END discoveryNodeName,
CASE
lawo.work_order_status
WHEN '10' THEN '待处理'
WHEN '20' THEN '处理中'
WHEN '30' THEN '已处理'
WHEN '40' THEN '待审核'
WHEN '50' THEN '已审核'
WHEN '60' THEN '超时未处理'
WHEN '70' THEN '客服介入中'
WHEN '80' THEN '仲裁中'
WHEN '90' THEN '理赔金额未出'
WHEN '21' THEN '处理结果已提交'
WHEN '100' THEN '申述中'
WHEN '110' THEN '已结束' ELSE '未知状态'
END workOrderStatusName,
lawo.work_order_number,
lawo.order_code,
lawo.train_number,
t.`first` AS `first`,
t.secondary AS secondary,
t.brand_name AS brandName,
t.waybill_number AS waybillNumber,
t.package_code AS packageCode,
lawo.vehicle_route,
lawo.deliver_goods_time,
lawo.discovery_time,
lawo.warehousing_time,
lawo.waybill_mall,
lawo.remarks,
lawo.delivery_time,
lawo.delivery_driver,
lawo.problem_description,
lawo.responsible_person,
lawo.processed_by,
lawo.create_time,
lawo.over_time,
lawo.reviewed_by,
lawo.audit_time,
lawo.entry_time,
lawo.operator,
lawo.person_responsible,
lawo.process_number,
lawo.customer_service_name customerServiceName,
lawo.warehouse_id warehouseId,
lawo.investigation_process investigationProcess,
lawo.customer_service_id customerServiceId,
IFNULL( sum( lapr.money ), 0 ) AS totalAmountNum,
GROUP_CONCAT(DISTINCT lapr.result_type) AS resultTypes,
GROUP_CONCAT(DISTINCT lapr.compensation_method) AS compensationMethods
FROM
logpm_aftersales_work_order lawo
LEFT JOIN logpm_aftersales_processor lap ON lawo.id = lap.work_order_id
@ -112,6 +288,7 @@
AND b.is_deleted = 0
GROUP BY
a.id) AS t ON t.id = lawo.id
LEFT JOIN logpm_aftersales_processing_results AS lapr ON lapr.work_order_id = lawo.id
<where>
lawo.is_deleted = 0
<if test="param.workOrderStatusNameS != null and param.workOrderStatusNameS != '' ">and lawo.work_order_status = #{param.workOrderStatusNameS } </if>

7
blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/IAftersalesWorkOrderService.java

@ -300,4 +300,11 @@ public interface IAftersalesWorkOrderService extends BaseService<AftersalesWorkO
AftersalesWorkOrderListExcelDTO exportAftersalesWorkOrderList();
/**
* 工单导出
* @param aftersalesWorkOrder
* @return
*/
List<AftersalesWorkOrderExcel> exportWorkOrder(Map<String, Object> aftersalesWorkOrder);
}

56
blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/impl/AftersalesWorkOrderServiceImpl.java

@ -260,7 +260,7 @@ public class AftersalesWorkOrderServiceImpl extends BaseServiceImpl<AftersalesWo
BeanUtil.copyProperties(i, aftersalesWorkOrderExcel);
aftersalesWorkOrderList.add(aftersalesWorkOrderExcel);
aftersalesWorkOrderExcel.setWorkOrderTypeName(DictBizCache.getValue(DictBizConstant.PC_WORK_ORDER, i.getWorkOrderStatus()));
aftersalesWorkOrderExcel.setWorkOrderStatus(DictBizCache.getValue(DictBizConstant.WORK_ORDER_STATUS, i.getWorkOrderStatus()));
// aftersalesWorkOrderExcel.setWorkOrderStatus(DictBizCache.getValue(DictBizConstant.WORK_ORDER_STATUS, i.getWorkOrderStatus()));
if ("PC".equals(aftersalesWorkOrderExcel.getInitiationIdentification())) {
//PC
aftersalesWorkOrderExcel.setDiscoveryNodeName(DictBizCache.getValue(DictBizConstant.PC_DISCOVERY_NODE, i.getDiscoveryNode()));
@ -2587,4 +2587,58 @@ public class AftersalesWorkOrderServiceImpl extends BaseServiceImpl<AftersalesWo
return null;
}
@Override
public List<AftersalesWorkOrderExcel> exportWorkOrder(Map<String, Object> aftersalesWorkOrder) {
String o = (String) aftersalesWorkOrder.get("ids");
if (!Objects.isNull(o)) {
aftersalesWorkOrder.put("ids", o);
}
//查询用户角色信息
BladeUser user = AuthUtil.getUser();
String roleName = user.getRoleName();
//查询客服岗位
List<DictBiz> warehouseType = DictBizCache.getList("after_sales_visits");
if (warehouseType.isEmpty()) {
throw new ServiceException("注意,注意!售后访问字典未配置!请配置!");
}
List<String> roleList = Arrays.asList(user.getRoleName().split(","));
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse();
if (!roleList.isEmpty()) {
Optional<DictBiz> matchingDictBiz = warehouseType.stream()
.filter(i -> roleList.contains(i.getDictValue()))
.findFirst();
Object workOrderStatus = aftersalesWorkOrder.get("workOrderStatus");
if (matchingDictBiz.isPresent()) {
String dictValue = matchingDictBiz.get().getDictKey();
switch (dictValue) {
case "1": // 客服经理
updateWorkOrderForManager(aftersalesWorkOrder, workOrderStatus);
break;
case "2": // 营业部客服
if (Objects.isNull(myCurrentWarehouse)){
//营业部客服未选择仓库进行作业
throw new ServiceException("请选择仓库");
}
updateWorkOrderForSales(aftersalesWorkOrder, workOrderStatus);
break;
case "3": // 职能客服
updateWorkOrderForFunctional(aftersalesWorkOrder, workOrderStatus, user.getUserId());
break;
}
} else {
updateWorkOrderForOthers(aftersalesWorkOrder, workOrderStatus);
}
}else {
throw new CustomerException("当前登录人无工单操作权限!!!");
}
AftersalesWorkOrderEntity workOrderEntity = JSONObject.parseObject(JSONObject.toJSONString(aftersalesWorkOrder), AftersalesWorkOrderEntity.class);
List<AftersalesWorkOrderExcel> list = baseMapper.exportListOwn(workOrderEntity);
return list;
}
}

26
blade-service/logpm-patch/src/main/java/com/logpm/patch/jobhandle/SyncOrderInfoToPlatform.java

@ -1042,4 +1042,30 @@ public class SyncOrderInfoToPlatform {
}
@XxlJob("dealWaybillPayType")
public ReturnT<String> dealWaybillPayType(String param) {
log.info("############dealWaybillPayType: 处理运单支付类型为月结 开始");
List<JSONObject> ls = warehouseMappingDataService.findAllDealWithWaybillNo();
ls.forEach(json -> {
Integer id = json.getInt("id");
String waybillNo = json.getStr("waybillNo");
warehouseMappingDataService.deleteStatisticsdata(waybillNo);
warehouseMappingDataService.updateStatusDealwithWaybillById(id);
});
log.info("############dealWaybillPayType: 处理运单支付类型为月结 完成");
return ReturnT.SUCCESS;
}
}

16
blade-service/logpm-patch/src/main/java/com/logpm/patch/mapper/WarehouseMappingDataMapper.java

@ -148,5 +148,21 @@ public interface WarehouseMappingDataMapper {
void updateRepairParcelListWaybillById(@Param("id") Integer id, @Param("status") int status);
void updatePackageStatusList(@Param("orderPackageCodes") List<String> orderPackageCodes, @Param("warehouseId") Long warehouseId, @Param("packageStatus") String packageStatus);
List<JSONObject> findAllDealWithWaybillNo();
void updateStatusDealwithWaybillById(@Param("id") Integer id);
void udpateWaybillPayWay(@Param("waybillNo") String waybillNo, @Param("payWay") String payWay);
void deletedTrunklinePackageByWaybillNo(@Param("waybillNo") String waybillNo);
void deletedWarehousePackageByWaybillNo(@Param("waybillNo") String waybillNo);
void deletedDistributionPackageByWaybillNo(@Param("waybillNo") String waybillNo);
void deletedOrderByWaybillNo(@Param("waybillNo") String waybillNo);
void deletedBalanceOrderByWaybillNo(@Param("waybillNo") String waybillNo);
}

50
blade-service/logpm-patch/src/main/java/com/logpm/patch/mapper/WarehouseMappingDataMapper.xml

@ -504,4 +504,54 @@
where ldpl.warehouse_id = #{warehouseId}
</update>
<select id="findAllDealWithWaybillNo" resultType="cn.hutool.json.JSONObject">
select id id,
waybill_no waybillNo,
status status
from deal_with_waybill_pay_type
where status = 0
</select>
<update id="updateStatusDealwithWaybillById">
update deal_with_waybill_pay_type
set status = 1
where id = #{id}
</update>
<update id="udpateWaybillPayWay">
update logpm_warehouse_waybill
set pay_way = #{payWay},
check_status = 1
where waybill_no = #{waybillNo}
</update>
<delete id="deletedTrunklinePackageByWaybillNo">
delete from logpm_statistics_trunkline_package
where waybill_no = #{waybillNo}
</delete>
<delete id="deletedWarehousePackageByWaybillNo">
delete from logpm_statistics_warehouse_package
where waybill_no = #{waybillNo}
</delete>
<delete id="deletedDistributionPackageByWaybillNo">
delete from logpm_statistics_distribution_package
where waybill_no = #{waybillNo}
</delete>
<delete id="deletedOrderByWaybillNo">
delete from logpm_statistics_order_info
where waybill_no = #{waybillNo}
</delete>
<delete id="deletedBalanceOrderByWaybillNo">
delete from logpm_statistics_balance_order_info
where waybill_no = #{waybillNo}
</delete>
</mapper>

10
blade-service/logpm-patch/src/main/java/com/logpm/patch/service/IWarehouseMappingDataService.java

@ -129,4 +129,14 @@ public interface IWarehouseMappingDataService {
void updateRepairParcelListWaybillById(Integer id, int status);
void updatePackageStatusList(List<String> orderPackageCodes, Long warehouseId, String packageStatus);
List<JSONObject> findAllDealWithWaybillNo();
void updateStatusDealwithWaybillById(Integer id);
void deleteStatisticsdata(String waybillNo);
}

27
blade-service/logpm-patch/src/main/java/com/logpm/patch/service/impl/WarehouseMappingDataServiceImpl.java

@ -311,4 +311,31 @@ public class WarehouseMappingDataServiceImpl implements IWarehouseMappingDataSer
warehouseMappingDataMapper.updatePackageStatusList(orderPackageCodes,warehouseId,packageStatus);
}
@Override
public List<JSONObject> findAllDealWithWaybillNo() {
return warehouseMappingDataMapper.findAllDealWithWaybillNo();
}
@Override
public void updateStatusDealwithWaybillById(Integer id) {
warehouseMappingDataMapper.updateStatusDealwithWaybillById(id);
}
@Override
public void deleteStatisticsdata(String waybillNo) {
warehouseMappingDataMapper.udpateWaybillPayWay(waybillNo,"3");
warehouseMappingDataMapper.deletedTrunklinePackageByWaybillNo(waybillNo);
warehouseMappingDataMapper.deletedWarehousePackageByWaybillNo(waybillNo);
warehouseMappingDataMapper.deletedDistributionPackageByWaybillNo(waybillNo);
warehouseMappingDataMapper.deletedOrderByWaybillNo(waybillNo);
warehouseMappingDataMapper.deletedBalanceOrderByWaybillNo(waybillNo);
}
}

45
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/controller/CarsLoadController.java

@ -8,6 +8,7 @@ import com.logpm.basicdata.entity.BasicdataWarehouseEntity;
import com.logpm.basicdata.feign.IBasicdataWarehouseClient;
import com.logpm.trunkline.dto.*;
import com.logpm.trunkline.entity.TrunklineCarsLoadEntity;
import com.logpm.trunkline.excel.TrunklineCarsLoadExcel;
import com.logpm.trunkline.service.ITrunklineCarsLoadService;
import com.logpm.trunkline.vo.LoadingDetailExportVO;
import com.logpm.trunkline.vo.TrunklineCarsLoadVO;
@ -18,17 +19,17 @@ import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springblade.common.exception.CustomerException;
import org.springblade.core.excel.util.ExcelUtil;
import org.springblade.core.secure.BladeUser;
import org.springblade.core.tool.api.R;
import org.springblade.core.tool.utils.DateUtil;
import org.springblade.core.tool.utils.StringUtil;
import org.springframework.web.bind.annotation.*;
import springfox.documentation.annotations.ApiIgnore;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.Objects;
import java.util.*;
@Slf4j
@RestController
@ -2819,4 +2820,40 @@ public class CarsLoadController {
}
}
@ResponseBody
@PostMapping("/exportLoadCarsPageList")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "配载计划分页列表", notes = "传入loadCarsDTO")
public void exportLoadCarsPageList(@RequestBody LoadCarsDTO loadCarsDTO, HttpServletRequest request, HttpServletResponse response) {
String method = "############loadCarsPageList: ";
log.info(method+"请求参数{}",loadCarsDTO);
try{
Enumeration<String> headerNames = request.getHeaderNames();
//当前登录人选择的仓库
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse();
List<Long> warehouseIds = new ArrayList<>();
if(!Objects.isNull(myCurrentWarehouse)){
Long warehouseId = myCurrentWarehouse.getId();
warehouseIds.add(warehouseId);
}else{
List<BasicdataWarehouseEntity> myWatchWarehouse = warehouseClient.getMyWatchWarehouse();
myWatchWarehouse.forEach(warehouseEntity -> {
warehouseIds.add(warehouseEntity.getId());
});
}
loadCarsDTO.setWarehouseIds(warehouseIds);
List<TrunklineCarsLoadExcel> list = carsLoadService.exportLoadCarsPageList(loadCarsDTO);
ExcelUtil.export(response, "车辆配载数据" + DateUtil.time(), "车辆配载数据", list, TrunklineCarsLoadExcel.class);
}catch (CustomerException e){
log.error(e.message,e);
}catch (Exception e){
log.error(method+"系统异常",e);
}
}
}

144
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/excel/TrunklineCarsLoadExcel.java

@ -0,0 +1,144 @@
package com.logpm.trunkline.excel;
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 lombok.Data;
import java.io.Serializable;
@Data
@ColumnWidth(25)
@HeadRowHeight(20)
@ContentRowHeight(18)
public class TrunklineCarsLoadExcel implements Serializable {
private static final long serialVersionUID = 1L;
@ColumnWidth(20)
@ExcelProperty("车次号")
private String carsNo;
@ColumnWidth(20)
@ExcelProperty("路线")
private String carsLineName;
@ColumnWidth(20)
@ExcelProperty("计划装车")
private String planLoadingNumber;
@ColumnWidth(20)
@ExcelProperty("装车件数")
private String realLoadingNumber;
@ColumnWidth(20)
@ExcelProperty("在库件数")
private String stockCarsNum;
@ColumnWidth(20)
@ExcelProperty("卸车件数")
private String unloadNumber;
// @ColumnWidth(20)
// @ExcelProperty("路线")
// private String loadingType;
@ColumnWidth(20)
@ExcelProperty("满载率")
private String fullLoadRate;
@ColumnWidth(20)
@ExcelProperty("车辆状态")
private String loadStatusName;
@ColumnWidth(20)
@ExcelProperty("主驾司机")
private String driverName;
@ColumnWidth(20)
@ExcelProperty("主驾司机手机号")
private String driverMobile;
@ColumnWidth(20)
@ExcelProperty("车牌号")
private String carNumber;
@ColumnWidth(20)
@ExcelProperty("起点仓库")
private String startWarehouseName;
@ColumnWidth(20)
@ExcelProperty("终点仓库")
private String endWarehouseNames;
@ColumnWidth(20)
@ExcelProperty("到车时间")
private String arriveTime;
@ColumnWidth(20)
@ExcelProperty("实际发车时间")
private String startTime;
@ColumnWidth(20)
@ExcelProperty("经办人")
private String createUserName;
@ColumnWidth(20)
@ExcelProperty("创建时间")
private String createTime;
@ColumnWidth(20)
@ExcelProperty("现付运输费")
private String nowTransportCost;
@ColumnWidth(20)
@ExcelProperty("到付油卡费")
private String oilCost;
@ColumnWidth(20)
@ExcelProperty("路桥费")
private String tollFee;
@ColumnWidth(20)
@ExcelProperty("回付运输费")
private String backTransportCost;
@ColumnWidth(20)
@ExcelProperty("到付运输费")
private String reachTransportCost;
@ColumnWidth(20)
@ExcelProperty("整车信息费")
private String wholeCarInfoCost;
@ColumnWidth(20)
@ExcelProperty("整车保险费")
private String wholeCarInsuranceCost;
@ColumnWidth(20)
@ExcelProperty("整车落地费")
private String wholeCarGroundCost;
@ColumnWidth(20)
@ExcelProperty("发站装车费")
private String hairWholeCost;
@ColumnWidth(20)
@ExcelProperty("发站其他费")
private String hairWholeOtherCost;
@ColumnWidth(20)
@ExcelProperty("到站卸车费")
private String unloadCost;
}

8
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/mapper/TrunklineCarsLoadMapper.java

@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
import com.logpm.trunkline.dto.LoadCarsDTO;
import com.logpm.trunkline.dto.LoadScanBrandDTO;
import com.logpm.trunkline.entity.TrunklineCarsLoadEntity;
import com.logpm.trunkline.excel.TrunklineCarsLoadExcel;
import com.logpm.trunkline.vo.CarsLoadAllOrderVO;
import com.logpm.trunkline.vo.TripartiteTransferVO;
import com.logpm.trunkline.vo.TrunklineCarsLoadVO;
@ -49,5 +50,12 @@ public interface TrunklineCarsLoadMapper extends BaseMapper<TrunklineCarsLoadEnt
void updateWaybillOrderIsCustemer(@Param("list") List<Long> carsOrderIdList, @Param("isCustomer") String isCustomer);
List<LoadScanBrandDTO> fingPackageCodeByLoadId(@Param("loadId") Long loadId, @Param("warehouseId") Long warehouseId);
/**
* 导出查询
* @param loadCarsDTO
* @return
*/
List<TrunklineCarsLoadExcel> exportLoadCarsList(@Param("param") LoadCarsDTO loadCarsDTO,@Param("idList")List<Long> idList);
}

152
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/mapper/TrunklineCarsLoadMapper.xml

@ -838,6 +838,158 @@
and Locate(#{param.waybillNo},lww.waybill_no) > 0
</if>
</select>
<select id="exportLoadCarsList" resultType="com.logpm.trunkline.excel.TrunklineCarsLoadExcel">
select ltcl.id id,
ltcl.cars_no carsNo,
ltcl.cars_line_name carsLineName,
ltcl.plan_loading_number planLoadingNumber,
ltcl.real_loading_number realLoadingNumber,
ltcl.stock_number stockCarsNum,
ltcl.unload_number unloadNumber,
ltcl.loading_type loadingType,
ltcl.full_load_rate fullLoadRate,
ltcl.is_customer isCustomer,
CASE ltcl.load_status
WHEN '0' THEN '未发车'
WHEN '10' THEN '已发车'
WHEN '20' THEN '网点到车'
WHEN '30' THEN '网点发车'
WHEN '40' THEN '终点到车'
WHEN '80' THEN '已卸车'
WHEN '90' THEN '已签收'
WHEN '100' THEN '取消配载'
ELSE
'未知状态'
END loadStatusName,
ltcl.driver_name driverName,
ltcl.driver_mobile driverMobile,
ltcl.car_number carNumber,
ltcl.start_warehouse_name startWarehouseName,
ltcl.end_warehouse_names endWarehouseNames,
ltcl.arrive_time arriveTime,
ltcl.start_time startTime,
ltcl.create_user_name createUserName,
ltcl.create_time createTime,
ltcl.now_warehouse_id nowWarehouseId,
ltcl.count_transport_cost countTransportCost,
sum(ltcll.now_transport_cost) nowTransportCost,
sum(ltcll.oil_cost) oilCost,
sum(ltcll.back_transport_cost) backTransportCost,
sum(ltcll.reach_transport_cost) reachTransportCost,
sum(ltcll.whole_car_info_cost) wholeCarInfoCost,
sum(ltcll.whole_car_insurance_cost) wholeCarInsuranceCost,
sum(ltcll.whole_car_ground_cost) wholeCarGroundCost,
sum(ltcll.hair_whole_cost) hairWholeCost,
sum(ltcll.hair_whole_other_cost) hairWholeOtherCost,
sum(ltcll.unload_cost) unloadCost,
sum(ltcll.unload_other_cost) unloadOtherCost,
sum(ltcll.fuel) fuel,
sum(ltcll.toll_fee) tollFee
from logpm_trunkline_cars_load ltcl
left join logpm_trunkline_cars_load_line ltcll on ltcll.load_id = ltcl.id
where ltcl.is_deleted = 0
and ltcl.load_type != '4'
and ltcl.load_status != '100'
<if test="param.warehouseIds != null and param.warehouseIds.size() > 0" >
and ltcl.start_warehouse_id in
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.warehouseId != null" >
and ltcl.start_warehouse_id = #{param.warehouseId}
</if>
<if test="idList != null" >
AND ltcl.id IN
<foreach collection="idList" item="id" open="(" separator="," close=")">
#{id}
</foreach>
</if>
<if test="param.endWarehouseId != null" >
and Locate(#{param.endWarehouseId},ltcl.end_warehouse_ids) > 0
</if>
<if test="param.loadCarsNo != null and param.loadCarsNo != ''">
and ltcl.cars_no = #{param.loadCarsNo}
</if>
<if test="param.loadStatus != null and param.loadStatus != ''">
and ltcl.load_status = #{param.loadStatus}
</if>
<if test="param.warehouseName != null and param.warehouseName != ''">
and (Locate(#{param.warehouseName},ltcl.start_warehouse_name) > 0 or Locate(#{param.warehouseName},ltcl.end_warehouse_names) > 0)
</if>
<if test="param.createTimeStart != null ">
and ltcl.create_time &gt;= #{param.createTimeStart}
</if>
<if test="param.createTimeEnd != null ">
and ltcl.create_time &lt;= #{param.createTimeEnd}
</if>
<if test="param.startTime != null ">
and ltcl.start_time &gt;= #{param.startTime}
</if>
<if test="param.endTime != null ">
and ltcl.start_time &lt;= #{param.endTime}
</if>
<if test="param.arriveTimeStart != null ">
and ltcl.arrive_time &gt;= #{param.arriveTimeStart}
</if>
<if test="param.arriveTimeEnd != null ">
and ltcl.arrive_time &lt;= #{param.arriveTimeEnd}
</if>
<if test="param.driverName != null and param.driverName != ''">
and ltcl.driver_name like CONCAT('%',#{param.driverName},'%')
</if>
<if test="param.driverMobile != null and param.driverMobile != ''">
and ltcl.driver_mobile like CONCAT('%',#{param.driverMobile},'%')
</if>
<if test="param.driverMobile != null and param.driverMobile != ''">
and ltcl.driver_mobile like CONCAT('%',#{param.driverMobile},'%')
</if>
<if test="param.driverMobile != null and param.driverMobile != ''">
and ltcl.driver_mobile like CONCAT('%',#{param.driverMobile},'%')
</if>
<if test="param.driverMobile != null and param.driverMobile != ''">
and ltcl.driver_mobile like CONCAT('%',#{param.driverMobile},'%')
</if>
<if test="param.carNumber != null and param.carNumber != ''">
and ltcl.car_number like CONCAT('%',#{param.carNumber},'%')
</if>
<if test="param.startWarehouseName != null and param.startWarehouseName != ''">
and ltcl.start_warehouse_name like CONCAT('%',#{param.startWarehouseName},'%')
</if>
<if test="param.endWarehouseNames != null and param.endWarehouseNames != ''">
and ltcl.end_warehouse_names like CONCAT('%',#{param.endWarehouseNames},'%')
</if>
<if test="param.createUserName != null and param.createUserName != ''">
and ltcl.create_user_name like CONCAT('%',#{param.createUserName},'%')
</if>
<if test="param.arriveTime != null ">
and DATE_FORMAT(ltcl.arrive_time,'%y%d%m') = DATE_FORMAT(#{param.arriveTime},'%y%d%m')
</if>
<if test="param.startTime != null ">
and DATE_FORMAT(ltcl.start_time,'%y%d%m') = DATE_FORMAT(#{param.startTime},'%y%d%m')
</if>
<if test="param.createTime != null ">
and DATE_FORMAT(ltcl.create_time,'%y%d%m') = DATE_FORMAT(#{param.createTime},'%y%d%m')
</if>
group by ltcl.id,ltcl.cars_no,
ltcl.plan_loading_number,
ltcl.real_loading_number,
ltcl.unload_number,
ltcl.loading_type,
ltcl.full_load_rate,
ltcl.is_customer,
ltcl.load_status,
ltcl.driver_name,
ltcl.driver_mobile,
ltcl.car_number,
ltcl.start_warehouse_name,
ltcl.end_warehouse_names,
ltcl.arrive_time,
ltcl.start_time,
ltcl.now_warehouse_id,
ltcl.count_transport_cost
order by ltcl.create_time desc
</select>
</mapper>

7
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/ITrunklineCarsLoadService.java

@ -6,6 +6,7 @@ import com.logpm.trunkline.dto.LoadCarsDTO;
import com.logpm.trunkline.dto.TrunklineCarsLoadDTO;
import com.logpm.trunkline.dto.ZeroPackageDTO;
import com.logpm.trunkline.entity.TrunklineCarsLoadEntity;
import com.logpm.trunkline.excel.TrunklineCarsLoadExcel;
import com.logpm.trunkline.vo.LoadingDetailExportVO;
import com.logpm.trunkline.vo.TripartiteTransferVO;
import com.logpm.trunkline.vo.TrunklineCarsLoadVO;
@ -254,4 +255,10 @@ public interface ITrunklineCarsLoadService extends BaseService<TrunklineCarsLoad
R unloadPackageNoXz(Long loadId, String orderPackageCode, Long warehouseId,Integer unbindTray,String remark,Integer incomingType,String unloadTrayName,String unloadTrayCode);
/**
* 导出数据
* @param loadCarsDTO
* @return
*/
List<TrunklineCarsLoadExcel> exportLoadCarsPageList(LoadCarsDTO loadCarsDTO);
}

23
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java

@ -42,6 +42,7 @@ import com.logpm.factorydata.vo.PushData;
import com.logpm.trunkline.bean.Resp;
import com.logpm.trunkline.dto.*;
import com.logpm.trunkline.entity.*;
import com.logpm.trunkline.excel.TrunklineCarsLoadExcel;
import com.logpm.trunkline.feign.ITrunklinePackageTrackLogClient;
import com.logpm.trunkline.mapper.TrunklineCarsLoadMapper;
import com.logpm.trunkline.service.*;
@ -10393,6 +10394,28 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
return Resp.scanSuccess("卸车成功", audio.toString());
}
@Override
public List<TrunklineCarsLoadExcel> exportLoadCarsPageList(LoadCarsDTO loadCarsDTO) {
loadCarsDTO.setCreateTimeStart(CommonUtil.getStartByDateStr(loadCarsDTO.getCreateTimeStartStr()));
loadCarsDTO.setCreateTimeEnd(CommonUtil.getEndByDateStr(loadCarsDTO.getCreateTimeEndStr()));
loadCarsDTO.setStartTime(CommonUtil.getStartByDateStr(loadCarsDTO.getStartDate()));
loadCarsDTO.setEndTime(CommonUtil.getEndByDateStr(loadCarsDTO.getEndDate()));
loadCarsDTO.setArriveTimeStart(CommonUtil.getStartByDateStr(loadCarsDTO.getArriveTimeStartStr()));
loadCarsDTO.setArriveTimeEnd(CommonUtil.getEndByDateStr(loadCarsDTO.getArriveTimeEndStr()));
List<Long> idList =null;
if (!Objects.isNull(loadCarsDTO.getIds())){
idList = new ArrayList<>();
idList.addAll(Arrays.asList(Func.toLongArray(loadCarsDTO.getIds())));
}
List<TrunklineCarsLoadExcel> pageList = baseMapper.exportLoadCarsList(loadCarsDTO,idList);
return pageList;
}
@Override
public R unloadZero(Long carsLoadScanId,Long loadId, String waybillNo, Integer enterNun, Long warehouseId, Integer unbindTray, String trayCode, String orderCode, String remark,String unloadTrayName,String unloadTrayCode,List<ZeroPackageDTO> zeroPackageList) {

Loading…
Cancel
Save