Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
8
8timerapiv200
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
8timerv2
8timerapiv200
Commits
db3a5de0
Commit
db3a5de0
authored
Sep 21, 2023
by
翁国栋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
审批添加人员bug
parent
d3b83848
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
+16
-4
src/main/java/cn/timer/api/controller/disk/DiskFilesController.java
+4
-1
src/main/java/cn/timer/api/controller/spmk/SpmkController.java
+12
-3
No files found.
src/main/java/cn/timer/api/controller/disk/DiskFilesController.java
View file @
db3a5de0
...
...
@@ -80,11 +80,14 @@ public class DiskFilesController {
@ApiOperation
(
value
=
"上传普通文件"
,
httpMethod
=
"POST"
,
notes
=
"接口发布说明"
)
public
Result
<
Object
>
upload
(
@CurrentUser
UserBean
userBean
,
@RequestParam
(
required
=
true
)
MultipartFile
[]
file
,
@ApiParam
(
"文件文件夹或共享空间ID"
)
@RequestParam
(
required
=
false
)
Integer
catalogueId
,
HttpServletRequest
request
)
{
//如果不指定文件夹将选择该用户最近创建的第一级目录,ios端上传并没有指定文件夹
if
(
catalogueId
<=
0
){
DiskCatalogue
diskCatalogue
=
DiskCatalogue
.
builder
().
build
().
selectOne
(
new
QueryWrapper
<
DiskCatalogue
>().
select
(
"id"
)
.
eq
(
"org_id"
,
userBean
.
getOrgCode
())
.
eq
(
"parent_id"
,
0
)
.
eq
(
"delete_flag"
,
0
)
.
eq
(
"create_user_id"
,
userBean
.
getEmpNum
()).
orderByAsc
(
"create_time"
)
.
eq
(
"type"
,
JxglEnumInterface
.
DiskCatalogueType
.
DISK_FILE
.
getType
())
.
eq
(
"create_user_id"
,
userBean
.
getEmpNum
()).
orderByDesc
(
"create_time"
)
);
if
(
StringUtils
.
isEmpty
(
diskCatalogue
)){
diskCatalogue
=
new
DiskCatalogue
();
...
...
src/main/java/cn/timer/api/controller/spmk/SpmkController.java
View file @
db3a5de0
...
...
@@ -5,7 +5,11 @@ import java.io.Serializable;
import
java.util.*
;
import
java.util.stream.Collectors
;
import
cn.hutool.core.convert.Convert
;
import
cn.hutool.db.sql.SqlBuilder
;
import
cn.timer.api.bean.crm.CrmBusinessGroupMember
;
import
cn.timer.api.bean.crm.CrmClientContacts
;
import
cn.timer.api.bean.kqmk.KqglAssoLeaveEmployeeBalance
;
import
cn.timer.api.bean.sche.ScheduleTask
;
import
cn.timer.api.bean.spmk.*
;
import
cn.timer.api.bean.zzgl.ZzglAuth
;
...
...
@@ -1213,9 +1217,14 @@ public class SpmkController {
if
(!
listFlowChildren
.
get
(
currentIndex
).
getExecute
().
equals
(
"1"
)
&&
!
listFlowChildren
.
get
(
currentIndex
).
getExecute
().
equals
(
"0"
))
{
//如果当前索引下的都要变更为0未执行
FlowChildren
flowChildren
=
listFlowChildren
.
get
(
spmkApproveDetailDto
.
getIndex
());
User
user
=
flowChildren
.
getRelation
().
get
(
0
).
getUsers
().
get
(
spmkApproveDetailDto
.
getUserIndex
());
SpmkApproveExecuteRecord
spmkApproveExecuteRecord
=
spmkApproveExecuteRecordMapper
.
selectExecuteRecordById
(
Integer
.
parseInt
(
user
.
getId
()),
spmkApproveDetailSummary
.
getApproveSummaryId
());
//删除审批过的人记录
SpmkApproveExecuteRecord
spmkApproveExecuteRecord
=
null
;
//如果有执行记录
if
(
spmkApproveDetailDto
.
getApproveExecuteRecordId
()>
0
){
spmkApproveExecuteRecord
=
spmkApproveExecuteRecordMapper
.
selectById
(
spmkApproveDetailDto
.
getApproveExecuteRecordId
());
}
else
{
User
user
=
flowChildren
.
getRelation
().
get
(
0
).
getUsers
().
get
(
spmkApproveDetailDto
.
getUserIndex
());
spmkApproveExecuteRecord
=
spmkApproveExecuteRecordMapper
.
selectExecuteRecordById
(
Integer
.
parseInt
(
user
.
getId
()),
spmkApproveDetailSummary
.
getApproveSummaryId
());
}
//删除审批过的人记录
if
(
spmkApproveExecuteRecord
!=
null
)
{
spmkApproveExecuteRecordMapper
.
delExecuteRecord
(
spmkApproveExecuteRecord
.
getId
(),
spmkApproveDetailSummary
.
getApproveSummaryId
());
}
...
...
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