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

This commit is contained in:
yuezhihang
2021-12-16 11:03:17 +08:00
13 changed files with 85 additions and 30 deletions
@@ -46,16 +46,17 @@ public class WaterMarkUtil {
// 获得PDF最顶层 // 获得PDF最顶层
under = stamper.getOverContent(i); under = stamper.getOverContent(i);
under.saveState(); under.saveState();
// set Transparency
PdfGState gs = new PdfGState();
// 设置透明度为0.2
gs.setFillOpacity(0.25f);
under.setGState(gs);
under.restoreState(); under.restoreState();
under.beginText(); under.beginText();
under.setFontAndSize(base, 30); under.setFontAndSize(base, 30);
under.setTextMatrix(30, 30); under.setTextMatrix(30, 30);
under.setColorFill(BaseColor.LIGHT_GRAY); under.setColorFill(BaseColor.LIGHT_GRAY);
// 设置透明度为0.2
// set Transparency
PdfGState gs = new PdfGState();
gs.setFillOpacity(0.2f);
under.setGState(gs);
for (int y = 0; y < 50; y++) { for (int y = 0; y < 50; y++) {
for (int x = 0; x < 50; x++) { for (int x = 0; x < 50; x++) {
// 水印文字成45度角倾斜 x位置 y位置 角度 // 水印文字成45度角倾斜 x位置 y位置 角度
@@ -91,6 +91,8 @@ public class WebMvcConfig implements WebMvcConfigurer {
addInterceptor.excludePathPatterns("/api/lawss/activiti/exportProcessDetailInfo"); addInterceptor.excludePathPatterns("/api/lawss/activiti/exportProcessDetailInfo");
addInterceptor.excludePathPatterns("/api/lawss/activiti/getImg");
// //测试接口使用 // //测试接口使用
// addInterceptor.excludePathPatterns("/api/**"); // addInterceptor.excludePathPatterns("/api/**");
@@ -5,6 +5,7 @@ import com.adc.da.http.ResponseMessage;
import com.adc.da.http.Result; import com.adc.da.http.Result;
import com.adc.da.slrs.fileMaterialCenter.entity.FileMaterialPage; import com.adc.da.slrs.fileMaterialCenter.entity.FileMaterialPage;
import com.adc.da.slrs.fileMaterialCenter.service.IFileMaterialService; import com.adc.da.slrs.fileMaterialCenter.service.IFileMaterialService;
import com.adc.da.util.UUIDUtils;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.core.metadata.IPage;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
@@ -15,8 +16,11 @@ import com.adc.da.slrs.fileMaterialCenter.entity.FileMaterial;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import com.adc.da.base.web.BaseController; import com.adc.da.base.web.BaseController;
import javax.xml.crypto.Data;
import java.lang.reflect.Array; import java.lang.reflect.Array;
import java.text.SimpleDateFormat;
import java.util.Arrays; import java.util.Arrays;
import java.util.Date;
import java.util.List; import java.util.List;
/** /**
@@ -29,7 +33,7 @@ import java.util.List;
*/ */
@RestController @RestController
@Api(description = "资料中心") @Api(description = "资料中心")
@RequestMapping("/fileMaterialCenter/file-material") @RequestMapping("/${restPath}/fileMaterialCenter/file-material")
public class FileMaterialController extends BaseController<FileMaterial> { public class FileMaterialController extends BaseController<FileMaterial> {
@Autowired @Autowired
@@ -37,7 +41,15 @@ public class FileMaterialController extends BaseController<FileMaterial> {
@PostMapping @PostMapping
@ApiOperation("新增文件资料组") @ApiOperation("新增文件资料组")
public ResponseMessage addFileMaterial(FileMaterial material){ public ResponseMessage addFileMaterial(@RequestBody FileMaterial material){
// Date date = new Date();
// String strDateFormat = "yyyy-MM-dd HH:mm:ss";
// SimpleDateFormat sdf = new SimpleDateFormat(strDateFormat);
material.setId(UUIDUtils.randomUUID20());
material.setDataUploadTime(new Date());
material.setDelFlag("0");
boolean save = iFileMaterialService.save(material); boolean save = iFileMaterialService.save(material);
return Result.success(save); return Result.success(save);
@@ -47,7 +59,7 @@ public class FileMaterialController extends BaseController<FileMaterial> {
@DeleteMapping @DeleteMapping
@ApiOperation("删除文件资料组") @ApiOperation("删除文件资料组")
public ResponseMessage deleteMaterial(String id){ public ResponseMessage deleteMaterial(String id){
List<String> idList = Arrays.asList(id.split(id)); List<String> idList = Arrays.asList(id.split(","));
boolean b = iFileMaterialService.removeByIds(idList); boolean b = iFileMaterialService.removeByIds(idList);
return Result.success(b); return Result.success(b);
@@ -6,6 +6,7 @@ import java.util.Date;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.Tag; import io.swagger.annotations.Tag;
@@ -58,4 +59,8 @@ public class FileMaterial extends BaseEntity {
@ApiModelProperty(value = "置顶") @ApiModelProperty(value = "置顶")
@TableField("is_top") @TableField("is_top")
private Integer isTop; private Integer isTop;
@ApiModelProperty(value = "删除标志")
@TableLogic(value = "0",delval = "1")
private String delFlag;
} }
@@ -36,7 +36,7 @@ public class FileMaterialServiceImpl extends ServiceImpl<FileMaterialDao, FileMa
QueryWrapper<FileMaterial> queryWrapper = new QueryWrapper<>(); QueryWrapper<FileMaterial> queryWrapper = new QueryWrapper<>();
if (queryPage.getDataType()!=null){ if (queryPage.getDataType()!=null){
queryWrapper.eq("data_type",queryPage.getDataTitle()); queryWrapper.eq("data_type",queryPage.getDataType());
} }
if (queryPage.getDataTitle()!=null){ if (queryPage.getDataTitle()!=null){
@@ -48,9 +48,8 @@ public class FileMaterialServiceImpl extends ServiceImpl<FileMaterialDao, FileMa
String strDateFormat = "yyyy-MM-dd HH:mm:ss"; String strDateFormat = "yyyy-MM-dd HH:mm:ss";
SimpleDateFormat sdf = new SimpleDateFormat(strDateFormat); SimpleDateFormat sdf = new SimpleDateFormat(strDateFormat);
queryWrapper.between("data_upload_time", queryWrapper.between("data_upload_time", queryPage.getStartDataUploadTime(),
sdf.format(queryPage.getStartDataUploadTime()), queryPage.getEndDataUploadTime());
sdf.format(queryPage.getEndDataUploadTime()));
} }
return this.page(new Page<>(queryPage.getPage(),queryPage.getPageSize()),queryWrapper); return this.page(new Page<>(queryPage.getPage(),queryPage.getPageSize()),queryWrapper);
@@ -60,7 +59,7 @@ public class FileMaterialServiceImpl extends ServiceImpl<FileMaterialDao, FileMa
public List<String> getFileMaterialType() { public List<String> getFileMaterialType() {
QueryWrapper<FileMaterial> queryWrapper = new QueryWrapper<>(); QueryWrapper<FileMaterial> queryWrapper = new QueryWrapper<>();
queryWrapper.select("data_type"); queryWrapper.select("DISTINCT data_type");
return this.listObjs(queryWrapper, item -> item.toString()); return this.listObjs(queryWrapper, item -> item.toString());
} }
@@ -21,15 +21,15 @@ public class StandRegionalTimeDto {
@ApiModelProperty(value = "实施日期") @ApiModelProperty(value = "实施日期")
@DateTimeFormat(pattern="yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd")
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
private Date putTime; private String putTime;
@ApiModelProperty(value = "在产车实施日期") @ApiModelProperty(value = "在产车实施日期")
@DateTimeFormat(pattern="yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd")
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
private Date zccssrq; private String zccssrq;
@ApiModelProperty(value = "新车型实施日期") @ApiModelProperty(value = "新车型实施日期")
@DateTimeFormat(pattern="yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd")
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
private Date xcxssrq; private String xcxssrq;
} }
@@ -301,14 +301,14 @@ public class SarLawsAttrDetailedListServiceImpl extends ServiceImpl<SarLawsAttrD
} }
private void dateTime(LinkedHashMap<String, List<String>> mapList, StandRegionalTimeDto s) { private void dateTime(LinkedHashMap<String, List<String>> mapList, StandRegionalTimeDto s) {
String putTime = new SimpleDateFormat("yyyy-MM-dd").format(s.getPutTime()); // String putTime = new SimpleDateFormat("yyyy-MM-dd").format(s.getPutTime());
String xcx = new SimpleDateFormat("yyyy-MM-dd").format(s.getXcxssrq()); // String xcx = new SimpleDateFormat("yyyy-MM-dd").format(s.getXcxssrq());
String zcc = new SimpleDateFormat("yyyy-MM-dd").format(s.getZccssrq()); // String zcc = new SimpleDateFormat("yyyy-MM-dd").format(s.getZccssrq());
// putTime.add(new SimpleDateFormat("yyyy-MM-dd").format(s.getPutTime()); // putTime.add(new SimpleDateFormat("yyyy-MM-dd").format(s.getPutTime());
// xcx.add(new SimpleDateFormat("yyyy-MM-dd").format(s.getXcxssrq())); // xcx.add(new SimpleDateFormat("yyyy-MM-dd").format(s.getXcxssrq()));
// zcc.add(new SimpleDateFormat("yyyy-MM-dd").format(s.getZccssrq())); // zcc.add(new SimpleDateFormat("yyyy-MM-dd").format(s.getZccssrq()));
mapList.put("实施日期("+s.getCountry()+")", Collections.singletonList(putTime)); mapList.put("实施日期("+s.getCountry()+")",Arrays.asList(s.getPutTime().split(",")));
mapList.put("新车型实施日期("+s.getCountry()+")", Collections.singletonList(xcx)); mapList.put("新车型实施日期("+s.getCountry()+")", Arrays.asList(s.getXcxssrq().split(",")));
mapList.put("在产车实施日期("+s.getCountry()+")", Collections.singletonList(zcc)); mapList.put("在产车实施日期("+s.getCountry()+")", Arrays.asList(s.getZccssrq().split(",")));
} }
} }
@@ -140,7 +140,7 @@ public class SarStandFileEOController extends BaseController<SarStandFileEO> {
} }
@ApiOperation(value = "查询文本信息") @ApiOperation(value = "查询转换后文本信息")
@GetMapping("/queryFileInfo") @GetMapping("/queryFileInfo")
public ResponseMessage<List<SarStandFileEO>> queryFileInfo(String standId){ public ResponseMessage<List<SarStandFileEO>> queryFileInfo(String standId){
@@ -156,4 +156,13 @@ public class SarStandFileEOController extends BaseController<SarStandFileEO> {
return Result.success(sarStandFileEOS); return Result.success(sarStandFileEOS);
} }
@ApiOperation(value = "查询转原始文件信息")
@GetMapping("/querySourceFileInfo")
public ResponseMessage<List<SarStandFileEO>> querySourceFileInfo(String standId){
List<SarStandFileEO> sarStandFileEOS = sarStandFileEOService.selectFileByStandId(standId);
return Result.success(sarStandFileEOS);
}
} }
@@ -23,8 +23,21 @@ public interface SarStandFileEOService {
List<SarStandFileEO> selectFileByAttId(String attId) throws Exception; List<SarStandFileEO> selectFileByAttId(String attId) throws Exception;
/**
* 查询转换后文件的文本信息
* @param standId
* @return
*/
List<SarStandFileEO> selectFileByStandId(String standId); List<SarStandFileEO> selectFileByStandId(String standId);
List<SarStandFileEO> selectFileByStandIdOCR(String standId,String type) throws Exception; List<SarStandFileEO> selectFileByStandIdOCR(String standId,String type) throws Exception;
/**
* 查询转原始文件的信息
* @param standId
* @return
*/
List<SarStandFileEO> querySourceFileInfo(String standId);
} }
@@ -399,7 +399,7 @@ public class SarFileSplitItemsEOServiceImpl implements SarFileSplitItemsEOServic
String imgContent = itemsValEO.getItemContent(); String imgContent = itemsValEO.getItemContent();
String imgUUIndex = "img" + String.valueOf(imgIndex); String imgUUIndex = "img" + String.valueOf(imgIndex);
if (StringUtils.isNotEmpty(imgContent)){ if (StringUtils.isNotEmpty(imgContent)){
int pathIndex = imgContent.indexOf("src='uploadPath"); int pathIndex = imgContent.indexOf("src='file");
if (pathIndex > -1 && imgContent.length()>(pathIndex+16)) { if (pathIndex > -1 && imgContent.length()>(pathIndex+16)) {
String imgPath = imgContent.substring(pathIndex+16,imgContent.length()-2); String imgPath = imgContent.substring(pathIndex+16,imgContent.length()-2);
String imgName = imgUUIndex + "-" +imgPath.substring(imgPath.lastIndexOf("/")+1,imgPath.length()); String imgName = imgUUIndex + "-" +imgPath.substring(imgPath.lastIndexOf("/")+1,imgPath.length());
@@ -525,7 +525,7 @@ public class SarFileSplitItemsEOServiceImpl implements SarFileSplitItemsEOServic
AttFileVo attFileVo = attFileEOService.saveFileInfo(nowfilelist.get(0)); AttFileVo attFileVo = attFileEOService.saveFileInfo(nowfilelist.get(0));
if(attFileVo!=null){ if(attFileVo!=null){
isText = false; isText = false;
String path = "uploadPath" + attFileVo.getFilePath()+attFileVo.getFileName(); String path = "file" + attFileVo.getFilePath()+attFileVo.getFileName();
String imgCon = "<img class=\'wordImg\' src=\'" + path + "\'>"; String imgCon = "<img class=\'wordImg\' src=\'" + path + "\'>";
valEO.setType("IMG"); valEO.setType("IMG");
valEO.setItemContent(imgCon); valEO.setItemContent(imgCon);
@@ -559,7 +559,7 @@ public class SarFileSplitItemsEOServiceImpl implements SarFileSplitItemsEOServic
AttFileVo attFileVo = attFileEOService.saveFileInfo(nowfilelist.get(0)); AttFileVo attFileVo = attFileEOService.saveFileInfo(nowfilelist.get(0));
if(attFileVo!=null){ if(attFileVo!=null){
isText = false; isText = false;
String path = "uploadPath" + attFileVo.getFilePath()+attFileVo.getFileName(); String path = "file" + attFileVo.getFilePath()+attFileVo.getFileName();
String imgCon = "<img class=\'wordImg\' src=\'" + path + "\'>"; String imgCon = "<img class=\'wordImg\' src=\'" + path + "\'>";
valEO.setType("IMG"); valEO.setType("IMG");
valEO.setItemContent(imgCon); valEO.setItemContent(imgCon);
@@ -595,7 +595,7 @@ public class SarFileSplitItemsEOServiceImpl implements SarFileSplitItemsEOServic
AttFileVo attFileVo = attFileEOService.saveFileInfo(nowfilelist.get(0)); AttFileVo attFileVo = attFileEOService.saveFileInfo(nowfilelist.get(0));
if(attFileVo!=null){ if(attFileVo!=null){
isText = false; isText = false;
String path = "uploadPath" + attFileVo.getFilePath()+attFileVo.getFileName(); String path = "file" + attFileVo.getFilePath()+attFileVo.getFileName();
String imgCon = "<img class=\'wordImg\' src=\'" + path + "\'>"; String imgCon = "<img class=\'wordImg\' src=\'" + path + "\'>";
valEO.setType("IMG"); valEO.setType("IMG");
valEO.setItemContent(imgCon); valEO.setItemContent(imgCon);
@@ -78,6 +78,9 @@ public class SarStandFileEOServiceImpl implements SarStandFileEOService {
queryWrapper.eq("STAND_ID",standId).eq("USE_MODEL","WEB_FILE"); queryWrapper.eq("STAND_ID",standId).eq("USE_MODEL","WEB_FILE");
List<SarStandFileEO> sarStandFileEOS = sarStandFileEODao.selectList(queryWrapper); List<SarStandFileEO> sarStandFileEOS = sarStandFileEODao.selectList(queryWrapper);
/**
* 询转换后文件信息 因为文件转换成pdf后会出现文件名位路径的情况,遍历查询文件的原始文件信息从中取出正确的文件名
*/
//开耀这地方我把selectOne改成了批量因为 查单个数据里面出了问题你看看给改一下 //开耀这地方我把selectOne改成了批量因为 查单个数据里面出了问题你看看给改一下
sarStandFileEOS.forEach(item->{ sarStandFileEOS.forEach(item->{
QueryWrapper<SarStandFileEO> wrapper = new QueryWrapper<>(); QueryWrapper<SarStandFileEO> wrapper = new QueryWrapper<>();
@@ -142,4 +145,15 @@ public class SarStandFileEOServiceImpl implements SarStandFileEOService {
return sarStandFileEOS; return sarStandFileEOS;
} }
@Override
public List<SarStandFileEO> querySourceFileInfo(String standId){
QueryWrapper<SarStandFileEO> queryWrapper= new QueryWrapper<>();
queryWrapper.eq("STAND_ID",standId).eq("USE_MODEL","SOURCE_FILE");
return sarStandFileEODao.selectList(queryWrapper);
}
} }
@@ -293,7 +293,7 @@ public class AttFileEOController {
if (!newFile.exists()) { if (!newFile.exists()) {
Files.copy(oldFile.toPath(), newFile.toPath()); Files.copy(oldFile.toPath(), newFile.toPath());
} }
filePathResult = "uploadPath/phoneLoadFiles/" + timeStr + "/" + fileOldName; filePathResult = "file/phoneLoadFiles/" + timeStr + "/" + fileOldName;
return Result.success(filePathResult); return Result.success(filePathResult);
} else { } else {
return Result.error("获取文件信息失败"); return Result.error("获取文件信息失败");
@@ -69,9 +69,9 @@ public class UeditorController {
AttFileVo attFileVo= attFileEOService.saveFileInfo(uploadFile); AttFileVo attFileVo= attFileEOService.saveFileInfo(uploadFile);
String picUrlPath =""; String picUrlPath ="";
if(StringUtils.isNotEmpty(referer)){ if(StringUtils.isNotEmpty(referer)){
picUrlPath=referer+"uploadPath"+ attFileVo.getFilePath()+attFileVo.getFileName(); picUrlPath=referer+"file"+ attFileVo.getFilePath()+attFileVo.getFileName();
}else{ }else{
picUrlPath="uploadPath"+attFileVo.getFilePath()+attFileVo.getFileName(); picUrlPath="file"+attFileVo.getFilePath()+attFileVo.getFileName();
} }
log.info("Ueditor 上传图片返回路径:"+picUrlPath); log.info("Ueditor 上传图片返回路径:"+picUrlPath);
image.setState("SUCCESS"); image.setState("SUCCESS");