Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Pangea-Agent
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Gavin-Group
Pangea-Agent
Commits
29664172
Commit
29664172
authored
Dec 29, 2025
by
youxiaoji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
+ [增加对海信园区的过滤]
parent
5eecc0ac
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
VisitorAppointmentTool.java
...java/pangea/hiagent/tool/impl/VisitorAppointmentTool.java
+1
-0
InfoCollectorService.java
...java/pangea/hiagent/web/service/InfoCollectorService.java
+1
-1
No files found.
backend/src/main/java/pangea/hiagent/tool/impl/VisitorAppointmentTool.java
View file @
29664172
...
@@ -259,6 +259,7 @@ public class VisitorAppointmentTool {
...
@@ -259,6 +259,7 @@ public class VisitorAppointmentTool {
if
(
page
.
url
().
compareToIgnoreCase
(
destUrl
)
==
0
)
{
if
(
page
.
url
().
compareToIgnoreCase
(
destUrl
)
==
0
)
{
log
.
info
(
"有必填项未提供"
);
log
.
info
(
"有必填项未提供"
);
}
}
log
.
info
(
"Submit Success"
);
return
"提交成功"
;
return
"提交成功"
;
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
long
endTime
=
System
.
currentTimeMillis
();
long
endTime
=
System
.
currentTimeMillis
();
...
...
backend/src/main/java/pangea/hiagent/web/service/InfoCollectorService.java
View file @
29664172
...
@@ -37,7 +37,7 @@ public class InfoCollectorService {
...
@@ -37,7 +37,7 @@ public class InfoCollectorService {
public
void
saveValue
(
String
key
,
Object
value
)
{
public
void
saveValue
(
String
key
,
Object
value
)
{
log
.
info
(
"key {} value {}"
,
key
,
value
);
log
.
info
(
"key {} value {}"
,
key
,
value
);
if
(
value
==
null
||
StringUtils
.
isEmpty
(
value
.
toString
())
if
(
value
==
null
||
StringUtils
.
isEmpty
(
value
.
toString
())
||
value
.
toString
().
compareToIgnoreCase
(
"待补充"
)
==
0
)
{
||
value
.
toString
().
compareToIgnoreCase
(
"待补充"
)
==
0
||
value
.
toString
().
contains
(
"海信园区"
)
)
{
return
;
return
;
}
}
values
.
put
(
key
,
value
);
values
.
put
(
key
,
value
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment