执法检查统计、统计上报功能优化

This commit is contained in:
heli02 2025-09-05 16:18:00 +08:00
parent 09610a803c
commit 78281dea55
4 changed files with 2 additions and 7 deletions

View File

@ -1240,7 +1240,7 @@ function closeZfzbPage() {
function getZfxs() { function getZfxs() {
api.getZfxs().then(res => { api.getZfxs().then(res => {
if (res.success) { if (res.success) {
let data = res.data
showEnforceChart(data) showEnforceChart(data)
} }
}) })

View File

@ -1048,8 +1048,6 @@ function getZfxs() {
} }
const chart2 = ref(null) const chart2 = ref(null)
let enforceChart = null
let sumNum = ref(0)
function showEnforceChart(data) { function showEnforceChart(data) {
if (chart2.value) { if (chart2.value) {

View File

@ -136,7 +136,6 @@ public class StatisticController {
/** /**
* 季报表 * 季报表
*
* @param * @param
* @return 执法季报表统计 * @return 执法季报表统计
*/ */

View File

@ -430,9 +430,7 @@ public class SupervisionCheckService {
* @return 统计结果 * @return 统计结果
*/ */
public List<SupervisionCheckStatisticsDto> checkStatistics(SupervisionCheckQuery query, RemoteUserInfo user) { public List<SupervisionCheckStatisticsDto> checkStatistics(SupervisionCheckQuery query, RemoteUserInfo user) {
// Jurisdiction userJurisdiction = user.getJurisdictions().stream().findFirst().orElseThrow();
// String gxdwbm = com.aisino.iles.common.util.StringUtils.trimTrailingString((Optional.ofNullable(query.getGxdwbm()).filter(StringUtils::hasText).orElse(userJurisdiction.getJurisdictionCode())), "00") + "%";
// Integer ilevel = Optional.ofNullable(query.getIlevel()).orElse(userJurisdiction.getJurisdictionLevel());
return supervisionCheckRepository.checkStatistics(com.aisino.iles.common.util.StringUtils.trimEven0(query.getGxdwbm()) + "%", query.getIlevel()); return supervisionCheckRepository.checkStatistics(com.aisino.iles.common.util.StringUtils.trimEven0(query.getGxdwbm()) + "%", query.getIlevel());
} }