|
|
|
@ -16,14 +16,19 @@
|
|
|
|
|
*/ |
|
|
|
|
package com.logpm.aftersales.controller; |
|
|
|
|
|
|
|
|
|
import com.alibaba.excel.EasyExcel; |
|
|
|
|
import com.alibaba.excel.ExcelWriter; |
|
|
|
|
import com.alibaba.excel.write.metadata.WriteSheet; |
|
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
|
import com.logpm.aftersales.dto.AftersalesWorkOrderDTO; |
|
|
|
|
import com.logpm.aftersales.dto.AftersalesWorkOrderListExcelDTO; |
|
|
|
|
import com.logpm.aftersales.entity.AftersalesAppealEntity; |
|
|
|
|
import com.logpm.aftersales.entity.AftersalesSettlementEntity; |
|
|
|
|
import com.logpm.aftersales.entity.*; |
|
|
|
|
import com.logpm.aftersales.excel.AftersalesWorkOrderImporter; |
|
|
|
|
import com.logpm.aftersales.service.IAftersaleSurveyRecordService; |
|
|
|
|
import com.logpm.aftersales.service.IAftersalesCompletionRecordService; |
|
|
|
|
import com.logpm.aftersales.service.IAftersalesPersonResponsibleService; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataWarehouseEntity; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataWarehouseClient; |
|
|
|
|
import io.swagger.annotations.Api; |
|
|
|
@ -31,6 +36,8 @@ import io.swagger.annotations.ApiOperation;
|
|
|
|
|
import io.swagger.annotations.ApiParam; |
|
|
|
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
|
|
|
|
|
import javax.servlet.ServletOutputStream; |
|
|
|
|
import javax.validation.Valid; |
|
|
|
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
@ -43,7 +50,6 @@ import org.springblade.core.tool.utils.Func;
|
|
|
|
|
import org.springblade.system.entity.User; |
|
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
import com.logpm.aftersales.entity.AftersalesWorkOrderEntity; |
|
|
|
|
import com.logpm.aftersales.vo.AftersalesWorkOrderVO; |
|
|
|
|
import com.logpm.aftersales.excel.AftersalesWorkOrderExcel; |
|
|
|
|
import com.logpm.aftersales.wrapper.AftersalesWorkOrderWrapper; |
|
|
|
@ -54,7 +60,11 @@ import org.springblade.core.excel.util.ExcelUtil;
|
|
|
|
|
import org.springframework.web.multipart.MultipartFile; |
|
|
|
|
import springfox.documentation.annotations.ApiIgnore; |
|
|
|
|
|
|
|
|
|
import java.io.IOException; |
|
|
|
|
import java.text.SimpleDateFormat; |
|
|
|
|
import java.util.*; |
|
|
|
|
import java.util.concurrent.atomic.AtomicReference; |
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
import javax.servlet.http.HttpServletResponse; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -73,6 +83,8 @@ public class AftersalesWorkOrderController extends BladeController {
|
|
|
|
|
private final IAftersalesWorkOrderService aftersalesWorkOrderService; |
|
|
|
|
private final IBasicdataWarehouseClient warehouseClient; |
|
|
|
|
private final IAftersalesCompletionRecordService aftersalesCompletionRecordService; |
|
|
|
|
private final IAftersalesPersonResponsibleService aftersalesPersonResponsibleService; |
|
|
|
|
private final IAftersaleSurveyRecordService aftersaleSurveyRecordService; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 客服异常工单 详情 |
|
|
|
@ -719,6 +731,125 @@ public class AftersalesWorkOrderController extends BladeController {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 导出数据 |
|
|
|
|
* |
|
|
|
|
*/ |
|
|
|
|
@GetMapping("/exportWorkOrder1") |
|
|
|
|
@ApiOperationSupport(order = 9) |
|
|
|
|
@ApiOperation(value = "导出数据", notes = "传入aftersalesWorkOrder") |
|
|
|
|
public void newExportWorkOrder(@ApiIgnore @RequestParam Map<String, Object> aftersalesWorkOrder, BladeUser bladeUser, HttpServletResponse response) { |
|
|
|
|
List<List<String>> basicTitle = aftersalesWorkOrderService.basicTitleBuild(); |
|
|
|
|
//查询数据
|
|
|
|
|
|
|
|
|
|
List<AftersalesWorkOrderVO> exportData = aftersalesWorkOrderService.getBasicExportData(aftersalesWorkOrder); |
|
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); |
|
|
|
|
if (!exportData.isEmpty()) { |
|
|
|
|
List<List<String>> dataList = new ArrayList<>(); |
|
|
|
|
for (AftersalesWorkOrderVO exportDatum : exportData) { |
|
|
|
|
List<String> data = new ArrayList<>(); |
|
|
|
|
data.add(0,exportDatum.getWorkOrderTypeName()); |
|
|
|
|
data.add(1,exportDatum.getDiscoveryNodeName()); |
|
|
|
|
data.add(2,exportDatum.getWarehouseName()); |
|
|
|
|
data.add(3,exportDatum.getWorkOrderNumber()); |
|
|
|
|
data.add(4,exportDatum.getWaybillNumber()); |
|
|
|
|
data.add(5,exportDatum.getOrderCode()); |
|
|
|
|
data.add(6,exportDatum.getPackageCode()); |
|
|
|
|
data.add(7,exportDatum.getBrandName()); |
|
|
|
|
data.add(8,exportDatum.getWaybillMall()); |
|
|
|
|
data.add(9,exportDatum.getFirst()); |
|
|
|
|
data.add(10,exportDatum.getWorkOrderStatusName()); |
|
|
|
|
data.add(11,exportDatum.getBusinessName()); |
|
|
|
|
data.add(12,sdf.format(exportDatum.getCreateTime())); |
|
|
|
|
data.add(13,sdf.format(exportDatum.getEndCreateTime())); |
|
|
|
|
data.add(14,Objects.isNull(exportDatum.getUpdateTime())?"":sdf.format(exportDatum.getUpdateTime())); |
|
|
|
|
data.add(15,null); |
|
|
|
|
data.add(16,null); |
|
|
|
|
//查询此工单是否存在有责任方如果存在有责任方完善表头
|
|
|
|
|
List<AftersalesPersonResponsibleEntity> entityList = aftersalesPersonResponsibleService.list(Wrappers.<AftersalesPersonResponsibleEntity>query().lambda() |
|
|
|
|
.eq(AftersalesPersonResponsibleEntity::getWordOrderId, exportDatum.getId()) |
|
|
|
|
.eq(AftersalesPersonResponsibleEntity::getTypesOf, "1") |
|
|
|
|
); |
|
|
|
|
if (!entityList.isEmpty()) { |
|
|
|
|
handleResponsibility(basicTitle,entityList,data); |
|
|
|
|
} |
|
|
|
|
dataList.add(data); |
|
|
|
|
} |
|
|
|
|
ServletOutputStream os = null; |
|
|
|
|
try { |
|
|
|
|
os = response.getOutputStream(); |
|
|
|
|
ExcelWriter excelWriter = EasyExcel.write(os).build(); |
|
|
|
|
|
|
|
|
|
WriteSheet sheet = EasyExcel.writerSheet() |
|
|
|
|
// 这里放入动态头
|
|
|
|
|
.head(basicTitle) |
|
|
|
|
// 当然这里数据也可以用 List<List<String>> 去传入
|
|
|
|
|
.build(); |
|
|
|
|
excelWriter.write(dataList,sheet); |
|
|
|
|
excelWriter.finish(); |
|
|
|
|
} catch (IOException e) { |
|
|
|
|
throw new RuntimeException(e); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void handleResponsibility(List<List<String>> basicTitle, List<AftersalesPersonResponsibleEntity> entityList, List<String> data) { |
|
|
|
|
Long wordOrderId = entityList.get(0).getWordOrderId(); |
|
|
|
|
//查询最新消息
|
|
|
|
|
List<AftersaleSurveyRecordEntity> recordEntities = aftersaleSurveyRecordService.list(Wrappers.<AftersaleSurveyRecordEntity>query().lambda() |
|
|
|
|
.eq(AftersaleSurveyRecordEntity::getWorkOrderId, wordOrderId) |
|
|
|
|
.orderByDesc(AftersaleSurveyRecordEntity::getCreateTime) |
|
|
|
|
); |
|
|
|
|
if (!recordEntities.isEmpty()) { |
|
|
|
|
if (!basicTitle.contains(Arrays.asList("最新消息回复内容")) ){ |
|
|
|
|
List<String> head5 = new ArrayList<>(Arrays.asList("最新消息回复内容")); |
|
|
|
|
basicTitle.add(basicTitle.size(),head5); |
|
|
|
|
basicTitle.add(head5); |
|
|
|
|
} |
|
|
|
|
data.add(recordEntities.get(0).getContent()); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
int aa = 0; |
|
|
|
|
Map<Long, List<AftersalesPersonResponsibleEntity>> listMap = entityList.stream().collect(Collectors.groupingBy(AftersalesPersonResponsibleEntity::getWordOrderId)); |
|
|
|
|
for (Long l : listMap.keySet()) { |
|
|
|
|
|
|
|
|
|
List<AftersalesPersonResponsibleEntity> aftersalesPersonResponsibleEntities = listMap.get(l); |
|
|
|
|
aa = Math.max(aa, aftersalesPersonResponsibleEntities.size()); |
|
|
|
|
} |
|
|
|
|
for (int i = 0; i < aa; i++) { |
|
|
|
|
if (!basicTitle.contains(Arrays.asList("责任方"+(i+1)))) { |
|
|
|
|
List<String> head1 = new ArrayList<>(Arrays.asList("责任方"+(i+1))); |
|
|
|
|
basicTitle.add(basicTitle.size(),head1); |
|
|
|
|
} |
|
|
|
|
if (!basicTitle.contains(Arrays.asList("责任人"+(i+1)))) { |
|
|
|
|
List<String> head2 = new ArrayList<>(Arrays.asList("责任人"+(i+1))); |
|
|
|
|
basicTitle.add(basicTitle.size(),head2); |
|
|
|
|
} |
|
|
|
|
if (!basicTitle.contains(Arrays.asList("三方责任人"+(i+1)))) { |
|
|
|
|
List<String> head3 = new ArrayList<>(Arrays.asList("三方责任人"+(i+1))); |
|
|
|
|
basicTitle.add(basicTitle.size(),head3); |
|
|
|
|
} |
|
|
|
|
if (!basicTitle.contains(Arrays.asList("金额"+(i+1)))) { |
|
|
|
|
List<String> head4 = new ArrayList<>(Arrays.asList("金额"+(i+1))); |
|
|
|
|
basicTitle.add(basicTitle.size(),head4); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < entityList.size(); i++) { |
|
|
|
|
data.add(entityList.get(i).getBusinessName()); |
|
|
|
|
data.add(entityList.get(i).getPersonResponsibleName()); |
|
|
|
|
data.add(entityList.get(i).getTripartite()); |
|
|
|
|
data.add(entityList.get(i).getResponsibilityRatio()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("/exportAllWorkOrder") |
|
|
|
|
@ApiOperationSupport(order = 9) |
|
|
|
|
@ApiOperation(value = "导出数据", notes = "传入aftersalesWorkOrder") |
|
|
|
|