11 changed files with 272 additions and 1 deletions
@ -0,0 +1,97 @@ |
|||||||
|
package com.logpm.statistics.util; |
||||||
|
|
||||||
|
import cn.hutool.core.date.DateUnit; |
||||||
|
import cn.hutool.core.date.DateUtil; |
||||||
|
import cn.hutool.core.util.ObjectUtil; |
||||||
|
import cn.hutool.core.util.StrUtil; |
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||||
|
import com.logpm.basicdata.entity.BasicdataWarehouseEntity; |
||||||
|
import com.logpm.basicdata.feign.IBasicdataWarehouseClient; |
||||||
|
import org.springblade.core.log.exception.ServiceException; |
||||||
|
|
||||||
|
import java.util.Arrays; |
||||||
|
import java.util.Collection; |
||||||
|
import java.util.Date; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
import java.util.stream.Collectors; |
||||||
|
import java.util.stream.Stream; |
||||||
|
|
||||||
|
/** |
||||||
|
* 报表工具类 |
||||||
|
* |
||||||
|
* @Author zqb |
||||||
|
* @Date 2024/6/13 |
||||||
|
**/ |
||||||
|
public class ReportUtil { |
||||||
|
|
||||||
|
/** |
||||||
|
* 校验两个时间相差不超过 30 天 |
||||||
|
* 如果不跨月则返回 true |
||||||
|
* 如果跨月则不超过 30 天 |
||||||
|
* |
||||||
|
* @Param start 开始时间 |
||||||
|
* @Param end 解释时间 |
||||||
|
* @Return boolean |
||||||
|
* @Author zqb 2024/6/13 |
||||||
|
**/ |
||||||
|
public static boolean isWithinOneMonth(Date start, Date end) { |
||||||
|
// 检查输入是否为null
|
||||||
|
if (start == null || end == null) { |
||||||
|
return false; |
||||||
|
} |
||||||
|
|
||||||
|
// 是否跨月,不跨越则直接返回true
|
||||||
|
if (DateUtil.year(start) == DateUtil.year(end) && DateUtil.month(start) == DateUtil.month(end)) { |
||||||
|
return true; |
||||||
|
} |
||||||
|
|
||||||
|
// 跨越则判断两个日期是否相差超过30天
|
||||||
|
return DateUtil.between(start, end, DateUnit.DAY) <= 30; |
||||||
|
} |
||||||
|
|
||||||
|
public static void buildReportWarehouseAuth(String warehouseName, String warehouseNameRange, |
||||||
|
QueryWrapper queryWrapper, IBasicdataWarehouseClient warehouseClient) { |
||||||
|
if (StrUtil.isEmpty(warehouseName) && StrUtil.isEmpty(warehouseNameRange)) { |
||||||
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
||||||
|
if (ObjectUtil.isNotEmpty(myCurrentWarehouse)) { |
||||||
|
queryWrapper.eq("warehouse_id", myCurrentWarehouse.getId()); |
||||||
|
} else { |
||||||
|
List<BasicdataWarehouseEntity> warehouseEntities = warehouseClient.getMyWarehouseList(); |
||||||
|
queryWrapper.in("warehouse_id", warehouseEntities.stream().map(BasicdataWarehouseEntity::getId).collect(Collectors.toList())); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static void dateIsWithinOneMonth(String taskTime, Date startTaskTime, Date endTaskTime, String title) { |
||||||
|
if (ObjectUtil.isEmpty(taskTime)) { |
||||||
|
boolean withinOneMonth = isWithinOneMonth(startTaskTime, endTaskTime); |
||||||
|
if (!withinOneMonth) { |
||||||
|
throw new ServiceException(title + "必选且时间不超过一个月"); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static boolean areAllPropertiesEmpty(Object obj) { |
||||||
|
if (obj == null) return true; |
||||||
|
return Stream.of(obj.getClass().getDeclaredFields()) |
||||||
|
.filter(field -> !field.getName().equals("serialVersionUID")) |
||||||
|
.peek(field -> field.setAccessible(true)) // 设置所有字段可访问
|
||||||
|
.allMatch(field -> { |
||||||
|
Object value = null; |
||||||
|
try { |
||||||
|
value = field.get(obj); |
||||||
|
} catch (IllegalAccessException e) { |
||||||
|
throw new RuntimeException(e); |
||||||
|
} |
||||||
|
if (value == null) return true; |
||||||
|
if (value instanceof String) return ((String) value).isEmpty(); |
||||||
|
if (value instanceof Collection) return ((Collection<?>) value).isEmpty(); |
||||||
|
if (value instanceof Map) return ((Map<?, ?>) value).isEmpty(); |
||||||
|
if (value.getClass().isArray()) return Arrays.asList((Object[]) value).isEmpty(); |
||||||
|
// 对于基本类型或其他不可空类型,你可能需要返回 false 或进行更详细的检查
|
||||||
|
return false; |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue