Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
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
haoban3.0
haoban-manage3.0
Commits
61e8a861
Commit
61e8a861
authored
Jul 20, 2022
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
log
parent
b5750abc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
HmLinkController.java
...gic/haoban/manage/web/controller/hm/HmLinkController.java
+8
-7
No files found.
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/controller/hm/HmLinkController.java
View file @
61e8a861
...
@@ -219,7 +219,7 @@ public class HmLinkController {
...
@@ -219,7 +219,7 @@ public class HmLinkController {
newValue
=
""
;
newValue
=
""
;
}
}
if
(
type
==
0
&&
!
oldValue
.
equals
(
newValue
))
{
if
(
type
==
0
&&
!
oldValue
.
equals
(
newValue
))
{
sb
.
append
(
title
).
append
(
"「"
).
append
(
oldValue
).
append
(
"」变更「"
).
append
(
newValue
).
append
(
"」"
);
sb
.
append
(
title
).
append
(
"「"
).
append
(
oldValue
).
append
(
"」变更
为
「"
).
append
(
newValue
).
append
(
"」"
);
return
sb
.
toString
();
return
sb
.
toString
();
}
}
// 会员标签
// 会员标签
...
@@ -232,7 +232,7 @@ public class HmLinkController {
...
@@ -232,7 +232,7 @@ public class HmLinkController {
if
(
null
!=
newResp
)
{
if
(
null
!=
newResp
)
{
newValue
=
newResp
.
getTagName
()
+
"-"
+
newResp
.
getTagItemName
();
newValue
=
newResp
.
getTagName
()
+
"-"
+
newResp
.
getTagItemName
();
}
}
sb
.
append
(
title
).
append
(
"「"
).
append
(
oldValue
).
append
(
"」变更「"
).
append
(
newValue
).
append
(
"」"
);
sb
.
append
(
title
).
append
(
"「"
).
append
(
oldValue
).
append
(
"」变更
为
「"
).
append
(
newValue
).
append
(
"」"
);
return
sb
.
toString
();
return
sb
.
toString
();
}
}
// 欢迎语
// 欢迎语
...
@@ -344,8 +344,9 @@ public class HmLinkController {
...
@@ -344,8 +344,9 @@ public class HmLinkController {
addList
.
add
(
dto
.
getStoreName
()
+
"("
+
dto
.
getStoreCode
()
+
")"
);
addList
.
add
(
dto
.
getStoreName
()
+
"("
+
dto
.
getStoreCode
()
+
")"
);
}
}
}
}
tempSb
.
append
(
"新增门店「"
).
append
(
addList
.
stream
().
collect
(
Collectors
.
joining
(
"、"
)));
if
(
CollectionUtils
.
isNotEmpty
(
addList
))
{
tempSb
.
append
(
"」"
);
tempSb
.
append
(
"新增门店「"
).
append
(
addList
.
stream
().
collect
(
Collectors
.
joining
(
"、"
))).
append
(
"」"
);
}
}
}
if
(
CollectionUtils
.
isNotEmpty
(
newList
))
{
if
(
CollectionUtils
.
isNotEmpty
(
newList
))
{
...
@@ -356,10 +357,10 @@ public class HmLinkController {
...
@@ -356,10 +357,10 @@ public class HmLinkController {
delIdList
.
add
(
item
.
getStoreName
()
+
"("
+
item
.
getStoreCode
()
+
")"
);
delIdList
.
add
(
item
.
getStoreName
()
+
"("
+
item
.
getStoreCode
()
+
")"
);
}
}
}
}
tempSb
.
append
(
"删除门店「"
).
append
(
delIdList
.
stream
().
collect
(
Collectors
.
joining
(
"、"
)));
if
(
CollectionUtils
.
isNotEmpty
(
delIdList
))
{
tempSb
.
append
(
"」"
);
tempSb
.
append
(
"删除门店「"
).
append
(
delIdList
.
stream
().
collect
(
Collectors
.
joining
(
"、"
))).
append
(
"」"
);
}
}
}
}
}
// 更新
// 更新
return
tempSb
.
toString
();
return
tempSb
.
toString
();
...
...
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