| | |
| | | import lombok.RequiredArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.util.CollectionUtils; |
| | | |
| | | import java.math.BigDecimal; |
| | |
| | | |
| | | @Override |
| | | public ProductionProgressDto productionProgress() { |
| | | LocalDateTime now = LocalDateTime.now(); |
| | | |
| | | LocalDateTime startOfMonth = now |
| | | .with(TemporalAdjusters.firstDayOfMonth()) |
| | | .with(LocalTime.MIN); |
| | | |
| | | LocalDateTime endOfMonth = now |
| | | .with(TemporalAdjusters.lastDayOfMonth()) |
| | | .with(LocalTime.MAX); |
| | | |
| | | |
| | | ProductionProgressDto productionProgressDto = new ProductionProgressDto(); |
| | | List<ProductionProgressOrderDto> orderDetails = productionOrderMapper.selectProgressOrders( |
| | | LocalDateTime.now().minusMonths(1), LocalDateTime.now()); |
| | | List<ProductionProgressOrderDto> orderDetails = productionOrderMapper |
| | | .selectProgressOrders(startOfMonth, endOfMonth); |
| | | productionProgressDto.setCompletedOrderDetails(orderDetails); |
| | | long totalCount = orderDetails.size(); |
| | | long count = orderDetails.stream().filter( |
| | |
| | | @Override |
| | | public List<MapDto> orderCount() { |
| | | LocalDate now = LocalDate.now(); |
| | | DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); |
| | | |
| | | String currentStart = now.withDayOfMonth(1).atStartOfDay() |
| | | .format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")); |
| | | String currentEnd = now.atTime(LocalTime.MAX).format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")); |
| | | LocalDateTime startDateTime = now.with(TemporalAdjusters.firstDayOfMonth()).atStartOfDay(); |
| | | LocalDateTime endDateTime = now.with(TemporalAdjusters.lastDayOfMonth()).atTime(LocalTime.MAX); |
| | | |
| | | LocalDate lastMonthDate = now.minusMonths(1); |
| | | String lastStart = lastMonthDate.withDayOfMonth(1).atStartOfDay() |
| | | .format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")); |
| | | String lastEnd = lastMonthDate.withDayOfMonth(lastMonthDate.lengthOfMonth()).atTime(LocalTime.MAX) |
| | | .format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")); |
| | | String currentStart = startDateTime.format(dateTimeFormatter); |
| | | String currentEnd = endDateTime.format(dateTimeFormatter); |
| | | |
| | | String lastStart = startDateTime.minusMonths(1).format(dateTimeFormatter); |
| | | String lastEnd = endDateTime.format(dateTimeFormatter); |
| | | |
| | | int currentCreated = productionOrderMapper.countCreated(currentStart, currentEnd); |
| | | int lastCreated = productionOrderMapper.countCreated(lastStart, lastEnd); |