| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- package com.trs.ggzyexchange.schedul;
- import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.fasterxml.jackson.core.JsonProcessingException;
- import com.trs.ggzyexchange.api.vo.Result;
- import com.trs.ggzyexchange.controller.AreaDataName;
- import com.trs.ggzyexchange.controller.BaseController;
- import com.trs.ggzyexchange.entity.*;
- import com.trs.ggzyexchange.enums.ClassIfy;
- import com.trs.ggzyexchange.enums.JobLock;
- import com.trs.ggzyexchange.service.*;
- import com.trs.ggzyexchange.utils.TenderDetailsVoUtils;
- import org.apache.commons.lang3.ObjectUtils;
- import org.quartz.Job;
- import org.quartz.JobExecutionContext;
- import org.quartz.JobExecutionException;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Component;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestParam;
- import org.springframework.web.bind.annotation.RestController;
- import javax.servlet.http.HttpServletRequest;
- import java.text.SimpleDateFormat;
- import java.util.ArrayList;
- import java.util.Date;
- import java.util.List;
- /**
- * <p>
- * 招标文件/招标文件澄清与修改 定时任务
- * </p>
- *
- * @author trs
- * @since 2023-02-16
- */
- @Component
- public class GcTenderbidfileSchedul implements Job {
- private Logger logger = LoggerFactory.getLogger(GcTenderbidfileSchedul.class);
- @Autowired
- private GcTenderbidfileService gcTenderbidfileService;
- @Autowired
- private AreaDataName areaDataName;
- @Autowired
- private GcNoticeandfileService gcNoticeandfileService;
- @Autowired
- private TenderDetailsVoService tenderDetailsVoService;
- @Autowired
- private GcAttachmentService gcAttachmentService;
- @Autowired
- private ScheduledTashService scheduledTashService;
- public void queryPageListUpdateEs() throws JsonProcessingException {
- /**
- * 查询当前在定时任务表当中的最新时间
- */
- QueryWrapper<ScheduledTash> scheduledTashQueryWrapper = new QueryWrapper<ScheduledTash>();
- scheduledTashQueryWrapper.eq("table_name_value","gc_tenderbidfile");
- Page<ScheduledTash> pageScheduledTash = new Page<ScheduledTash>(1, 1);
- Page<ScheduledTash> page = scheduledTashService.page(pageScheduledTash, scheduledTashQueryWrapper);
- List<ScheduledTash> records = page.getRecords();
- ScheduledTash scheduledTash = null;
- if(records.size() > 0){
- scheduledTash = records.get(0);
- }
- Long time = null;
- if(ObjectUtils.isEmpty(scheduledTash)){
- try {
- /**
- * 如果scheduledTash为空,证明没有当前定时任务,设置当前的定时任务的时间为0 查询表gcNoticeandfile表当中的最新时间
- */
- time = gcTenderbidfileService.maxDataTimeStamp();
- ScheduledTash scheduledTashTash = new ScheduledTash();
- scheduledTashTash.setTime(0L);
- time = 0L;
- scheduledTashTash.setTableNameValue("gc_tenderbidfile");
- scheduledTashTash.setUpdateTime(new Date());
- scheduledTashTash.setCreateTime(new Date());
- scheduledTashService.saveOrUpdate(scheduledTashTash,scheduledTashQueryWrapper);
- }catch (Exception e){
- e.printStackTrace();
- }
- }else {
- /**
- * 如果scheduledTash为空,证明没有当前定时任务,设置当前的定时任务的时间为0 查询表gcNoticeandfile表当中的最新时间
- */
- time = scheduledTash.getTime();
- }
- try {
- //查询表gcNoticeandfile表当中的最新时间
- Long newTime = gcTenderbidfileService.maxDataTimeStamp();
- ScheduledTash scheduledTashTash = new ScheduledTash();
- scheduledTashTash.setTime(newTime);
- scheduledTashTash.setTableNameValue("gc_tenderbidfile");
- scheduledTashTash.setUpdateTime(new Date());
- scheduledTashService.saveOrUpdate(scheduledTashTash,scheduledTashQueryWrapper);
- }catch (Exception e){
- e.printStackTrace();
- }
- if(!ObjectUtils.isEmpty(time)){
- try {
- QueryWrapper<GcTenderbidfile> gcPerformanceQueryWrapper = new QueryWrapper<GcTenderbidfile>();
- gcPerformanceQueryWrapper.gt("DATA_TIMESTAMP",time);
- int count = gcTenderbidfileService.count(gcPerformanceQueryWrapper);
- Integer pageSize = 1000;
- Integer pageNum = (int)Math.ceil((double)count/pageSize);
- for(int i = 1; i <= pageNum;i++){
- try {
- List<TenderDetailsVo> tenderDetailsVoListAll = getTenderDetailsVoListAll(i, pageSize,time);
- Boolean aBoolean = gcNoticeandfileService.parseTenderDetailsVo(tenderDetailsVoListAll);
- }catch (Exception e){
- e.printStackTrace();
- }
- }
- }catch (Exception e){
- e.printStackTrace();
- }
- }
- }
- public List<TenderDetailsVo> getTenderDetailsVoListAll(Integer pageNo,Integer pageSize,Long time){
- Page<GcTenderbidfile> page = new Page<GcTenderbidfile>(pageNo, pageSize);
- IPage<TenderDetailsVo> tenderDetailsVoIPage = gcTenderbidfileService.queryGcTenderbidfileAllListByTime(page,time);
- for (TenderDetailsVo record : tenderDetailsVoIPage.getRecords()) {
- String noticeName = record.getNoticeName();
- if(!ObjectUtils.isEmpty(noticeName)){
- record.setNoticeName(noticeName);
- }
- record.setNoticeTypeCode(ClassIfy.BIDDING_DOCUMENTS.getCode());
- record.setNoticeTypeName(ClassIfy.BIDDING_DOCUMENTS.getName());
- //电力交易
- if(!ObjectUtils.isEmpty(record.getSourceDataCode()) && "7089bc24".equals(record.getSourceDataCode())) {
- record.setTransactionTypeCode(ClassIfy.ELECTRICITY.getCode());
- record.setTransactionTypeName(ClassIfy.ELECTRICITY.getName());
- }else if(!ObjectUtils.isEmpty(record.getSourceDataCode()) && "d844782a".equals(record.getSourceDataCode())) {
- record.setTransactionTypeCode(ClassIfy.WEITUO.getCode());
- record.setTransactionTypeName(ClassIfy.WEITUO.getName());
- }else {
- record.setTransactionTypeCode(ClassIfy.ENGINEERING_CONSTRUCTION.getCode());
- record.setTransactionTypeName(ClassIfy.ENGINEERING_CONSTRUCTION.getName());
- }
- record = tenderDetailsVoService.getTenderDetailsVoAllOrther(record);
- try {
- String bidSectionCodes = record.getBidSectionCodes();
- int i1 = bidSectionCodes.indexOf(",");
- int i2 = bidSectionCodes.indexOf(";");
- int i3 = bidSectionCodes.indexOf("<br>");
- int i4 = bidSectionCodes.indexOf("ltbrgt");
- String splitBidSectionCode = null;
- boolean flag = false;
- String[] split = null;
- if(i1 > 0){
- split = bidSectionCodes.split(",");
- flag = true;
- }
- if(i2 > 0){
- split = bidSectionCodes.split(";");
- flag = true;
- }
- if(i3 > 0){
- split = bidSectionCodes.split("<br>");
- flag = true;
- }
- if(i4 > 0){
- split = bidSectionCodes.split("ltbrgt");
- flag = true;
- }
- if(!flag){
- split = new String[]{bidSectionCodes};
- }
- List<GcAttachment> attachmentList = new ArrayList<GcAttachment>();
- if(record.getDataTimestamp()>20250324000000L){
- //通过标包编号查询对应的附件信息
- QueryWrapper<GcAttachment> gcAttachmentQueryWrapper3 = new QueryWrapper<GcAttachment>();
- // gcAttachmentQueryWrapper3.eq("ATTACHMENT_SET_CODE","TENDER_FILE");//add
- gcAttachmentQueryWrapper3.eq("ASSOCIATION_CODE", record.getSourceDataKey());
- gcAttachmentQueryWrapper3.notLike("ATTACHMENT_NAME","%xml");
- gcAttachmentQueryWrapper3.notLike("ATTACHMENT_NAME","%nmgzf");
- List<GcAttachment> list3 = gcAttachmentService.list(gcAttachmentQueryWrapper3);
- /* //通过标包编号查询对应的附件信息
- QueryWrapper<GcAttachment> gcAttachmentQueryWrapper = new QueryWrapper<GcAttachment>();
- // gcAttachmentQueryWrapper.eq("ATTACHMENT_SET_CODE","TENDER_FILE_FILE");//add
- gcAttachmentQueryWrapper.eq("ASSOCIATION_CODE", record.getSourceDataKey());
- gcAttachmentQueryWrapper.notLike("ATTACHMENT_NAME","%xml");
- gcAttachmentQueryWrapper.notLike("ATTACHMENT_NAME","%nmgzf");
- List<GcAttachment> list = gcAttachmentService.list(gcAttachmentQueryWrapper);
- //通过标包编号查询对应的附件信息
- QueryWrapper<GcAttachment> gcAttachmentQueryWrapper2 = new QueryWrapper<GcAttachment>();
- // gcAttachmentQueryWrapper2.eq("ATTACHMENT_SET_CODE","FILE_EX_TDOC");//add
- gcAttachmentQueryWrapper2.eq("ASSOCIATION_CODE", record.getSourceDataKey());
- gcAttachmentQueryWrapper2.notLike("ATTACHMENT_NAME","%xml");
- gcAttachmentQueryWrapper2.notLike("ATTACHMENT_NAME","%nmgzf");
- List<GcAttachment> list2 = gcAttachmentService.list(gcAttachmentQueryWrapper2);*/
- if(!ObjectUtils.isEmpty(list3)){
- attachmentList.addAll(list3);
- }
- /* if(!ObjectUtils.isEmpty(list2)){
- attachmentList.addAll(list2);
- }
- if(!ObjectUtils.isEmpty(list)){
- attachmentList.addAll(list);
- }*/
- }else{
- if(!ObjectUtils.isEmpty(split)){
- if(split.length >=1){
- for (String bidSectionCode : split) {
- try {
- //通过标包编号查询对应的附件信息
- QueryWrapper<GcAttachment> gcAttachmentQueryWrapper = new QueryWrapper<GcAttachment>();
- gcAttachmentQueryWrapper.eq("ATTACHMENT_SET_CODE","TENDER_FILE_FILE");//add
- gcAttachmentQueryWrapper.eq("BID_SECTION_CODE",bidSectionCode);
- gcAttachmentQueryWrapper.notLike("ATTACHMENT_NAME","%xml");
- gcAttachmentQueryWrapper.notLike("ATTACHMENT_NAME","%nmgzf");
- List<GcAttachment> list = gcAttachmentService.list(gcAttachmentQueryWrapper);
- //通过标包编号查询对应的附件信息
- QueryWrapper<GcAttachment> gcAttachmentQueryWrapper2 = new QueryWrapper<GcAttachment>();
- gcAttachmentQueryWrapper2.eq("ATTACHMENT_SET_CODE","FILE_EX_TDOC");//add
- gcAttachmentQueryWrapper2.eq("BID_SECTION_CODE",bidSectionCode);
- gcAttachmentQueryWrapper2.notLike("ATTACHMENT_NAME","%xml");
- gcAttachmentQueryWrapper2.notLike("ATTACHMENT_NAME","%nmgzf");
- List<GcAttachment> list2 = gcAttachmentService.list(gcAttachmentQueryWrapper2);
- if(!ObjectUtils.isEmpty(list2)){
- attachmentList.addAll(list2);
- }
- if(!ObjectUtils.isEmpty(list)){
- attachmentList.addAll(list);
- }
- }catch (Exception e){
- e.printStackTrace();
- }
- }
- }
- }
- }
- String noticeContent = record.getNoticeContent();
- String file = "";
- if(!ObjectUtils.isEmpty(attachmentList)){
- if(attachmentList.size() > 0){
- file = "<br>附件:<br>";
- }
- }
- for (GcAttachment gcAttachment : attachmentList) {
- try{
- String attachmentName = gcAttachment.getAttachmentName();
- String url = gcAttachment.getUrl();
- file += "<a target='_blank' style='color: blue' href='"+ url +"'>"+ attachmentName +"</a><br/>";
- }catch (Exception e){
- e.printStackTrace();
- }
- }
- //招标文件拼接地址
- if(!ObjectUtils.isEmpty(noticeContent) && noticeContent != ""){
- file = noticeContent + file;
- }
- record.setNoticeContent(file);
- }catch (Exception e){
- e.printStackTrace();
- }
- TenderDetailsVoUtils.isNull(record);
- }
- return tenderDetailsVoIPage.getRecords();
- }
- @Override
- public void execute(JobExecutionContext jobExecutionContext) throws JobExecutionException {
- try {
- if(JobLock.GcTenderbidfileFlag){
- JobLock.GcTenderbidfileFlag = false;
- logger.info("执行GcTenderbidfile", new SimpleDateFormat().format(new Date()));
- try {
- queryPageListUpdateEs();
- } catch (Exception e) {
- e.printStackTrace();
- }
- JobLock.GcTenderbidfileFlag = true;
- }else{
- logger.info("不执行GcTenderbidfile", new SimpleDateFormat().format(new Date()));
- }
- }catch (Exception e){
- e.printStackTrace();
- JobLock.GcTenderbidfileFlag = true;
- }
- }
- }
|