From 02f9af857c72559323ada1edd27a0af6be3c038b Mon Sep 17 00:00:00 2001
From: zhaoqingang <zhaoqg0118@163.com>
Date: 星期六, 08 二月 2025 18:59:14 +0800
Subject: [PATCH] 测试 场景分析 bug

---
 models/locationAnalysis.go |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/models/locationAnalysis.go b/models/locationAnalysis.go
index 8a8449f..1bd1828 100644
--- a/models/locationAnalysis.go
+++ b/models/locationAnalysis.go
@@ -189,7 +189,6 @@
 		document_number_list = []string{}
 		for _, i := range labelFilter {
 			document_number_list = append(document_number_list, i.Id)
-			document_number_list = append(document_number_list, i.Id)
 		}
 	}
 	if len(m.KeyTypes) > 0 {
@@ -449,17 +448,17 @@
 		if orgBuckets, ok := aggs["orgs"].(map[string]interface{})["buckets"].([]interface{}); ok {
 			for _, orgBucket := range orgBuckets {
 				orgId := orgBucket.(map[string]interface{})["key"].(string)
-
+				logger.Debugf("orgId--------------------------------------- %s", orgId)
 				// 瑙f瀽鎸塩ommunityId鐨勮仛鍚堢粨鏋�
 				if communityBuckets, ok := orgBucket.(map[string]interface{})["community"].(map[string]interface{})["buckets"].([]interface{}); ok {
 					for _, communityBucket := range communityBuckets {
 						communityId := communityBucket.(map[string]interface{})["key"].(string)
-
+						logger.Debugf("communityId--------------------------------------- %s", communityId)
 						// 瑙f瀽鎸塨uilding鐨勮仛鍚堢粨鏋�
 						if locationBuckets, ok := communityBucket.(map[string]interface{})["location"].(map[string]interface{})["buckets"].([]interface{}); ok {
 							for _, locationBucket := range locationBuckets {
 								building := locationBucket.(map[string]interface{})["key"].(string)
-
+								logger.Debugf("building--------------------------------------- %s", building)
 								// 瑙f瀽鎸塮loor鐨勮仛鍚堢粨鏋�
 								if floorBuckets, ok := locationBucket.(map[string]interface{})["floor"].(map[string]interface{})["buckets"].([]interface{}); ok {
 									for _, floorBucket := range floorBuckets {
@@ -472,6 +471,8 @@
 												persons = append(persons, docNumBucket.(map[string]interface{})["key"].(string))
 											}
 										}
+
+										logger.Debugf("floor--------------------------------------- %s-- %s --", floor, appearCount)
 										record := &LocationRecord{
 											//PicDate:        timestamp,
 											DocumentNumbers: persons,

--
Gitblit v1.8.0