Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hilo-group
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
hujiebin
hilo-group
Commits
36d4fb9b
Commit
36d4fb9b
authored
Mar 22, 2023
by
chenweijian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
家族修改铭牌
parent
1efa1434
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
family.go
domain/model/groupPower_m/family.go
+12
-5
No files found.
domain/model/groupPower_m/family.go
View file @
36d4fb9b
...
@@ -113,16 +113,23 @@ func UpdateFamily(model *domain.Model, familyId uint64, name, nameplate, declara
...
@@ -113,16 +113,23 @@ func UpdateFamily(model *domain.Model, familyId uint64, name, nameplate, declara
if
familyId
==
0
||
(
name
==
""
&&
nameplate
==
""
&&
declaration
==
""
&&
icon
==
""
)
{
if
familyId
==
0
||
(
name
==
""
&&
nameplate
==
""
&&
declaration
==
""
&&
icon
==
""
)
{
return
nil
return
nil
}
}
// 修改铭牌
if
nameplate
!=
""
{
sql
:=
"UPDATE `group_power` a left join (SELECT ? `id` FROM group_power WHERE nameplate = ?) b on a.id = b.id SET a.`nameplate`=? where a.id=? and b.id is null;"
result
:=
model
.
Db
.
Exec
(
sql
,
familyId
,
nameplate
,
nameplate
,
familyId
)
if
result
.
Error
!=
nil
{
return
myerr
.
WrapErr
(
result
.
Error
)
}
if
result
.
RowsAffected
<=
0
{
return
myerr
.
WrapErr
(
bizerr
.
GroupPowerHaveChangeInfo
)
}
return
nil
}
db
:=
model
.
Db
.
Model
(
GroupPower
{})
db
:=
model
.
Db
.
Model
(
GroupPower
{})
updateMap
:=
make
(
map
[
string
]
interface
{})
updateMap
:=
make
(
map
[
string
]
interface
{})
if
name
!=
""
{
if
name
!=
""
{
updateMap
[
"name"
]
=
name
updateMap
[
"name"
]
=
name
}
}
if
nameplate
!=
""
{
updateMap
[
"nameplate"
]
=
nameplate
db
=
db
.
Joins
(
"left join (SELECT ? `id` FROM group_power WHERE nameplate=?) b on a.id = b.id"
,
familyId
,
nameplate
)
.
Where
(
"b.id is null"
)
}
if
declaration
!=
""
{
if
declaration
!=
""
{
updateMap
[
"declaration"
]
=
declaration
updateMap
[
"declaration"
]
=
declaration
}
}
...
...
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