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
e3b13b9c
Commit
e3b13b9c
authored
Apr 25, 2025
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
社保及公积金批量办理导入添加派单类型必填-fxj
parent
968d1106
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
FundImportHandleVo.java
...yifu/cloud/plus/v1/yifu/social/vo/FundImportHandleVo.java
+1
-1
SocialImportHandleVo.java
...fu/cloud/plus/v1/yifu/social/vo/SocialImportHandleVo.java
+1
-1
TDispatchInfoServiceImpl.java
...v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
+2
-2
No files found.
yifu-social/yifu-social-api/src/main/java/com/yifu/cloud/plus/v1/yifu/social/vo/FundImportHandleVo.java
View file @
e3b13b9c
...
...
@@ -73,7 +73,7 @@ public class FundImportHandleVo extends RowIndex implements Serializable {
/**
* 派单类型 0 派增 1 派减
*/
@ExcelAttribute
(
name
=
"派单类型"
,
isNotEmpty
=
true
)
@ExcelAttribute
(
name
=
"派单类型"
,
isNotEmpty
=
true
,
isDataId
=
true
,
readConverterExp
=
"0=派增,1=派减"
,
errorInfo
=
"派单类型不可为空"
)
@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 @
e3b13b9c
...
...
@@ -117,7 +117,7 @@ public class SocialImportHandleVo extends RowIndex implements Serializable {
/**
* 派单类型 0 派增 1 派减
*/
@ExcelAttribute
(
name
=
"派单类型"
,
isNotEmpty
=
true
)
@ExcelAttribute
(
name
=
"派单类型"
,
isNotEmpty
=
true
,
isDataId
=
true
,
readConverterExp
=
"0=派增,1=派减"
,
errorInfo
=
"派单类型不可为空"
)
@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 @
e3b13b9c
...
...
@@ -6203,7 +6203,7 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
}
dispatch
=
dispatchMap
.
get
(
excel
.
getEmpIdcard
());
//批量办理增加派单类型 fxj 2025-04-24 V1.7.10
if
(
Common
.
isEmpty
(
dispatch
)
||
excel
.
getType
().
equals
(
dispatch
.
getType
()))
{
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
;
}
...
...
@@ -6370,7 +6370,7 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
dispatch
=
dispatchMap
.
get
(
excel
.
getEmpIdcard
());
//批量办理增加派单类型 fxj 2025-04-24 V1.7.10
if
(
Common
.
isEmpty
(
dispatch
)
||
excel
.
getType
().
equals
(
dispatch
.
getType
()))
{
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