CustomerErpService.java 2.41 KB
package com.huaheng.pc.config.customer.service;

import java.text.SimpleDateFormat;
import java.time.Instant;
import java.time.temporal.ChronoUnit;
import java.util.Date;
import java.util.List;

import javax.annotation.Resource;

import com.huaheng.pc.config.customer.domain.CustomerErp;
import com.huaheng.pc.config.customer.mapper.CustomerErpMapper;
import org.springframework.stereotype.Service;

import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.huaheng.framework.aspectj.lang.annotation.Ds;
import com.huaheng.framework.aspectj.lang.constant.DataSourceName;
import com.huaheng.pc.config.address.domain.Address;
import com.huaheng.pc.config.supplier.domain.SupplierErp;
import com.huaheng.pc.config.supplier.mapper.SupplierErpMapper;


@Service
public class CustomerErpService extends ServiceImpl<CustomerErpMapper, CustomerErp>{

    @Resource
    private CustomerErpMapper customerErpMapper;


    SimpleDateFormat sf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");


    /**
     * 查找erp数据库的客户数据
     * @return
     */
    @Ds(name= DataSourceName.SLAVE)
    public List<CustomerErp> findCustomerData(Integer time, Address address,Date syncTimes){
//        String startTime= DateUtils.getNowPreDays("yyyy-MM-dd HH:mm:ss", 30);
//        time=time*24*14;
        // 将Date转换为Instant
        Instant instant = syncTimes.toInstant();
        // 将Instant往前推移10分钟
        Instant newInstant = instant.minus(5, ChronoUnit.MINUTES);
        // 将新的Instant转换回Date
        Date newDate = Date.from(newInstant);
//        String startTime= DateUtils.getNowPreMin("yyyy-MM-dd HH:mm:ss", time);
//        Date date=null;
//        try{
//            date=sf.parse(startTime);
//        }catch (Exception e){
//        }
        QueryWrapper<CustomerErp> queryWrapper = new QueryWrapper<>();
        queryWrapper.in("交易对象类型", 2,3);
//        queryWrapper.isNull("最近更改日");
        queryWrapper.ge("最近更改日", newDate);
        queryWrapper.eq("企业编号", address.getUserDef2());
        queryWrapper.select(" DISTINCT 交易对象编号 as pmaa001, 交易对象类型 AS pmaa002,交易对象简称 AS pmaal, \n" +
                "最近更改日 AS pmaamodd");
//        queryWrapper.last(" and rownum<=1");
        List<CustomerErp> lists = this.list(queryWrapper);
        return lists;
    }
}