Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
谢明辉
/
vion-label
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 51ced3cc
authored
Aug 25, 2021
by
xmh
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
可以回收人员也可以回收子任务
1 parent
3dfe88b1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
11 deletions
label-platform/src/main/java/com/viontech/label/platform/controller/web/ReidController.java
label-platform/src/main/java/com/viontech/label/platform/service/main/ReidService.java
label-platform/src/main/java/com/viontech/label/platform/controller/web/ReidController.java
View file @
51ced3c
...
@@ -200,8 +200,8 @@ public class ReidController {
...
@@ -200,8 +200,8 @@ public class ReidController {
}
}
@GetMapping
(
"recovery"
)
@GetMapping
(
"recovery"
)
public
Object
recovery
(
@RequestParam
String
personUnid
,
@RequestParam
Long
packId
)
throws
Exception
{
public
Object
recovery
(
@RequestParam
(
required
=
false
)
String
personUnid
,
@RequestParam
(
required
=
false
)
Long
[]
subTaskIdArr
,
@RequestParam
Long
packId
)
throws
Exception
{
reidService
.
recovery
(
personUnid
,
packId
);
reidService
.
recovery
(
personUnid
,
subTaskIdArr
,
packId
);
return
JsonMessageUtil
.
getSuccessJsonMsg
(
"success"
);
return
JsonMessageUtil
.
getSuccessJsonMsg
(
"success"
);
}
}
...
...
label-platform/src/main/java/com/viontech/label/platform/service/main/ReidService.java
View file @
51ced3c
...
@@ -4,7 +4,6 @@ import cn.dev33.satoken.stp.StpUtil;
...
@@ -4,7 +4,6 @@ import cn.dev33.satoken.stp.StpUtil;
import
com.fasterxml.jackson.core.JsonProcessingException
;
import
com.fasterxml.jackson.core.JsonProcessingException
;
import
com.fasterxml.jackson.databind.ObjectMapper
;
import
com.fasterxml.jackson.databind.ObjectMapper
;
import
com.google.common.collect.Lists
;
import
com.google.common.collect.Lists
;
import
com.viontech.keliu.exception.ParameterExceptin
;
import
com.viontech.keliu.model.*
;
import
com.viontech.keliu.model.*
;
import
com.viontech.keliu.util.DateUtil
;
import
com.viontech.keliu.util.DateUtil
;
import
com.viontech.keliu.websocket.AlgApiClient
;
import
com.viontech.keliu.websocket.AlgApiClient
;
...
@@ -31,10 +30,8 @@ import org.springframework.transaction.annotation.Transactional;
...
@@ -31,10 +30,8 @@ import org.springframework.transaction.annotation.Transactional;
import
org.springframework.web.multipart.MultipartFile
;
import
org.springframework.web.multipart.MultipartFile
;
import
javax.annotation.Resource
;
import
javax.annotation.Resource
;
import
javax.websocket.DeploymentException
;
import
java.io.File
;
import
java.io.File
;
import
java.io.FileOutputStream
;
import
java.io.FileOutputStream
;
import
java.io.IOException
;
import
java.util.*
;
import
java.util.*
;
import
java.util.concurrent.CompletableFuture
;
import
java.util.concurrent.CompletableFuture
;
import
java.util.concurrent.TimeUnit
;
import
java.util.concurrent.TimeUnit
;
...
@@ -505,25 +502,39 @@ public class ReidService {
...
@@ -505,25 +502,39 @@ public class ReidService {
* 回收人员
* 回收人员
*/
*/
@Transactional
(
rollbackFor
=
Throwable
.
class
)
@Transactional
(
rollbackFor
=
Throwable
.
class
)
public
synchronized
void
recovery
(
String
personUnid
,
Long
packId
)
throws
Exception
{
public
synchronized
void
recovery
(
String
personUnid
,
Long
[]
subtaskIdArr
,
Long
packId
)
throws
Exception
{
String
recoveryPersonUnid
=
null
;
SubTaskExample
subTaskExample
=
new
SubTaskExample
();
SubTaskExample
subTaskExample
=
new
SubTaskExample
();
subTaskExample
.
createCriteria
().
andPackIdEqualTo
(
packId
).
andStatusEqualTo
(
SubTaskStatus
.
recycled
.
val
);
subTaskExample
.
createCriteria
().
andPackIdEqualTo
(
packId
).
andStatusEqualTo
(
SubTaskStatus
.
recycled
.
val
);
List
<
SubTask
>
subTasks
=
subTaskService
.
selectByExample
(
subTaskExample
);
List
<
SubTask
>
subTasks
=
subTaskService
.
selectByExample
(
subTaskExample
);
if
(
subTasks
.
size
()
>
0
)
{
recoveryPersonUnid
=
subTasks
.
get
(
0
).
getPersonUnid
();
}
SubTask
subTask
=
new
SubTask
();
SubTask
subTask
=
new
SubTask
();
subTask
.
setStatus
(
SubTaskStatus
.
recycled
.
val
);
subTask
.
setStatus
(
SubTaskStatus
.
recycled
.
val
);
subTask
.
setPersonUnid
(
recoveryPersonUnid
);
String
poolName
=
Constants
.
getReidPoolName
(
packId
);
if
(
subtaskIdArr
!=
null
)
{
subTaskExample
=
new
SubTaskExample
();
subTaskExample
.
createCriteria
().
andIdIn
(
Arrays
.
asList
(
subtaskIdArr
));
subTasks
=
subTaskService
.
selectByExample
(
subTaskExample
);
if
(
subTasks
.
size
()
>
0
)
{
if
(
subTasks
.
size
()
>
0
)
{
subTask
.
setPersonUnid
(
subTasks
.
get
(
0
).
getPersonUnid
());
Set
<
String
>
personUnidNeedUpdate
=
subTasks
.
stream
().
map
(
SubTask:
:
getPersonUnid
).
collect
(
Collectors
.
toSet
());
subTaskService
.
updateByExampleSelective
(
subTask
,
subTaskExample
);
for
(
String
s
:
personUnidNeedUpdate
)
{
updatePoolByPersonUnid
(
s
,
poolName
);
}
}
}
}
if
(
personUnid
!=
null
)
{
subTaskExample
=
new
SubTaskExample
();
subTaskExample
=
new
SubTaskExample
();
subTaskExample
.
createCriteria
().
andPersonUnidEqualTo
(
personUnid
).
andPackIdEqualTo
(
packId
);
subTaskExample
.
createCriteria
().
andPersonUnidEqualTo
(
personUnid
).
andPackIdEqualTo
(
packId
);
subTaskService
.
updateByExampleSelective
(
subTask
,
subTaskExample
);
subTaskService
.
updateByExampleSelective
(
subTask
,
subTaskExample
);
String
poolName
=
Constants
.
getReidPoolName
(
packId
);
matchClient
.
EASY_PERSON_API
.
deletePerson
(
poolName
,
Collections
.
singletonList
(
personUnid
));
matchClient
.
EASY_PERSON_API
.
deletePerson
(
poolName
,
Collections
.
singletonList
(
personUnid
));
}
}
}
public
void
exitLabeling
(
String
personUnid
,
Long
packId
)
{
public
void
exitLabeling
(
String
personUnid
,
Long
packId
)
{
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment