| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- 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.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.util.CollectionUtils;
- 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-23
- */
- @Component
- public class GcPubContractSchedul implements Job {
- private Logger logger = LoggerFactory.getLogger(GcPubContractSchedul.class);
- @Autowired
- private GcPubContractService gcPubContractService;
- @Autowired
- private TenderDetailsVoService tenderDetailsVoService;
- @Autowired
- private GcNoticeandfileService gcNoticeandfileService;
- @Autowired
- private ScheduledTashService scheduledTashService;
- @Autowired
- private GcAttachmentService gcAttachmentService;
- public void queryPageListUpdateEs() throws JsonProcessingException {
- /**
- * 查询当前在定时任务表当中的最新时间
- */
- QueryWrapper<ScheduledTash> scheduledTashQueryWrapper = new QueryWrapper<ScheduledTash>();
- scheduledTashQueryWrapper.eq("table_name_value","gc_pub_contract");
- 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 = gcPubContractService.maxDataTimeStamp();
- ScheduledTash scheduledTashTash = new ScheduledTash();
- scheduledTashTash.setTime(0L);
- time = 0L;
- scheduledTashTash.setTableNameValue("gc_pub_contract");
- 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 = gcPubContractService.maxDataTimeStamp();
- ScheduledTash scheduledTashTash = new ScheduledTash();
- scheduledTashTash.setTime(newTime);
- scheduledTashTash.setTableNameValue("gc_pub_contract");
- scheduledTashTash.setUpdateTime(new Date());
- scheduledTashService.saveOrUpdate(scheduledTashTash,scheduledTashQueryWrapper);
- }catch (Exception e){
- e.printStackTrace();
- }
- if(!ObjectUtils.isEmpty(time)){
- QueryWrapper<GcPubContract> gcPerformanceQueryWrapper = new QueryWrapper<GcPubContract>();
- gcPerformanceQueryWrapper.gt("DATA_TIMESTAMP",time);
- int count = gcPubContractService.count(gcPerformanceQueryWrapper);
- Integer pageSize = 1000;
- Integer pageNum = (int)Math.ceil((double)count/pageSize);
- for(int i = 1; i <= pageNum;i++){
- List<TenderDetailsVo> tenderDetailsVoListAll = getTenderDetailsVoListAll(i, pageSize,time);
- gcNoticeandfileService.parseTenderDetailsVo(tenderDetailsVoListAll);
- }
- }
- }
- public List<TenderDetailsVo> getTenderDetailsVoListAll(Integer pageNo,Integer pageSize,Long time){
- Page<GcPubContract> page = new Page<GcPubContract>(pageNo, pageSize);
- IPage<TenderDetailsVo> tenderDetailsVoIPage = gcPubContractService.queryGcBidcandidateAllListByTime(page,time);
- for (TenderDetailsVo record : tenderDetailsVoIPage.getRecords()) {
- try {
- record.setNoticeTypeCode(ClassIfy.CONTRACT_PUBLICITY.getCode());
- record.setNoticeTypeName(ClassIfy.CONTRACT_PUBLICITY.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());
- }
- List<GcAttachment> attachmentList = new ArrayList<GcAttachment>();
- //通过标包编号查询对应的附件信息
- QueryWrapper<GcAttachment> gcAttachmentQueryWrapper = new QueryWrapper<GcAttachment>();
- gcAttachmentQueryWrapper.eq("ASSOCIATION_CODE", record.getSourceDataKey());
- List<GcAttachment> list = gcAttachmentService.list(gcAttachmentQueryWrapper);
- if (!CollectionUtils.isEmpty(list)) {
- attachmentList.addAll(list);
- }
- String noticeContent = record.getNoticeContent();
- String file = "";
- if(!CollectionUtils.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);
- record.setSourceDataKey("pubc-"+record.getSourceDataKey());
- record = tenderDetailsVoService.getTenderDetailsVoAllOrther(record);
- TenderDetailsVoUtils.isNull(record);
- }catch (Exception e){
- e.printStackTrace();
- }
- }
- return tenderDetailsVoIPage.getRecords();
- }
- @Override
- public void execute(JobExecutionContext jobExecutionContext) throws JobExecutionException {
- try {
- if(JobLock.GcPubContractFlag){
- JobLock.GcPubContractFlag = false;
- logger.info("执行GcPubContract", new SimpleDateFormat().format(new Date()));
- try {
- queryPageListUpdateEs();
- } catch (Exception e) {
- e.printStackTrace();
- }
- JobLock.GcPubContractFlag = true;
- }else{
- logger.info("不执行GcPubContract", new SimpleDateFormat().format(new Date()));
- }
- }catch (Exception e){
- e.printStackTrace();
- JobLock.GcPubContractFlag = true;
- }
- }
- }
|