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
7f2be3d9
Commit
7f2be3d9
authored
May 07, 2020
by
tangzhaoqian
Committed by
chenzg
Jul 05, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
权限、8个模板数据接口定义
parent
6eda3847
Show whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
590 additions
and
47 deletions
+590
-47
src/main/java/cn/timer/api/aspect/BindingResultAspect.java
+39
-6
src/main/java/cn/timer/api/aspect/lang/bean/ValidationError.java
+0
-1
src/main/java/cn/timer/api/bean/spmk/SpmkApprovalTemplate.java
+1
-1
src/main/java/cn/timer/api/bean/spmk/SpmkApproveSummary.java
+1
-1
src/main/java/cn/timer/api/bean/spmk/SpmkCustomApproval.java
+4
-1
src/main/java/cn/timer/api/controller/qyzx/QyzxController.java
+0
-1
src/main/java/cn/timer/api/controller/spmk/SpmkServiceImpl.java
+42
-22
src/main/java/cn/timer/api/dao/spmk/SpmkApprovalGMapper.java
+1
-1
src/main/java/cn/timer/api/dto/spmk/MySummaryQueryDto.java
+2
-2
src/main/java/cn/timer/api/dto/spmk/SpmkApprovalTemplateDto.java
+1
-1
src/main/java/cn/timer/api/dto/spmk/SpmkApproveSummaryDto.java
+3
-3
src/main/java/cn/timer/api/dto/spmk/SpmkCustomApprovalDto.java
+21
-1
src/main/java/cn/timer/api/utils/router/RouterUtils.java
+1
-1
src/main/java/cn/timer/api/utils/router/business/EvectionBusiness.java
+40
-0
src/main/java/cn/timer/api/utils/router/business/LeaveBusiness.java
+42
-0
src/main/java/cn/timer/api/utils/router/business/RecruitBusiness.java
+57
-0
src/main/java/cn/timer/api/utils/router/business/RegularizationBusiness.java
+42
-0
src/main/java/cn/timer/api/utils/router/business/ReissueACardBusiness.java
+35
-0
src/main/java/cn/timer/api/utils/router/business/ResignationBusiness.java
+39
-0
src/main/java/cn/timer/api/utils/router/business/SpmkAssoBusiness.java
+16
-0
src/main/java/cn/timer/api/utils/router/business/SpmkAssoBusinessFactory.java
+49
-0
src/main/java/cn/timer/api/utils/router/business/TransferPositionBusiness.java
+43
-0
src/main/java/cn/timer/api/utils/router/business/WorkOvertimeBusiness.java
+41
-0
src/main/java/cn/timer/api/utils/router/enums/ApproveEnum.java
+43
-0
src/main/resources/mapping/spmk/SpmkApprovalGMapper.xml
+17
-5
src/main/resources/mapping/spmk/SpmkCustomApprovalMapper.xml
+10
-0
No files found.
src/main/java/cn/timer/api/aspect/BindingResultAspect.java
View file @
7f2be3d9
...
@@ -37,25 +37,38 @@ import cn.timer.api.utils.ResultUtil;
...
@@ -37,25 +37,38 @@ import cn.timer.api.utils.ResultUtil;
@Component
@Component
public
class
BindingResultAspect
{
public
class
BindingResultAspect
{
// 配置织入点
//
@annotation
配置织入点
@Pointcut
(
"@annotation(cn.timer.api.aspect.lang.annotation.BindingResultCtrol)"
)
@Pointcut
(
"@annotation(cn.timer.api.aspect.lang.annotation.BindingResultCtrol)"
)
public
void
bindingResultPointCut
()
public
void
bindingResultPointCut
()
{
{
}
}
@Before
(
"bindingResultPointCut()"
)
// execution 配置织入点
@Pointcut
(
"execution(* cn.timer.api.controller.*.*.*(..))"
)
public
void
clazzPointCut
()
{
}
// @Before("bindingResultPointCut()")
public
void
doBefore
(
JoinPoint
point
)
throws
Throwable
public
void
doBefore
(
JoinPoint
point
)
throws
Throwable
{
{
//预留
//预留
// handleDataScope(point);
// handleDataScope(point);
}
}
@Around
(
"bindingResultPointCut() && args(..,bindingResult)"
)
// @Around("bindingResultPointCut() && args(..,bindingResult)")
public
Object
doAround
(
ProceedingJoinPoint
joinPoint
,
BindingResult
bindingResult
)
throws
Throwable
{
@Around
(
"clazzPointCut()"
)
public
Object
doAround
(
ProceedingJoinPoint
joinPoint
)
throws
Throwable
{
Long
startTime
=
System
.
currentTimeMillis
();
Long
startTime
=
System
.
currentTimeMillis
();
Object
retVal
;
Object
retVal
;
if
(
bindingResult
.
hasErrors
()){
Object
[]
objs
=
joinPoint
.
getArgs
();
List
<
ObjectError
>
ls
=
bindingResult
.
getAllErrors
();
List
<
Object
>
listObj
=
CollectionUtil
.
toList
(
objs
);
BeanPropertyBindingResult
optional
=
(
BeanPropertyBindingResult
)
listObj
.
stream
()
.
filter
(
p
->
"BeanPropertyBindingResult"
.
equals
(
ClassUtil
.
getClassName
(
p
,
true
)))
.
findFirst
()
.
orElse
(
null
);
if
(
optional
!=
null
&&
optional
.
hasErrors
()){
List
<
ObjectError
>
ls
=
optional
.
getAllErrors
();
List
<
ValidationError
>
listVe
=
new
ArrayList
<
ValidationError
>();
List
<
ValidationError
>
listVe
=
new
ArrayList
<
ValidationError
>();
ValidationError
ve
;
ValidationError
ve
;
for
(
ObjectError
one
:
ls
)
{
for
(
ObjectError
one
:
ls
)
{
...
@@ -80,6 +93,26 @@ public class BindingResultAspect {
...
@@ -80,6 +93,26 @@ public class BindingResultAspect {
Console
.
log
(
"返回内容 {}: "
,
JSONObject
.
toJSONString
(
retVal
));
Console
.
log
(
"返回内容 {}: "
,
JSONObject
.
toJSONString
(
retVal
));
Long
endtime
=
System
.
currentTimeMillis
();
Long
endtime
=
System
.
currentTimeMillis
();
Console
.
log
(
"执行耗时为{}:"
,
endtime
-
startTime
+
"ms"
);
Console
.
log
(
"执行耗时为{}:"
,
endtime
-
startTime
+
"ms"
);
// Object[] objs = joinPoint.getArgs();
//
// List<Object> listObj = CollectionUtil.toList(objs);
// BeanPropertyBindingResult optional = (BeanPropertyBindingResult)listObj.stream()
// .filter(p -> "BeanPropertyBindingResult".equals(ClassUtil.getClassName(p, true)))
// .findFirst()
// .orElse(null);
// if (optional != null && optional.hasErrors()) {
// System.err.println("Optional: "+ optional);
// }
return
retVal
;
return
retVal
;
}
}
...
...
src/main/java/cn/timer/api/aspect/lang/bean/ValidationError.java
View file @
7f2be3d9
package
cn
.
timer
.
api
.
aspect
.
lang
.
bean
;
package
cn
.
timer
.
api
.
aspect
.
lang
.
bean
;
import
cn.timer.api.bean.spmk.SpmkApprovalG
;
import
lombok.AllArgsConstructor
;
import
lombok.AllArgsConstructor
;
import
lombok.Builder
;
import
lombok.Builder
;
import
lombok.Data
;
import
lombok.Data
;
...
...
src/main/java/cn/timer/api/bean/spmk/SpmkApprovalTemplate.java
View file @
7f2be3d9
...
@@ -70,7 +70,7 @@ public class SpmkApprovalTemplate extends Model<SpmkApprovalTemplate> {
...
@@ -70,7 +70,7 @@ public class SpmkApprovalTemplate extends Model<SpmkApprovalTemplate> {
@ApiModelProperty
(
value
=
"创建时间 "
,
example
=
"创建时间"
)
@ApiModelProperty
(
value
=
"创建时间 "
,
example
=
"创建时间"
)
private
Date
createTime
;
private
Date
createTime
;
@ApiModelProperty
(
value
=
"关联类型
1转正 2离职 3调薪 4调岗 5加班 6请假 7出差 8外出 9补卡
"
,
example
=
"1"
)
@ApiModelProperty
(
value
=
"关联类型
0无 1转正 2离职 3调岗 4加班 5请假 6出差 7外出 8补卡 9调薪
"
,
example
=
"1"
)
private
Integer
assoType
;
private
Integer
assoType
;
@ApiModelProperty
(
value
=
"审批表单 "
,
example
=
"审批表单"
)
@ApiModelProperty
(
value
=
"审批表单 "
,
example
=
"审批表单"
)
...
...
src/main/java/cn/timer/api/bean/spmk/SpmkApproveSummary.java
View file @
7f2be3d9
...
@@ -73,7 +73,7 @@ public class SpmkApproveSummary extends Model<SpmkApproveSummary> {
...
@@ -73,7 +73,7 @@ public class SpmkApproveSummary extends Model<SpmkApproveSummary> {
@ApiModelProperty
(
value
=
"历史审批人 "
,
example
=
"历史审批人"
)
@ApiModelProperty
(
value
=
"历史审批人 "
,
example
=
"历史审批人"
)
private
String
historyApprover
;
private
String
historyApprover
;
@ApiModelProperty
(
value
=
"关联类型
1转正 2离职 3调薪 4调岗 5加班 6请假 7出差 8外出 9补卡"
,
example
=
"5
"
)
@ApiModelProperty
(
value
=
"关联类型
0无 1转正 2离职 3调岗 4加班 5请假 6出差 7外出 8补卡 9调薪"
,
example
=
"1
"
)
private
Integer
assoType
;
private
Integer
assoType
;
@TableField
(
fill
=
FieldFill
.
UPDATE
)
@TableField
(
fill
=
FieldFill
.
UPDATE
)
...
...
src/main/java/cn/timer/api/bean/spmk/SpmkCustomApproval.java
View file @
7f2be3d9
...
@@ -73,9 +73,12 @@ public class SpmkCustomApproval extends Model<SpmkCustomApproval> {
...
@@ -73,9 +73,12 @@ public class SpmkCustomApproval extends Model<SpmkCustomApproval> {
@ApiModelProperty
(
value
=
"创建时间 "
,
example
=
"创建时间"
)
@ApiModelProperty
(
value
=
"创建时间 "
,
example
=
"创建时间"
)
private
Date
createTime
;
private
Date
createTime
;
@ApiModelProperty
(
value
=
"关联类型
1转正 2离职 3调薪 4调岗 5加班 6请假 7出差 8外出 9补卡
"
,
example
=
"1"
)
@ApiModelProperty
(
value
=
"关联类型
0无 1转正 2离职 3调岗 4加班 5请假 6出差 7外出 8补卡 9调薪
"
,
example
=
"1"
)
private
Integer
assoType
;
private
Integer
assoType
;
@ApiModelProperty
(
value
=
"所有可见 0否 1是"
,
example
=
"1"
)
private
Integer
isAllvisible
;
@ApiModelProperty
(
value
=
"审批表单 "
,
example
=
"审批表单"
)
@ApiModelProperty
(
value
=
"审批表单 "
,
example
=
"审批表单"
)
private
byte
[]
froms
;
private
byte
[]
froms
;
...
...
src/main/java/cn/timer/api/controller/qyzx/QyzxController.java
View file @
7f2be3d9
...
@@ -39,7 +39,6 @@ import cn.timer.api.bean.zzgl.ZzglBmgwM;
...
@@ -39,7 +39,6 @@ import cn.timer.api.bean.zzgl.ZzglBmgwM;
import
cn.timer.api.config.annotation.CurrentUser
;
import
cn.timer.api.config.annotation.CurrentUser
;
import
cn.timer.api.config.annotation.UserBean
;
import
cn.timer.api.config.annotation.UserBean
;
import
cn.timer.api.config.enums.CommonEnum
;
import
cn.timer.api.config.enums.CommonEnum
;
import
cn.timer.api.dao.qyzx.QyzxEmpEntAssoMapper
;
import
cn.timer.api.dao.qyzx.QyzxEmpEntAssoMapper
;
import
cn.timer.api.dao.qyzx.QyzxEmpLoginMapper
;
import
cn.timer.api.dao.qyzx.QyzxEmpLoginMapper
;
import
cn.timer.api.dao.qyzx.QyzxEntAuthMapper
;
import
cn.timer.api.dao.qyzx.QyzxEntAuthMapper
;
...
...
src/main/java/cn/timer/api/controller/spmk/SpmkServiceImpl.java
View file @
7f2be3d9
...
@@ -66,6 +66,9 @@ import cn.timer.api.dto.spmk.SummaryQueryDto;
...
@@ -66,6 +66,9 @@ import cn.timer.api.dto.spmk.SummaryQueryDto;
import
cn.timer.api.utils.Result
;
import
cn.timer.api.utils.Result
;
import
cn.timer.api.utils.ResultUtil
;
import
cn.timer.api.utils.ResultUtil
;
import
cn.timer.api.utils.router.RouterUtils
;
import
cn.timer.api.utils.router.RouterUtils
;
import
cn.timer.api.utils.router.business.SpmkAssoBusiness
;
import
cn.timer.api.utils.router.business.SpmkAssoBusinessFactory
;
import
cn.timer.api.utils.router.enums.ApproveEnum
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiOperation
;
import
io.swagger.annotations.ApiOperation
;
...
@@ -74,6 +77,7 @@ import io.swagger.annotations.ApiOperation;
...
@@ -74,6 +77,7 @@ import io.swagger.annotations.ApiOperation;
@Transactional
@Transactional
@RequestMapping
(
value
=
"/spmk"
,
@RequestMapping
(
value
=
"/spmk"
,
produces
=
{
"application/json"
,
"multipart/form-data"
})
produces
=
{
"application/json"
,
"multipart/form-data"
})
//@BindingResultCtrol(title = "发起审批")
public
class
SpmkServiceImpl
{
public
class
SpmkServiceImpl
{
@Autowired
@Autowired
...
@@ -88,7 +92,7 @@ public class SpmkServiceImpl {
...
@@ -88,7 +92,7 @@ public class SpmkServiceImpl {
@Autowired
@Autowired
private
SpmkCustomApprovalMapper
spmkCustomApprovalMapper
;
private
SpmkCustomApprovalMapper
spmkCustomApprovalMapper
;
//TODO
新增或编辑-
审批模板组
//TODO 审批模板组
/**
/**
* 新增或编辑-审批模板组
* 新增或编辑-审批模板组
*/
*/
...
@@ -197,7 +201,7 @@ public class SpmkServiceImpl {
...
@@ -197,7 +201,7 @@ public class SpmkServiceImpl {
* 排序-审批模板
* 排序-审批模板
*/
*/
@PutMapping
(
value
=
"/update_approval_template"
)
@PutMapping
(
value
=
"/update_approval_template"
)
@ApiOperation
(
value
=
"8.
查询列表-审批模板组
"
,
httpMethod
=
"PUT"
,
notes
=
"查询列表-审批模板组"
)
@ApiOperation
(
value
=
"8.
排序-审批模板
"
,
httpMethod
=
"PUT"
,
notes
=
"查询列表-审批模板组"
)
@ApiOperationSupport
(
order
=
8
)
@ApiOperationSupport
(
order
=
8
)
public
Result
<
Object
>
ranksAt
(
@RequestBody
List
<
SpmkApprovalTemplate
>
list
){
public
Result
<
Object
>
ranksAt
(
@RequestBody
List
<
SpmkApprovalTemplate
>
list
){
...
@@ -214,7 +218,7 @@ public class SpmkServiceImpl {
...
@@ -214,7 +218,7 @@ public class SpmkServiceImpl {
@PostMapping
(
value
=
"/save_approval_g"
)
@PostMapping
(
value
=
"/save_approval_g"
)
@ApiOperation
(
value
=
"9.新增或编辑-审批组"
,
httpMethod
=
"POST"
,
notes
=
"新增或编辑-审批组"
)
@ApiOperation
(
value
=
"9.新增或编辑-审批组"
,
httpMethod
=
"POST"
,
notes
=
"新增或编辑-审批组"
)
@ApiOperationSupport
(
order
=
9
)
@ApiOperationSupport
(
order
=
9
)
public
Result
<
Object
>
saveAg
(
@CurrentUser
UserBean
userBean
,
@RequestBody
SpmkApprovalG
spmkApprovalG
){
public
Result
<
Object
>
saveAg
(
@CurrentUser
UserBean
userBean
,
@RequestBody
SpmkApprovalG
spmkApprovalG
){
spmkApprovalG
.
setOrgCode
(
userBean
.
getOrgCode
());
spmkApprovalG
.
setOrgCode
(
userBean
.
getOrgCode
());
return
spmkApprovalG
.
insertOrUpdate
()
?
ResultUtil
.
data
(
spmkApprovalG
,
"操作成功!"
)
:
ResultUtil
.
error
(
"操作失败!"
);
return
spmkApprovalG
.
insertOrUpdate
()
?
ResultUtil
.
data
(
spmkApprovalG
,
"操作成功!"
)
:
ResultUtil
.
error
(
"操作失败!"
);
...
@@ -243,7 +247,8 @@ public class SpmkServiceImpl {
...
@@ -243,7 +247,8 @@ public class SpmkServiceImpl {
@ApiOperationSupport
(
order
=
11
)
@ApiOperationSupport
(
order
=
11
)
public
Result
<
Object
>
selectListAg
(
@CurrentUser
UserBean
userBean
){
public
Result
<
Object
>
selectListAg
(
@CurrentUser
UserBean
userBean
){
return
ResultUtil
.
data
(
spmkApprovalGMapper
.
selectListAgInCa
(
userBean
.
getOrgCode
(),
userBean
.
getEmpNum
()),
"操作成功!"
);
// ZzglController.
return
ResultUtil
.
data
(
spmkApprovalGMapper
.
selectListAgInCa
(
userBean
.
getOrgCode
(),
userBean
.
getEmpNum
(),
null
),
"操作成功!"
);
}
}
...
@@ -277,10 +282,14 @@ public class SpmkServiceImpl {
...
@@ -277,10 +282,14 @@ public class SpmkServiceImpl {
ca
.
setFroms
(
ObjectUtil
.
serialize
(
spmkCustomApprovalDto
.
getFroms
()));
ca
.
setFroms
(
ObjectUtil
.
serialize
(
spmkCustomApprovalDto
.
getFroms
()));
ca
.
setRouter
(
ObjectUtil
.
serialize
(
spmkCustomApprovalDto
.
getRouter
()));
ca
.
setRouter
(
ObjectUtil
.
serialize
(
spmkCustomApprovalDto
.
getRouter
()));
//1.新增 SpmkCustomApproval-自定义审批
if
(!
ca
.
insertOrUpdate
())
if
(!
ca
.
insertOrUpdate
())
return
ResultUtil
.
error
(
"操作失败!-2"
);
return
ResultUtil
.
error
(
"操作失败!-2"
);
Integer
id
=
ca
.
getId
();
Integer
id
=
ca
.
getId
();
// 2.删除 历史的 SpmkInitiatorConfig-审批发起人配置,
SpmkInitiatorConfig
.
builder
().
build
().
delete
(
new
QueryWrapper
<
SpmkInitiatorConfig
>().
lambda
().
eq
(
SpmkInitiatorConfig:
:
getCustomApprovalId
,
id
));
Console
.
log
(
"自定义审批id: "
+
id
);
Console
.
log
(
"自定义审批id: "
+
id
);
List
<
SpmkInitiatorConfig
>
listIc
=
spmkCustomApprovalDto
.
getInitiatorConfigs
();
List
<
SpmkInitiatorConfig
>
listIc
=
spmkCustomApprovalDto
.
getInitiatorConfigs
();
...
@@ -288,6 +297,7 @@ public class SpmkServiceImpl {
...
@@ -288,6 +297,7 @@ public class SpmkServiceImpl {
for
(
int
i
=
0
,
n
=
listIc
.
size
();
i
<
n
;
i
++)
{
for
(
int
i
=
0
,
n
=
listIc
.
size
();
i
<
n
;
i
++)
{
listIc
.
get
(
i
).
setCustomApprovalId
(
id
);
listIc
.
get
(
i
).
setCustomApprovalId
(
id
);
}
}
// 3.新增 最新的 SpmkInitiatorConfig-审批发起人配置,
if
(!
spmkInitiatorConfigMapper
.
insertList
(
listIc
))
{
if
(!
spmkInitiatorConfigMapper
.
insertList
(
listIc
))
{
// 手动抛出异常,事务回滚
// 手动抛出异常,事务回滚
throw
new
Exception
();
throw
new
Exception
();
...
@@ -295,14 +305,14 @@ public class SpmkServiceImpl {
...
@@ -295,14 +305,14 @@ public class SpmkServiceImpl {
}
}
SpmkInitiatorConfig
.
builder
().
build
().
delete
(
new
QueryWrapper
<
SpmkInitiatorConfig
>().
lambda
().
eq
(
SpmkInitiatorConfig:
:
getCustomApprovalId
,
id
));
//
//
/**
/**
* 注意: 为保证该api的原子性 要加 事务处理 回滚(方法注解-@Transactional(rollbackFor = Exception.class))
* 注意: 为保证该api的原子性 要加 事务处理 回滚(方法注解-@Transactional(rollbackFor = Exception.class))
* 1.
删除 历史的 SpmkInitiatorConfig-审批发起人配置,
* 1.
新增 SpmkCustomApproval-自定义审批
* 2.
新增 最新的
SpmkInitiatorConfig-审批发起人配置,
* 2.
删除 历史的
SpmkInitiatorConfig-审批发起人配置,
* 3.新增
SpmkCustomApproval-自定义审批
* 3.新增
最新的 SpmkInitiatorConfig-审批发起人配置,
*/
*/
// 清空前端不需要的字段再返回,节省流量
// 清空前端不需要的字段再返回,节省流量
...
@@ -340,8 +350,8 @@ public class SpmkServiceImpl {
...
@@ -340,8 +350,8 @@ public class SpmkServiceImpl {
public
Result
<
Object
>
selectCaById
(
@PathVariable
int
id
){
public
Result
<
Object
>
selectCaById
(
@PathVariable
int
id
){
SpmkCustomApproval
ca
=
SpmkCustomApproval
.
builder
().
id
(
id
).
build
().
selectById
();
SpmkCustomApproval
ca
=
SpmkCustomApproval
.
builder
().
id
(
id
).
build
().
selectById
();
SpmkCustomApprovalDto
caD
=
SpmkCustomApprovalDto
.
builder
()
SpmkCustomApprovalDto
caD
=
SpmkCustomApprovalDto
.
builder
()
.
froms
(
ObjectUtil
.
un
serialize
(
ca
.
getFroms
()))
.
froms
(
ObjectUtil
.
de
serialize
(
ca
.
getFroms
()))
.
router
(
ObjectUtil
.
un
serialize
(
ca
.
getRouter
()))
.
router
(
ObjectUtil
.
de
serialize
(
ca
.
getRouter
()))
.
build
();
.
build
();
BeanUtil
.
copyProperties
(
ca
,
caD
,
"froms"
,
"router"
);
BeanUtil
.
copyProperties
(
ca
,
caD
,
"froms"
,
"router"
);
...
@@ -380,7 +390,7 @@ public class SpmkServiceImpl {
...
@@ -380,7 +390,7 @@ public class SpmkServiceImpl {
@ApiOperation
(
value
=
"17.发起审批"
,
httpMethod
=
"POST"
,
notes
=
"发起审批"
)
@ApiOperation
(
value
=
"17.发起审批"
,
httpMethod
=
"POST"
,
notes
=
"发起审批"
)
@ApiOperationSupport
(
order
=
17
)
@ApiOperationSupport
(
order
=
17
)
@Transactional
(
rollbackFor
=
Exception
.
class
)
@Transactional
(
rollbackFor
=
Exception
.
class
)
@BindingResultCtrol
(
title
=
"发起审批"
)
//
@BindingResultCtrol(title = "发起审批")
public
Result
<
Object
>
saveCa
(
@CurrentUser
UserBean
userBean
,
@Valid
@RequestBody
SpmkApproveSummaryDto
spmkApproveSummaryDto
,
BindingResult
bindingResult
)
throws
Exception
{
public
Result
<
Object
>
saveCa
(
@CurrentUser
UserBean
userBean
,
@Valid
@RequestBody
SpmkApproveSummaryDto
spmkApproveSummaryDto
,
BindingResult
bindingResult
)
throws
Exception
{
YgglMainEmp
ygglMainEmp
=
YgglMainEmp
.
builder
().
build
().
selectOne
(
new
QueryWrapper
<
YgglMainEmp
>()
YgglMainEmp
ygglMainEmp
=
YgglMainEmp
.
builder
().
build
().
selectOne
(
new
QueryWrapper
<
YgglMainEmp
>()
...
@@ -394,10 +404,10 @@ public class SpmkServiceImpl {
...
@@ -394,10 +404,10 @@ public class SpmkServiceImpl {
List
<
Router
>
listRouter
=
new
ArrayList
<
Router
>();
List
<
Router
>
listRouter
=
new
ArrayList
<
Router
>();
listRouter
.
add
(
spmkApproveSummaryDto
.
getRouter
());
listRouter
.
add
(
spmkApproveSummaryDto
.
getRouter
());
JSONObject
jSONObject
=
spmkApproveSummaryDto
.
getRequestData
()
JSONObject
jSONObject
=
spmkApproveSummaryDto
.
getRequestData
()
.
pu
t
(
"orgCode"
,
FromData
.
builder
().
value
(
String
.
valueOf
(
userBean
.
getOrgCode
())).
build
())
.
se
t
(
"orgCode"
,
FromData
.
builder
().
value
(
String
.
valueOf
(
userBean
.
getOrgCode
())).
build
())
.
pu
t
(
"initiator"
,
FromData
.
builder
().
value
(
spmkApproveSummaryDto
.
getInitiator
()).
build
())
.
se
t
(
"initiator"
,
FromData
.
builder
().
value
(
spmkApproveSummaryDto
.
getInitiator
()).
build
())
.
pu
t
(
"headUrl"
,
FromData
.
builder
().
value
(
ygglMainEmp
.
getHeadUrl
()).
build
())
.
se
t
(
"headUrl"
,
FromData
.
builder
().
value
(
ygglMainEmp
.
getHeadUrl
()).
build
())
.
pu
t
(
"id"
,
FromData
.
builder
().
value
(
StrUtil
.
toString
(
userBean
.
getEmpNum
())).
build
());
.
se
t
(
"id"
,
FromData
.
builder
().
value
(
StrUtil
.
toString
(
userBean
.
getEmpNum
())).
build
());
RouterUtils
.
NextNode
(
listRouter
,
jSONObject
,
ISFIRST
);
RouterUtils
.
NextNode
(
listRouter
,
jSONObject
,
ISFIRST
);
List
<
FlowChildren
>
listFlowChildren
=
new
ArrayList
<
FlowChildren
>();
List
<
FlowChildren
>
listFlowChildren
=
new
ArrayList
<
FlowChildren
>();
RouterUtils
.
getIsFlowChildren
(
listRouter
,
listFlowChildren
);
RouterUtils
.
getIsFlowChildren
(
listRouter
,
listFlowChildren
);
...
@@ -484,11 +494,10 @@ public class SpmkServiceImpl {
...
@@ -484,11 +494,10 @@ public class SpmkServiceImpl {
SpmkApproveDetailDto
adD
=
SpmkApproveDetailDto
.
builder
().
build
();
SpmkApproveDetailDto
adD
=
SpmkApproveDetailDto
.
builder
().
build
();
List
<
SpmkApproveExecuteRecord
>
listAer
=
spmkApproveExecuteRecordMapper
.
selectListByAsId
(
id
);
List
<
SpmkApproveExecuteRecord
>
listAer
=
spmkApproveExecuteRecordMapper
.
selectListByAsId
(
id
);
BeanUtil
.
copyProperties
(
ad
,
adD
,
"requestData"
,
"froms"
,
"router"
,
"spmkApproveExecuteRecord"
);
BeanUtil
.
copyProperties
(
ad
,
adD
,
"requestData"
,
"froms"
,
"router"
,
"spmkApproveExecuteRecord"
);
adD
.
setRequestData
(
ObjectUtil
.
deserialize
(
ad
.
getRequestData
()));
adD
.
setRequestData
(
ObjectUtil
.
unserialize
(
ad
.
getRequestData
()));
adD
.
setFroms
(
ObjectUtil
.
deserialize
(
ad
.
getFroms
()));
adD
.
setFroms
(
ObjectUtil
.
unserialize
(
ad
.
getFroms
()));
adD
.
setRouter
(
ObjectUtil
.
deserialize
(
ad
.
getRouter
()));
adD
.
setRouter
(
ObjectUtil
.
unserialize
(
ad
.
getRouter
()));
adD
.
setFlowChildren
(
ObjectUtil
.
deserialize
(
ad
.
getFlowChildren
()));
adD
.
setFlowChildren
(
ObjectUtil
.
unserialize
(
ad
.
getFlowChildren
()));
adD
.
setApproveExecuteRecord
(
listAer
);
adD
.
setApproveExecuteRecord
(
listAer
);
return
ResultUtil
.
data
(
adD
,
"操作成功!"
);
return
ResultUtil
.
data
(
adD
,
"操作成功!"
);
...
@@ -521,6 +530,9 @@ public class SpmkServiceImpl {
...
@@ -521,6 +530,9 @@ public class SpmkServiceImpl {
SpmkApproveDetail
ad
=
SpmkApproveDetail
.
builder
().
build
()
SpmkApproveDetail
ad
=
SpmkApproveDetail
.
builder
().
build
()
.
selectOne
(
new
QueryWrapper
<
SpmkApproveDetail
>()
.
selectOne
(
new
QueryWrapper
<
SpmkApproveDetail
>()
.
lambda
()
.
lambda
()
.
select
(
SpmkApproveDetail:
:
getId
,
SpmkApproveDetail:
:
getRequestData
,
SpmkApproveDetail:
:
getFlowChildren
)
.
eq
(
SpmkApproveDetail:
:
getApproveSummaryId
,
approvingDto
.
getAsId
()));
.
eq
(
SpmkApproveDetail:
:
getApproveSummaryId
,
approvingDto
.
getAsId
()));
// 查询 SpmkApproveSummary 状态
// 查询 SpmkApproveSummary 状态
...
@@ -542,7 +554,7 @@ public class SpmkServiceImpl {
...
@@ -542,7 +554,7 @@ public class SpmkServiceImpl {
}
}
if
(
aSummary
.
getSts
()
==
0
)
{
if
(
aSummary
.
getSts
()
==
0
)
{
List
<
FlowChildren
>
listFlowChildren
=
ObjectUtil
.
un
serialize
(
ad
.
getFlowChildren
());
List
<
FlowChildren
>
listFlowChildren
=
ObjectUtil
.
de
serialize
(
ad
.
getFlowChildren
());
RouterUtils
.
approving
(
RouterUtils
.
approving
(
listFlowChildren
,
listFlowChildren
,
approvingDto
.
getAsId
(),
approvingDto
.
getAsId
(),
...
@@ -560,10 +572,18 @@ public class SpmkServiceImpl {
...
@@ -560,10 +572,18 @@ public class SpmkServiceImpl {
if
(
fc
.
getExecute
()
==
"2"
)
{
if
(
fc
.
getExecute
()
==
"2"
)
{
// 查询 SpmkApproveSummary 状态
// 查询 SpmkApproveSummary 状态
aSummary
=
spmkApproveSummaryMapper
.
selectOne
(
new
QueryWrapper
<
SpmkApproveSummary
>().
lambda
()
aSummary
=
spmkApproveSummaryMapper
.
selectOne
(
new
QueryWrapper
<
SpmkApproveSummary
>().
lambda
()
.
select
(
SpmkApproveSummary:
:
getSts
)
.
select
(
SpmkApproveSummary:
:
getSts
,
SpmkApproveSummary:
:
getAssoType
)
.
eq
(
SpmkApproveSummary:
:
getId
,
approvingDto
.
getAsId
()));
.
eq
(
SpmkApproveSummary:
:
getId
,
approvingDto
.
getAsId
()));
if
(
aSummary
.
getSts
()
!=
3
)
{
if
(
aSummary
.
getSts
()
!=
3
)
{
SpmkApproveSummary
.
builder
().
id
(
approvingDto
.
getAsId
()).
endTime
(
new
Date
()).
sts
(
2
).
build
().
updateById
();
SpmkApproveSummary
.
builder
().
id
(
approvingDto
.
getAsId
()).
endTime
(
new
Date
()).
sts
(
2
).
build
().
updateById
();
//审批完成后 业务
SpmkAssoBusiness
sab
=
SpmkAssoBusinessFactory
.
createSpmkAssoType
(
ApproveEnum
.
getEnums
(
aSummary
.
getAssoType
()));
if
(
sab
!=
null
)
sab
.
handleApprove
(
ObjectUtil
.
deserialize
(
ad
.
getRequestData
()));
}
}
}
}
...
...
src/main/java/cn/timer/api/dao/spmk/SpmkApprovalGMapper.java
View file @
7f2be3d9
...
@@ -17,7 +17,7 @@ import cn.timer.api.bean.spmk.SpmkApprovalG;
...
@@ -17,7 +17,7 @@ import cn.timer.api.bean.spmk.SpmkApprovalG;
@Repository
@Repository
public
interface
SpmkApprovalGMapper
extends
BaseMapper
<
SpmkApprovalG
>
{
public
interface
SpmkApprovalGMapper
extends
BaseMapper
<
SpmkApprovalG
>
{
List
<
SpmkApprovalG
>
selectListAgInCa
(
@Param
(
"org_code"
)
Integer
org_code
,
@Param
(
"emp_num"
)
Integer
emp_num
);
List
<
SpmkApprovalG
>
selectListAgInCa
(
@Param
(
"org_code"
)
Integer
org_code
,
@Param
(
"emp_num"
)
Integer
emp_num
,
@Param
(
"deptIds"
)
List
<
Integer
>
deptIds
);
boolean
updateListRandsById
(
List
<
SpmkApprovalG
>
list
);
boolean
updateListRandsById
(
List
<
SpmkApprovalG
>
list
);
...
...
src/main/java/cn/timer/api/dto/spmk/MySummaryQueryDto.java
View file @
7f2be3d9
...
@@ -35,8 +35,8 @@ public class MySummaryQueryDto extends Page{
...
@@ -35,8 +35,8 @@ public class MySummaryQueryDto extends Page{
private
String
endTime
;
private
String
endTime
;
@NotNull
(
message
=
"type为空"
)
@NotNull
(
message
=
"type为空"
)
@DecimalMax
(
value
=
"2"
,
message
=
"
assoT
ype 只能为 0我发起的 1抄送我的 2我审批的"
)
@DecimalMax
(
value
=
"2"
,
message
=
"
t
ype 只能为 0我发起的 1抄送我的 2我审批的"
)
@DecimalMin
(
value
=
"0"
,
message
=
"
assoT
ype 只能为 0我发起的 1抄送我的 2我审批的"
)
@DecimalMin
(
value
=
"0"
,
message
=
"
t
ype 只能为 0我发起的 1抄送我的 2我审批的"
)
@ApiModelProperty
(
value
=
"0我发起的 1抄送我的 2我审批的"
,
example
=
"0"
)
@ApiModelProperty
(
value
=
"0我发起的 1抄送我的 2我审批的"
,
example
=
"0"
)
private
Integer
type
;
private
Integer
type
;
...
...
src/main/java/cn/timer/api/dto/spmk/SpmkApprovalTemplateDto.java
View file @
7f2be3d9
...
@@ -47,7 +47,7 @@ public class SpmkApprovalTemplateDto {
...
@@ -47,7 +47,7 @@ public class SpmkApprovalTemplateDto {
@ApiModelProperty
(
value
=
"创建时间 "
,
example
=
"创建时间"
)
@ApiModelProperty
(
value
=
"创建时间 "
,
example
=
"创建时间"
)
private
Date
createTime
;
private
Date
createTime
;
@ApiModelProperty
(
value
=
"关联类型
1转正 2离职 3调薪 4调岗 5加班 6请假 7出差 8外出 9补卡"
,
example
=
"2
"
)
@ApiModelProperty
(
value
=
"关联类型
0无 1转正 2离职 3调岗 4加班 5请假 6出差 7外出 8补卡 9调薪"
,
example
=
"1
"
)
private
Integer
assoType
;
private
Integer
assoType
;
@ApiModelProperty
(
value
=
"审批表单 "
,
example
=
"审批表单"
)
@ApiModelProperty
(
value
=
"审批表单 "
,
example
=
"审批表单"
)
...
...
src/main/java/cn/timer/api/dto/spmk/SpmkApproveSummaryDto.java
View file @
7f2be3d9
...
@@ -38,9 +38,9 @@ public class SpmkApproveSummaryDto{
...
@@ -38,9 +38,9 @@ public class SpmkApproveSummaryDto{
private
String
initiator
;
private
String
initiator
;
@NotNull
(
message
=
"assoType为空"
)
@NotNull
(
message
=
"assoType为空"
)
@DecimalMax
(
value
=
"9"
,
message
=
"assoType 只能为 0无 1转正 2离职 3调
薪 4调岗 5加班 6请假 7出差 8外出 9补卡
"
)
@DecimalMax
(
value
=
"9"
,
message
=
"assoType 只能为 0无 1转正 2离职 3调
岗 4加班 5请假 6出差 7外出 8补卡 9调薪
"
)
@DecimalMin
(
value
=
"0"
,
message
=
"assoType 只能为 0无 1转正 2离职 3调
薪 4调岗 5加班 6请假 7出差 8外出 9补卡
"
)
@DecimalMin
(
value
=
"0"
,
message
=
"assoType 只能为 0无 1转正 2离职 3调
岗 4加班 5请假 6出差 7外出 8补卡 9调薪
"
)
@ApiModelProperty
(
value
=
"关联类型 0无 1转正 2离职 3调
薪 4调岗 5加班 6请假 7出差 8外出 9补卡 "
,
example
=
"5
"
)
@ApiModelProperty
(
value
=
"关联类型 0无 1转正 2离职 3调
岗 4加班 5请假 6出差 7外出 8补卡 9调薪"
,
example
=
"1
"
)
private
Integer
assoType
;
private
Integer
assoType
;
@NotNull
(
message
=
"requestData为空"
)
@NotNull
(
message
=
"requestData为空"
)
...
...
src/main/java/cn/timer/api/dto/spmk/SpmkCustomApprovalDto.java
View file @
7f2be3d9
...
@@ -3,6 +3,10 @@ package cn.timer.api.dto.spmk;
...
@@ -3,6 +3,10 @@ package cn.timer.api.dto.spmk;
import
java.util.Date
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.List
;
import
javax.validation.constraints.DecimalMax
;
import
javax.validation.constraints.DecimalMin
;
import
javax.validation.constraints.NotBlank
;
import
cn.hutool.json.JSONObject
;
import
cn.hutool.json.JSONObject
;
import
cn.timer.api.bean.spmk.SpmkInitiatorConfig
;
import
cn.timer.api.bean.spmk.SpmkInitiatorConfig
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
...
@@ -23,12 +27,15 @@ public class SpmkCustomApprovalDto {
...
@@ -23,12 +27,15 @@ public class SpmkCustomApprovalDto {
@ApiModelProperty
(
value
=
"企业组织代码 企业组织代码"
,
example
=
"101"
)
@ApiModelProperty
(
value
=
"企业组织代码 企业组织代码"
,
example
=
"101"
)
private
Integer
orgCode
;
private
Integer
orgCode
;
@NotBlank
(
message
=
"approvalGId为空"
)
@ApiModelProperty
(
value
=
"审批组id 当前用户ID"
,
example
=
"101"
)
@ApiModelProperty
(
value
=
"审批组id 当前用户ID"
,
example
=
"101"
)
private
Integer
approvalGId
;
private
Integer
approvalGId
;
@NotBlank
(
message
=
"iconUrl为空"
)
@ApiModelProperty
(
value
=
"审批图标地址 "
,
example
=
"审批图标地址"
)
@ApiModelProperty
(
value
=
"审批图标地址 "
,
example
=
"审批图标地址"
)
private
String
iconUrl
;
private
String
iconUrl
;
@NotBlank
(
message
=
"name为空"
)
@ApiModelProperty
(
value
=
"审批名称 "
,
example
=
"审批名称"
)
@ApiModelProperty
(
value
=
"审批名称 "
,
example
=
"审批名称"
)
private
String
name
;
private
String
name
;
...
@@ -41,6 +48,7 @@ public class SpmkCustomApprovalDto {
...
@@ -41,6 +48,7 @@ public class SpmkCustomApprovalDto {
@ApiModelProperty
(
value
=
"排序 排序"
,
example
=
"101"
)
@ApiModelProperty
(
value
=
"排序 排序"
,
example
=
"101"
)
private
Integer
ranks
;
private
Integer
ranks
;
@NotBlank
(
message
=
"isOpinion为空"
)
@ApiModelProperty
(
value
=
"审批意见 是否必填 意见 0是 1否"
,
example
=
"101"
)
@ApiModelProperty
(
value
=
"审批意见 是否必填 意见 0是 1否"
,
example
=
"101"
)
private
Integer
isOpinion
;
private
Integer
isOpinion
;
...
@@ -50,15 +58,27 @@ public class SpmkCustomApprovalDto {
...
@@ -50,15 +58,27 @@ public class SpmkCustomApprovalDto {
@ApiModelProperty
(
value
=
"创建时间 "
,
example
=
"创建时间"
)
@ApiModelProperty
(
value
=
"创建时间 "
,
example
=
"创建时间"
)
private
Date
createTime
;
private
Date
createTime
;
@ApiModelProperty
(
value
=
"关联类型 1转正 2离职 3调薪 4调岗 5加班 6请假 7出差 8外出 9补卡"
,
example
=
"1"
)
@NotBlank
(
message
=
"assoType为空"
)
@DecimalMax
(
value
=
"9"
,
message
=
"assoType 只能为 0无 1转正 2离职 3调岗 4加班 5请假 6出差 7外出 8补卡 9调薪"
)
@DecimalMin
(
value
=
"0"
,
message
=
"assoType 只能为 0无 1转正 2离职 3调岗 4加班 5请假 6出差 7外出 8补卡 9调薪"
)
@ApiModelProperty
(
value
=
"关联类型 0无 1转正 2离职 3调岗 4加班 5请假 6出差 7外出 8补卡 9调薪"
,
example
=
"1"
)
private
Integer
assoType
;
private
Integer
assoType
;
@NotBlank
(
message
=
"isAllvisible为空"
)
@DecimalMax
(
value
=
"1"
,
message
=
"isAllvisible 只能为 0否 1是"
)
@DecimalMin
(
value
=
"0"
,
message
=
"isAllvisible 只能为 0否 1是"
)
@ApiModelProperty
(
value
=
"所有可见 0否 1是"
,
example
=
"1"
)
private
Integer
isAllvisible
;
@NotBlank
(
message
=
"froms为空"
)
@ApiModelProperty
(
value
=
"审批表单 "
,
example
=
"审批表单"
)
@ApiModelProperty
(
value
=
"审批表单 "
,
example
=
"审批表单"
)
private
List
<
JSONObject
>
froms
;
private
List
<
JSONObject
>
froms
;
@NotBlank
(
message
=
"router为空"
)
@ApiModelProperty
(
value
=
"审批流程 "
,
example
=
"审批流程"
)
@ApiModelProperty
(
value
=
"审批流程 "
,
example
=
"审批流程"
)
private
Router
router
;
private
Router
router
;
@NotBlank
(
message
=
"initiatorConfigs为空"
)
@ApiModelProperty
(
value
=
"可见发起人配置 "
,
example
=
"数组类型"
)
@ApiModelProperty
(
value
=
"可见发起人配置 "
,
example
=
"数组类型"
)
private
List
<
SpmkInitiatorConfig
>
initiatorConfigs
;
private
List
<
SpmkInitiatorConfig
>
initiatorConfigs
;
...
...
src/main/java/cn/timer/api/utils/router/RouterUtils.java
View file @
7f2be3d9
...
@@ -196,8 +196,8 @@ public class RouterUtils {
...
@@ -196,8 +196,8 @@ public class RouterUtils {
if
(
listCondition
==
null
||
listCondition
.
size
()
==
0
)
{
if
(
listCondition
==
null
||
listCondition
.
size
()
==
0
)
{
routerRule
.
setFlow
(
true
);
routerRule
.
setFlow
(
true
);
}
else
{
}
else
{
Compare
compare
;
for
(
Condition
condition
:
listCondition
)
{
for
(
Condition
condition
:
listCondition
)
{
Compare
compare
;
for
(
String
string
:
condition
.
getValues
())
{
for
(
String
string
:
condition
.
getValues
())
{
// 简单工厂模式 - 判断条件
// 简单工厂模式 - 判断条件
...
...
src/main/java/cn/timer/api/utils/router/business/EvectionBusiness.java
0 → 100644
View file @
7f2be3d9
package
cn
.
timer
.
api
.
utils
.
router
.
business
;
import
cn.hutool.core.util.StrUtil
;
import
cn.hutool.json.JSONObject
;
import
cn.timer.api.dto.spmk.FromData
;
import
lombok.Builder
;
/**
* 出差-业务
* @author Tang
*
*/
@Builder
public
class
EvectionBusiness
extends
SpmkAssoBusiness
{
@Override
public
void
handleApprove
(
JSONObject
jsonObj
)
{
// TODO Auto-generated method stub
// 发起人企业id
String
orgCode
=
jsonObj
.
get
(
"orgCode"
,
FromData
.
class
).
getValue
();
// 发起人id
String
id
=
jsonObj
.
get
(
"id"
,
FromData
.
class
).
getValue
();
// 发起人名称
String
initiator
=
jsonObj
.
get
(
"initiator"
,
FromData
.
class
).
getValue
();
// 开始时间
String
startTime
=
jsonObj
.
get
(
"__startTime"
,
FromData
.
class
).
getValue
();
// 结束时间
String
endTime
=
jsonObj
.
get
(
"__endTime"
,
FromData
.
class
).
getValue
();
// 时长
String
longTime
=
jsonObj
.
get
(
"__longTime"
,
FromData
.
class
).
getValue
();
// 出差事由
String
businessTrip
=
jsonObj
.
get
(
"__businessTrip"
,
FromData
.
class
).
getValue
();
// 上传文件
String
UploadAttachment
=
jsonObj
.
get
(
"UploadAttachment"
,
FromData
.
class
).
getValue
();
// 调 考勤管理 业务
}
}
src/main/java/cn/timer/api/utils/router/business/LeaveBusiness.java
0 → 100644
View file @
7f2be3d9
package
cn
.
timer
.
api
.
utils
.
router
.
business
;
import
cn.hutool.json.JSONObject
;
import
cn.timer.api.dto.spmk.FromData
;
import
lombok.Builder
;
/**
* 请假-业务
*
* @author Tang
*
*/
@Builder
public
class
LeaveBusiness
extends
SpmkAssoBusiness
{
@Override
public
void
handleApprove
(
JSONObject
jsonObj
)
{
// TODO Auto-generated method stub
// 发起人企业id
String
orgCode
=
jsonObj
.
get
(
"orgCode"
,
FromData
.
class
).
getValue
();
// 发起人id
String
id
=
jsonObj
.
get
(
"id"
,
FromData
.
class
).
getValue
();
// 发起人名称
String
initiator
=
jsonObj
.
get
(
"initiator"
,
FromData
.
class
).
getValue
();
// 请假类型
String
LeaveType
=
jsonObj
.
get
(
"__LeaveType"
,
FromData
.
class
).
getValue
();
// 开始时间
String
startTime
=
jsonObj
.
get
(
"__startTime"
,
FromData
.
class
).
getValue
();
// 结束时间
String
endTime
=
jsonObj
.
get
(
"__endTime"
,
FromData
.
class
).
getValue
();
// 时长
String
longTime
=
jsonObj
.
get
(
"__longTime"
,
FromData
.
class
).
getValue
();
// 请假事由
String
ReasonsForLeave
=
jsonObj
.
get
(
"__ReasonsForLeave"
,
FromData
.
class
).
getValue
();
// 上传文件
String
UploadAttachment
=
jsonObj
.
get
(
"UploadAttachment"
,
FromData
.
class
).
getValue
();
// 调 考勤管理 业务
}
}
src/main/java/cn/timer/api/utils/router/business/RecruitBusiness.java
0 → 100644
View file @
7f2be3d9
package
cn
.
timer
.
api
.
utils
.
router
.
business
;
import
cn.hutool.json.JSONObject
;
import
cn.timer.api.dto.spmk.FromData
;
import
lombok.Builder
;
/**
* 招聘-业务
*
* @author Tang
*
*/
@Builder
public
class
RecruitBusiness
extends
SpmkAssoBusiness
{
@Override
public
void
handleApprove
(
JSONObject
jsonObj
)
{
// TODO Auto-generated method stub
// 发起人企业id
String
orgCode
=
jsonObj
.
get
(
"orgCode"
,
FromData
.
class
).
getValue
();
// 发起人id
String
id
=
jsonObj
.
get
(
"id"
,
FromData
.
class
).
getValue
();
// 发起人名称
String
initiator
=
jsonObj
.
get
(
"initiator"
,
FromData
.
class
).
getValue
();
// 招聘部门
String
RecruitmentDept
=
jsonObj
.
get
(
"__RecruitmentDept"
,
FromData
.
class
).
getValue
();
// 招聘职位
String
RecruitmentPost
=
jsonObj
.
get
(
"__RecruitmentPost"
,
FromData
.
class
).
getValue
();
// 工性性质
String
WorkingNature
=
jsonObj
.
get
(
"__WorkingNature"
,
FromData
.
class
).
getValue
();
// 招聘人数
String
NumberOfRecruiters
=
jsonObj
.
get
(
"__NumberOfRecruiters"
,
FromData
.
class
).
getValue
();
// 已在岗人数
String
NumberOfPeople
=
jsonObj
.
get
(
"NumberOfPeople"
,
FromData
.
class
).
getValue
();
// 招聘原因
String
RecruitmentReasons
=
jsonObj
.
get
(
"RecruitmentReasons"
,
FromData
.
class
).
getValue
();
// 该岗位工作职责
String
operatingDuty
=
jsonObj
.
get
(
"operatingDuty"
,
FromData
.
class
).
getValue
();
// 招聘要求
String
RecruitmentRequirements
=
jsonObj
.
get
(
"RecruitmentRequirements"
,
FromData
.
class
).
getValue
();
// 薪酬上限
String
SalaryCap
=
jsonObj
.
get
(
"SalaryCap"
,
FromData
.
class
).
getValue
();
// 薪酬下限
String
TransferInDepartment
=
jsonObj
.
get
(
"TransferInDepartment"
,
FromData
.
class
).
getValue
();
// 生效日期
String
PayFloor
=
jsonObj
.
get
(
"PayFloor"
,
FromData
.
class
).
getValue
();
// 备注
String
Remarks
=
jsonObj
.
get
(
"Remarks"
,
FromData
.
class
).
getValue
();
// 上传文件
String
UploadAttachment
=
jsonObj
.
get
(
"UploadAttachment"
,
FromData
.
class
).
getValue
();
// 调 招聘管理 业务
}
}
src/main/java/cn/timer/api/utils/router/business/RegularizationBusiness.java
0 → 100644
View file @
7f2be3d9
package
cn
.
timer
.
api
.
utils
.
router
.
business
;
import
cn.hutool.json.JSONObject
;
import
cn.timer.api.dto.spmk.FromData
;
import
lombok.Builder
;
/**
* 转正-业务
* @author Tang
*
*/
@Builder
public
class
RegularizationBusiness
extends
SpmkAssoBusiness
{
@Override
public
void
handleApprove
(
JSONObject
jsonObj
)
{
// TODO Auto-generated method stub
// 发起人企业id
String
orgCode
=
jsonObj
.
get
(
"orgCode"
,
FromData
.
class
).
getValue
();
// 发起人id
String
id
=
jsonObj
.
get
(
"id"
,
FromData
.
class
).
getValue
();
// 发起人名称
String
initiator
=
jsonObj
.
get
(
"initiator"
,
FromData
.
class
).
getValue
();
// 申请人名称
String
applicant
=
jsonObj
.
get
(
"__applicant"
,
FromData
.
class
).
getValue
();
// 实际转正时间
String
newConfirmationTime
=
jsonObj
.
get
(
"__newConfirmationTime"
,
FromData
.
class
).
getValue
();
// 备注
String
Remarks
=
jsonObj
.
get
(
"Remarks"
,
FromData
.
class
).
getValue
();
// 试用期内主要工作和成绩
String
WorkAndAchievement
=
jsonObj
.
get
(
"WorkAndAchievement"
,
FromData
.
class
).
getValue
();
// 存在问题及改进意见
String
problem
=
jsonObj
.
get
(
"problem"
,
FromData
.
class
).
getValue
();
// 上传文件
String
file
=
jsonObj
.
get
(
"file"
,
FromData
.
class
).
getValue
();
// 调 员工管理 业务
}
}
src/main/java/cn/timer/api/utils/router/business/ReissueACardBusiness.java
0 → 100644
View file @
7f2be3d9
package
cn
.
timer
.
api
.
utils
.
router
.
business
;
import
cn.hutool.json.JSONObject
;
import
cn.timer.api.dto.spmk.FromData
;
import
lombok.Builder
;
/**
* 补卡-业务
* @author Tang
*
*/
@Builder
public
class
ReissueACardBusiness
extends
SpmkAssoBusiness
{
@Override
public
void
handleApprove
(
JSONObject
jsonObj
)
{
// TODO Auto-generated method stub
// 发起人企业id
String
orgCode
=
jsonObj
.
get
(
"orgCode"
,
FromData
.
class
).
getValue
();
// 发起人id
String
id
=
jsonObj
.
get
(
"id"
,
FromData
.
class
).
getValue
();
// 发起人名称
String
initiator
=
jsonObj
.
get
(
"initiator"
,
FromData
.
class
).
getValue
();
// 补卡时间
String
PatchCardTime
=
jsonObj
.
get
(
"__PatchCardTime"
,
FromData
.
class
).
getValue
();
// 缺卡原因
String
cardShortage
=
jsonObj
.
get
(
"cardShortage"
,
FromData
.
class
).
getValue
();
// 上传文件
String
UploadAttachment
=
jsonObj
.
get
(
"UploadAttachment"
,
FromData
.
class
).
getValue
();
// 调 考勤管理 业务
}
}
src/main/java/cn/timer/api/utils/router/business/ResignationBusiness.java
0 → 100644
View file @
7f2be3d9
package
cn
.
timer
.
api
.
utils
.
router
.
business
;
import
cn.hutool.json.JSONObject
;
import
cn.timer.api.dto.spmk.FromData
;
import
lombok.Builder
;
/**
* 离职-业务
* @author Tang
*
*/
@Builder
public
class
ResignationBusiness
extends
SpmkAssoBusiness
{
@Override
public
void
handleApprove
(
JSONObject
jsonObj
)
{
// TODO Auto-generated method stub
// 发起人企业id
String
orgCode
=
jsonObj
.
get
(
"orgCode"
,
FromData
.
class
).
getValue
();
// 发起人id
String
id
=
jsonObj
.
get
(
"id"
,
FromData
.
class
).
getValue
();
// 发起人名称
String
initiator
=
jsonObj
.
get
(
"initiator"
,
FromData
.
class
).
getValue
();
// 申请人
String
applicant
=
jsonObj
.
get
(
"__applicant"
,
FromData
.
class
).
getValue
();
// 计划离职日期
String
terminationDate
=
jsonObj
.
get
(
"__terminationDate"
,
FromData
.
class
).
getValue
();
// 离职原因
String
ReasonForResignation
=
jsonObj
.
get
(
"__ReasonForResignation"
,
FromData
.
class
).
getValue
();
// 备注
String
Remarks
=
jsonObj
.
get
(
"Remarks"
,
FromData
.
class
).
getValue
();
// 上传文件
String
UploadAttachment
=
jsonObj
.
get
(
"UploadAttachment"
,
FromData
.
class
).
getValue
();
// 调 员工管理 业务
}
}
src/main/java/cn/timer/api/utils/router/business/SpmkAssoBusiness.java
0 → 100644
View file @
7f2be3d9
package
cn
.
timer
.
api
.
utils
.
router
.
business
;
import
cn.hutool.json.JSONObject
;
import
lombok.Data
;
/**
* 审批关联业务
* @author Tang
*
*/
@Data
public
abstract
class
SpmkAssoBusiness
{
public
abstract
void
handleApprove
(
JSONObject
jsonObj
);
}
src/main/java/cn/timer/api/utils/router/business/SpmkAssoBusinessFactory.java
0 → 100644
View file @
7f2be3d9
package
cn
.
timer
.
api
.
utils
.
router
.
business
;
import
cn.timer.api.utils.router.enums.ApproveEnum
;
/**
* 审批关联业务工厂类
* @author Tang
*
*/
public
class
SpmkAssoBusinessFactory
{
public
static
SpmkAssoBusiness
createSpmkAssoType
(
ApproveEnum
assotype
)
{
SpmkAssoBusiness
sat
=
null
;
switch
(
assotype
)
{
case
DEFAULT:
break
;
case
REGULARIZATION:
sat
=
RegularizationBusiness
.
builder
().
build
();
break
;
case
RESIGNATION:
sat
=
ResignationBusiness
.
builder
().
build
();
break
;
case
TRANSFER_POSITION:
sat
=
TransferPositionBusiness
.
builder
().
build
();
break
;
case
RECRUIT:
sat
=
RecruitBusiness
.
builder
().
build
();
break
;
case
WORK_OVERTIME:
sat
=
WorkOvertimeBusiness
.
builder
().
build
();
break
;
case
LEAVE:
sat
=
LeaveBusiness
.
builder
().
build
();
break
;
case
EVECTION:
sat
=
EvectionBusiness
.
builder
().
build
();
break
;
case
REISSUE_A_CARD:
sat
=
ReissueACardBusiness
.
builder
().
build
();
break
;
default
:
break
;
}
return
sat
;
}
}
src/main/java/cn/timer/api/utils/router/business/TransferPositionBusiness.java
0 → 100644
View file @
7f2be3d9
package
cn
.
timer
.
api
.
utils
.
router
.
business
;
import
cn.hutool.json.JSONObject
;
import
cn.timer.api.dto.spmk.FromData
;
import
lombok.Builder
;
/**
* 调岗-业务
* @author Tang
*
*/
@Builder
public
class
TransferPositionBusiness
extends
SpmkAssoBusiness
{
@Override
public
void
handleApprove
(
JSONObject
jsonObj
)
{
// TODO Auto-generated method stub
// 发起人企业id
String
orgCode
=
jsonObj
.
get
(
"orgCode"
,
FromData
.
class
).
getValue
();
// 发起人id
String
id
=
jsonObj
.
get
(
"id"
,
FromData
.
class
).
getValue
();
// 发起人名称
String
initiator
=
jsonObj
.
get
(
"initiator"
,
FromData
.
class
).
getValue
();
// 申请人
String
applicant
=
jsonObj
.
get
(
"__applicant"
,
FromData
.
class
).
getValue
();
// 申请原因
String
ReasonForApplication
=
jsonObj
.
get
(
"__ReasonForApplication"
,
FromData
.
class
).
getValue
();
// 调入部门
String
TransferInDepartment
=
jsonObj
.
get
(
"__TransferInDepartment"
,
FromData
.
class
).
getValue
();
// 调入岗位
String
TransferInPosition
=
jsonObj
.
get
(
"__TransferInPosition"
,
FromData
.
class
).
getValue
();
// 生效日期
String
effectiveDate
=
jsonObj
.
get
(
"__effectiveDate"
,
FromData
.
class
).
getValue
();
// 备注
String
Remarks
=
jsonObj
.
get
(
"Remarks"
,
FromData
.
class
).
getValue
();
// 上传文件
String
UploadAttachment
=
jsonObj
.
get
(
"UploadAttachment"
,
FromData
.
class
).
getValue
();
// 调 员工管理 业务
}
}
src/main/java/cn/timer/api/utils/router/business/WorkOvertimeBusiness.java
0 → 100644
View file @
7f2be3d9
package
cn
.
timer
.
api
.
utils
.
router
.
business
;
import
cn.hutool.json.JSONObject
;
import
cn.timer.api.dto.spmk.FromData
;
import
lombok.Builder
;
/**
* 加班-业务
* @author Tang
*
*/
@Builder
public
class
WorkOvertimeBusiness
extends
SpmkAssoBusiness
{
@Override
public
void
handleApprove
(
JSONObject
jsonObj
)
{
// TODO Auto-generated method stub
// 发起人企业id
String
orgCode
=
jsonObj
.
get
(
"orgCode"
,
FromData
.
class
).
getValue
();
// 发起人id
String
id
=
jsonObj
.
get
(
"id"
,
FromData
.
class
).
getValue
();
// 发起人名称
String
initiator
=
jsonObj
.
get
(
"initiator"
,
FromData
.
class
).
getValue
();
// 开始时间
String
startTime
=
jsonObj
.
get
(
"__startTime"
,
FromData
.
class
).
getValue
();
// 结束时间
String
endTime
=
jsonObj
.
get
(
"__endTime"
,
FromData
.
class
).
getValue
();
// 时长
String
timeLong
=
jsonObj
.
get
(
"__timeLong"
,
FromData
.
class
).
getValue
();
// 加班补偿方式
String
compensate
=
jsonObj
.
get
(
"__compensate"
,
FromData
.
class
).
getValue
();
// 加班原因
String
OvertimeReason
=
jsonObj
.
get
(
"__OvertimeReason"
,
FromData
.
class
).
getValue
();
// 上传文件
String
UploadAttachment
=
jsonObj
.
get
(
"UploadAttachment"
,
FromData
.
class
).
getValue
();
// 调 考勤管理 业务
}
}
src/main/java/cn/timer/api/utils/router/enums/ApproveEnum.java
0 → 100644
View file @
7f2be3d9
package
cn
.
timer
.
api
.
utils
.
router
.
enums
;
public
enum
ApproveEnum
{
DEFAULT
(
0
,
"默认"
,
1
),
REGULARIZATION
(
1
,
"转正"
,
1
),
RESIGNATION
(
2
,
"离职"
,
1
),
TRANSFER_POSITION
(
3
,
"调岗"
,
1
),
RECRUIT
(
4
,
"招聘"
,
1
),
WORK_OVERTIME
(
5
,
"加班"
,
2
),
LEAVE
(
6
,
"请假"
,
2
),
EVECTION
(
7
,
"出差"
,
2
),
REISSUE_A_CARD
(
8
,
"补卡"
,
2
),
WAGE_ADJUSTMENT
(
9
,
"调薪"
,
3
),;
private
Integer
type
;
private
String
desc
;
private
Integer
businessType
;
ApproveEnum
(
Integer
type
,
String
desc
,
Integer
businessType
)
{
this
.
type
=
type
;
this
.
desc
=
desc
;
this
.
businessType
=
businessType
;
}
public
Integer
getType
()
{
return
this
.
type
;
}
public
static
ApproveEnum
getEnums
(
Integer
type
)
{
for
(
ApproveEnum
approveEnum
:
values
())
{
if
(
approveEnum
.
getType
()
==
type
)
{
return
approveEnum
;
}
}
return
null
;
}
public
String
getDesc
()
{
return
this
.
desc
;
}
public
Integer
getBusinessType
()
{
return
this
.
businessType
;
}
}
src/main/resources/mapping/spmk/SpmkApprovalGMapper.xml
View file @
7f2be3d9
...
@@ -60,7 +60,8 @@
...
@@ -60,7 +60,8 @@
b.is_opinion SpmkCustomApproval_is_opinion,
b.is_opinion SpmkCustomApproval_is_opinion,
b.update_time SpmkCustomApproval_update_time,
b.update_time SpmkCustomApproval_update_time,
b.create_time SpmkCustomApproval_create_time,
b.create_time SpmkCustomApproval_create_time,
b.asso_type SpmkCustomApproval_asso_type
<!-- ,
b.asso_type SpmkCustomApproval_asso_type,
b.is_allvisible SpmkCustomApproval_is_allvisible
<!-- ,
b.froms SpmkCustomApproval_froms,
b.froms SpmkCustomApproval_froms,
b.router SpmkCustomApproval_router -->
b.router SpmkCustomApproval_router -->
</sql>
</sql>
...
@@ -71,12 +72,23 @@
...
@@ -71,12 +72,23 @@
<include
refid=
"Base_Column_List_Alias_ca"
/>
<include
refid=
"Base_Column_List_Alias_ca"
/>
FROM spmk_approval_g a
FROM spmk_approval_g a
LEFT JOIN spmk_custom_approval b ON a.id = b.approval_g_id
LEFT JOIN spmk_custom_approval b
ON a.id = b.approval_g_id AND ( b.id IN (
SELECT custom_approval_id FROM spmk_initiator_config WHERE asso_id = #{emp_num} AND type = 1 GROUP BY custom_approval_id
<if
test=
"deptIds != null and deptIds.size() > 0"
>
UNION
SELECT custom_approval_id FROM spmk_initiator_config WHERE
asso_id IN
(
<foreach
item=
"it"
index=
"index"
collection=
"deptIds"
separator=
","
close=
""
>
#{it}
</foreach>
) AND type IN (2,3) GROUP BY custom_approval_id
</if>
) OR b.is_allvisible = 1)
WHERE a.org_code = #{org_code}
WHERE a.org_code = #{org_code}
<!-- AND b.id IN (
SELECT custom_approval_id FROM spmk_initiator_config WHERE asso_id = #{emp_num} AND type = 1 GROUP BY custom_approval_id
) -->
ORDER BY a.ranks, b.ranks
ORDER BY a.ranks, b.ranks
</select>
</select>
...
...
src/main/resources/mapping/spmk/SpmkCustomApprovalMapper.xml
View file @
7f2be3d9
...
@@ -16,6 +16,7 @@
...
@@ -16,6 +16,7 @@
<result
column=
"update_time"
property=
"updateTime"
/>
<result
column=
"update_time"
property=
"updateTime"
/>
<result
column=
"create_time"
property=
"createTime"
/>
<result
column=
"create_time"
property=
"createTime"
/>
<result
column=
"asso_type"
property=
"assoType"
/>
<result
column=
"asso_type"
property=
"assoType"
/>
<result
column=
"is_allvisible"
property=
"isAllvisible"
/>
<result
column=
"froms"
property=
"froms"
/>
<result
column=
"froms"
property=
"froms"
/>
<result
column=
"router"
property=
"router"
/>
<result
column=
"router"
property=
"router"
/>
</resultMap>
</resultMap>
...
@@ -33,6 +34,7 @@
...
@@ -33,6 +34,7 @@
update_time,
update_time,
create_time,
create_time,
asso_type,
asso_type,
is_allvisible,
froms,
froms,
router
router
</sql>
</sql>
...
@@ -50,6 +52,7 @@
...
@@ -50,6 +52,7 @@
update_time SpmkCustomApproval_update_time,
update_time SpmkCustomApproval_update_time,
create_time SpmkCustomApproval_create_time,
create_time SpmkCustomApproval_create_time,
asso_type SpmkCustomApproval_asso_type,
asso_type SpmkCustomApproval_asso_type,
is_allvisible SpmkCustomApproval_is_allvisible,
froms SpmkCustomApproval_froms,
froms SpmkCustomApproval_froms,
router SpmkCustomApproval_router
router SpmkCustomApproval_router
</sql>
</sql>
...
@@ -102,6 +105,9 @@
...
@@ -102,6 +105,9 @@
<if test ='null != assoType'>
<if test ='null != assoType'>
asso_type,
asso_type,
</if>
</if>
<if test ='null != isAllvisible'>
is_allvisible,
</if>
<if test ='null != froms'>
<if test ='null != froms'>
froms,
froms,
</if>
</if>
...
@@ -143,6 +149,9 @@
...
@@ -143,6 +149,9 @@
<if test ='null != assoType'>
<if test ='null != assoType'>
#{assoType},
#{assoType},
</if>
</if>
<if test ='null != isAllvisible'>
#{isAllvisible},
</if>
<if test ='null != froms'>
<if test ='null != froms'>
#{froms},
#{froms},
</if>
</if>
...
@@ -171,6 +180,7 @@
...
@@ -171,6 +180,7 @@
<if test ='null != updateTime'>update_time = #{updateTime},</if>
<if test ='null != updateTime'>update_time = #{updateTime},</if>
<if test ='null != createTime'>create_time = #{createTime},</if>
<if test ='null != createTime'>create_time = #{createTime},</if>
<if test ='null != assoType'>asso_type = #{assoType},</if>
<if test ='null != assoType'>asso_type = #{assoType},</if>
<if test ='null != isAllvisible'>is_allvisible = #{isAllvisible},</if>
<if test ='null != froms'>froms = #{froms},</if>
<if test ='null != froms'>froms = #{froms},</if>
<if test ='null != router'>router = #{router}</if>
<if test ='null != router'>router = #{router}</if>
</set>
</set>
...
...
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