This commit is contained in:
邱贞招 2024-11-10 10:39:04 +08:00
parent 47d93598c7
commit 8ba93b74ac
5 changed files with 18 additions and 2 deletions

View File

@ -120,6 +120,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter
"/appCodeLogin",
"/app/**",
"/appVerify/**",
"/getToken",
"/common/upload",
"/common/receive",
"/payment/callback/**",

View File

@ -102,6 +102,9 @@ public class IndexVo {
/** 已离线 */
private Integer offlineNum;
/** 全部离线设备 */
private Integer allOfflineNum;
/** 正常待租 */
private Integer normalNum;

View File

@ -810,7 +810,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
wrapperForOffline.eq("area_id",areaId);
}
Integer allOfflineNum = asDeviceMapper.selectCount(wrapperForOffline);
deviceNumVo.setOfflineNum(allOfflineNum);//全部离线数
deviceNumVo.setAllOfflineNum(allOfflineNum);//全部离线数
wrapperForOffline.ne("status","0");

View File

@ -950,6 +950,12 @@ public class EtOrderServiceImpl implements IEtOrderService
String endDateStr = formattedDate + " " + Constants.DATE_FORMAT_END_PEREND;
IndexVo.OrderFeeStatisticsVo todayOrderInfo = getOrderFeeStatistics(startDateStr, endDateStr, areaId);
log.info("【首页统计】营收统计----------todayOrderInfo: {}" , JSON.toJSON(todayOrderInfo));
// 如果 orderNum income 0跳过当前循环
if (todayOrderInfo.getOrderCount() == 0 && todayOrderInfo.getIncomeFee().compareTo(BigDecimal.ZERO) == 0) {
continue;
}
IndexVo.IncomeVo incomeVo = new IndexVo.IncomeVo();
incomeVo.setDay(formattedDate);
incomeVo.setOrderNum(todayOrderInfo.getOrderCount());
@ -2361,6 +2367,11 @@ public class EtOrderServiceImpl implements IEtOrderService
IndexVo.OrderFeeStatisticsVo todayOrderInfo = getOrderFeeStatisticsByDeptId(startDateStr, endDateStr, areaIds);
log.info("【获取营收统计】营收统计----------todayOrderInfo: {}" , JSON.toJSON(todayOrderInfo));
// 如果 orderNum income 0跳过当前循环
if (todayOrderInfo.getOrderCount() == 0 && todayOrderInfo.getIncomeFee().compareTo(BigDecimal.ZERO) == 0) {
continue;
}
// 构建收入统计对象
IndexVo.IncomeVo incomeVo = new IndexVo.IncomeVo();
incomeVo.setDay(formattedDate);

View File

@ -43,7 +43,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<sql id="selectAsDeviceVo">
select device_id, picture, device_name, mac, sn, model_id, hardware_version_id, vehicle_num, area_id, activation_time,
online_status, create_by, create_time, update_by, update_time, last_time, last_location_time, gps, remark, status,
lock_status, location, remaining_power, voltage, qrcode, longitude, latitude, is_area_out_outage, is_admin_unlocking,signal_strength, satellites, quality, appid, app_name, dept_id from et_device
lock_status, location, remaining_power, voltage, qrcode, longitude, latitude, is_area_out_outage, is_admin_unlocking,
signal_strength, satellites, quality, appid, app_name, dept_id from et_device
</sql>
<select id="selectAsDeviceList" parameterType="AsDevice" resultMap="AsDeviceResult">