Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
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
fangxinjiang
yifu-mvp
Commits
2ccf7328
Commit
2ccf7328
authored
Apr 24, 2025
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
社保公积金批量办理增加派单类型选项必填-fxj
parent
352a96cd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
2 deletions
+20
-2
FundImportHandleVo.java
...yifu/cloud/plus/v1/yifu/social/vo/FundImportHandleVo.java
+8
-0
SocialImportHandleVo.java
...fu/cloud/plus/v1/yifu/social/vo/SocialImportHandleVo.java
+8
-0
TDispatchInfoServiceImpl.java
...v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
+4
-2
No files found.
yifu-social/yifu-social-api/src/main/java/com/yifu/cloud/plus/v1/yifu/social/vo/FundImportHandleVo.java
View file @
2ccf7328
...
...
@@ -70,4 +70,12 @@ public class FundImportHandleVo extends RowIndex implements Serializable {
@ExcelProperty
(
"失败类型"
)
private
String
reasonType
;
/**
* 派单类型 0 派增 1 派减
*/
@ExcelAttribute
(
name
=
"派单类型"
,
isNotEmpty
=
true
)
@Schema
(
description
=
"派单类型 0 派增 1 派减"
)
@ExcelProperty
(
"派单类型"
)
private
String
type
;
}
yifu-social/yifu-social-api/src/main/java/com/yifu/cloud/plus/v1/yifu/social/vo/SocialImportHandleVo.java
View file @
2ccf7328
...
...
@@ -114,4 +114,12 @@ public class SocialImportHandleVo extends RowIndex implements Serializable {
@ExcelProperty
(
"失败类型"
)
private
String
reasonType
;
/**
* 派单类型 0 派增 1 派减
*/
@ExcelAttribute
(
name
=
"派单类型"
,
isNotEmpty
=
true
)
@Schema
(
description
=
"派单类型 0 派增 1 派减"
)
@ExcelProperty
(
"派单类型"
)
private
String
type
;
}
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
View file @
2ccf7328
...
...
@@ -6202,7 +6202,8 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
handleStatus
=
CommonConstants
.
TWO_STRING
;
}
dispatch
=
dispatchMap
.
get
(
excel
.
getEmpIdcard
());
if
(
Common
.
isEmpty
(
dispatch
))
{
//批量办理增加派单类型 fxj 2025-04-24 V1.7.10
if
(
Common
.
isEmpty
(
dispatch
)
||
excel
.
getType
().
equals
(
dispatch
.
getType
()))
{
errorMessageList
.
add
(
new
ErrorMessage
(
excel
.
getRowIndex
(),
MsgUtils
.
getMessage
(
ErrorCodes
.
FUND_IMPORT_HANDLE_NOT_EXITS
),
excel
));
continue
;
}
...
...
@@ -6368,7 +6369,8 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
}
dispatch
=
dispatchMap
.
get
(
excel
.
getEmpIdcard
());
if
(
Common
.
isEmpty
(
dispatch
))
{
//批量办理增加派单类型 fxj 2025-04-24 V1.7.10
if
(
Common
.
isEmpty
(
dispatch
)
||
excel
.
getType
().
equals
(
dispatch
.
getType
()))
{
errorMessageList
.
add
(
new
ErrorMessage
(
excel
.
getRowIndex
(),
MsgUtils
.
getMessage
(
ErrorCodes
.
SOCIAL_IMPORT_HANDLE_NOT_EXITS
),
excel
));
continue
;
}
...
...
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