package org.jeecg.modules.mdcJc.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.jeecg.modules.mdc.util.DateUtils;
|
import org.jeecg.modules.mdcJc.entity.MdcProductDayschedule;
|
import org.jeecg.modules.mdcJc.entity.ProductDayschedule;
|
import org.jeecg.modules.mdcJc.mapper.MdcProductDayscheduleMapper;
|
import org.jeecg.modules.mdcJc.service.IClassMonthlyScheduleService;
|
import org.jeecg.modules.mdcJc.service.IMdcProductDayScheduleService;
|
import org.jeecg.modules.utils.BeanMapper;
|
import org.springframework.stereotype.Service;
|
|
import javax.annotation.Resource;
|
import java.math.BigDecimal;
|
import java.math.RoundingMode;
|
import java.time.LocalDate;
|
import java.util.ArrayList;
|
import java.util.List;
|
|
/**
|
* @author Lius
|
* @date 2024/7/30 15:14
|
*/
|
@Service
|
public class MdcProductDayScheduleServiceImpl extends ServiceImpl<MdcProductDayscheduleMapper, MdcProductDayschedule> implements IMdcProductDayScheduleService {
|
|
@Resource
|
private IClassMonthlyScheduleService classMonthlyScheduleService;
|
|
|
@Override
|
public boolean scheduleProductDayList() {
|
String date = DateUtils.format(DateUtils.getNow(),DateUtils.STR_DATE);
|
List<ProductDayschedule> list = classMonthlyScheduleService.findListProductDay(date);
|
if (list == null || list.isEmpty()) {
|
return true;
|
}
|
List<String> mdcListIds = super.baseMapper.selectDateList(date);
|
if (mdcListIds != null && !mdcListIds.isEmpty()) {
|
this.removeBatchByIds(mdcListIds);
|
}
|
List<MdcProductDayschedule> mesC = new ArrayList<>();
|
for (ProductDayschedule c : list) {
|
MdcProductDayschedule mdc = new MdcProductDayschedule();
|
BeanMapper.copy(c, mdc);
|
mesC.add(mdc);
|
}
|
boolean b = this.saveBatch(mesC);
|
return b;
|
}
|
|
@Override
|
public MdcProductDayschedule findYesterdayData() {
|
String date = LocalDate.now().plusDays(-1).toString();
|
return this.baseMapper.findYesterdayData(date);
|
}
|
|
@Override
|
public String findClazz(String equipmentId) {
|
return this.baseMapper.findClazz(equipmentId);
|
}
|
}
|