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
5da06006
Commit
5da06006
authored
Aug 05, 2025
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.7.14-薪资人员导入校验优化
parent
214c3da1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
156 additions
and
22 deletions
+156
-22
TSalaryEmployeeServiceImpl.java
.../yifu/salary/service/impl/TSalaryEmployeeServiceImpl.java
+148
-22
SalaryAccountUtil.java
...ifu/cloud/plus/v1/yifu/salary/util/SalaryAccountUtil.java
+8
-0
No files found.
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/impl/TSalaryEmployeeServiceImpl.java
View file @
5da06006
...
@@ -320,6 +320,11 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
...
@@ -320,6 +320,11 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
List
<
TCheckBankNo
>
bankList
=
new
ArrayList
<>();
List
<
TCheckBankNo
>
bankList
=
new
ArrayList
<>();
List
<
String
>
phoneList
=
new
ArrayList
<>();
List
<
String
>
phoneList
=
new
ArrayList
<>();
TCheckBankNo
checkBankNo
;
TCheckBankNo
checkBankNo
;
// 查本表重
Map
<
String
,
Integer
>
phoneExcelMap
=
new
HashMap
<>();
// 本表重复的手机号,不允许导入该行
Map
<
String
,
Integer
>
phoneRepeatMap
=
new
HashMap
<>();
Integer
phoneCount
;
for
(
TSalaryEmployee
employee
:
saveNewEmpList
)
{
for
(
TSalaryEmployee
employee
:
saveNewEmpList
)
{
// cyx-mvp1.7.0:调整 代发户的新员工也校验银行卡号
// cyx-mvp1.7.0:调整 代发户的新员工也校验银行卡号
if
(
Common
.
isNotNull
(
employee
.
getBankNo
())
if
(
Common
.
isNotNull
(
employee
.
getBankNo
())
...
@@ -332,14 +337,19 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
...
@@ -332,14 +337,19 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
checkBankNo
.
setBankNo
(
employee
.
getBankNo
());
checkBankNo
.
setBankNo
(
employee
.
getBankNo
());
bankList
.
add
(
checkBankNo
);
bankList
.
add
(
checkBankNo
);
}
}
// 将重复的手机号组装到map里,下面去拦截
if
(
Common
.
isNotNull
(
employee
.
getEmpPhone
()))
{
if
(
Common
.
isNotNull
(
employee
.
getEmpPhone
()))
{
phoneList
.
add
(
employee
.
getEmpPhone
());
phoneCount
=
phoneExcelMap
.
get
(
employee
.
getEmpPhone
());
if
(
phoneCount
==
null
)
{
phoneExcelMap
.
put
(
employee
.
getEmpPhone
(),
CommonConstants
.
ONE_INT
);
phoneList
.
add
(
employee
.
getEmpPhone
());
}
else
{
phoneRepeatMap
.
put
(
employee
.
getEmpPhone
(),
CommonConstants
.
ONE_INT
);
}
}
}
}
}
// 批量校验 卡号与手机号
// 批量校验 卡号与手机号
Map
<
String
,
Boolean
>
bankMap
=
new
HashMap
<>();
Map
<
String
,
Boolean
>
bankMap
=
new
HashMap
<>();
Map
<
String
,
Boolean
>
phoneMap
=
new
HashMap
<>();
if
(!
bankList
.
isEmpty
())
{
if
(!
bankList
.
isEmpty
())
{
R
<
CheckBatchVo
>
checkListR
=
HttpDaprUtil
.
invokeMethodPost
(
checkProperties
.
getAppUrl
(),
checkProperties
.
getAppId
()
R
<
CheckBatchVo
>
checkListR
=
HttpDaprUtil
.
invokeMethodPost
(
checkProperties
.
getAppUrl
(),
checkProperties
.
getAppId
()
,
"/tcheckbankno/inner/checkBankNoBatch"
,
bankList
,
CheckBatchVo
.
class
,
SecurityConstants
.
FROM_IN
);
,
"/tcheckbankno/inner/checkBankNoBatch"
,
bankList
,
CheckBatchVo
.
class
,
SecurityConstants
.
FROM_IN
);
...
@@ -347,15 +357,29 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
...
@@ -347,15 +357,29 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
bankMap
=
checkListR
.
getData
().
getCheckMap
();
bankMap
=
checkListR
.
getData
().
getCheckMap
();
}
}
}
}
Map
<
String
,
Boolean
>
phoneMap
=
new
HashMap
<>();
// 系统已有人员手机号Map
Map
<
String
,
List
<
String
>>
empPhoneMap
=
new
HashMap
<>();
List
<
String
>
phoneIdCardList
;
if
(!
phoneList
.
isEmpty
())
{
if
(!
phoneList
.
isEmpty
())
{
R
<
CheckBatchVo
>
phoneR
=
HttpDaprUtil
.
invokeMethodPost
(
checkProperties
.
getAppUrl
(),
checkProperties
.
getAppId
()
R
<
CheckBatchVo
>
phoneR
=
HttpDaprUtil
.
invokeMethodPost
(
checkProperties
.
getAppUrl
(),
checkProperties
.
getAppId
()
,
"/tcheckmobile/inner/checkMobileBatch"
,
phoneList
,
CheckBatchVo
.
class
,
SecurityConstants
.
FROM_IN
);
,
"/tcheckmobile/inner/checkMobileBatch"
,
phoneList
,
CheckBatchVo
.
class
,
SecurityConstants
.
FROM_IN
);
if
(
phoneR
!=
null
&&
phoneR
.
getData
()
!=
null
)
{
if
(
phoneR
!=
null
&&
phoneR
.
getData
()
!=
null
)
{
phoneMap
=
phoneR
.
getData
().
getCheckMap
();
phoneMap
=
phoneR
.
getData
().
getCheckMap
();
}
}
List
<
TSalaryEmployee
>
empPhoneList
=
baseMapper
.
getListByPhone
(
phoneList
);
for
(
TSalaryEmployee
e
:
empPhoneList
)
{
phoneIdCardList
=
empPhoneMap
.
get
(
e
.
getEmpPhone
());
if
(
phoneIdCardList
==
null
)
{
phoneIdCardList
=
new
ArrayList
<>();
}
phoneIdCardList
.
add
(
e
.
getEmpIdcard
());
empPhoneMap
.
put
(
e
.
getEmpPhone
(),
phoneIdCardList
);
}
}
}
boolean
isFalse
=
false
;
boolean
isFalse
=
false
;
boolean
phoneFlag
;
for
(
TSalaryEmployee
employee
:
saveNewEmpList
)
{
for
(
TSalaryEmployee
employee
:
saveNewEmpList
)
{
// cyx-mvp1.7.0:调整 代发户的新员工也校验银行卡号
// cyx-mvp1.7.0:调整 代发户的新员工也校验银行卡号
if
(
Common
.
isNotNull
(
employee
.
getBankNo
())
if
(
Common
.
isNotNull
(
employee
.
getBankNo
())
...
@@ -374,14 +398,41 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
...
@@ -374,14 +398,41 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
isFalse
=
true
;
isFalse
=
true
;
}
}
}
}
if
(
phoneMap
.
get
(
employee
.
getEmpPhone
())
!=
null
)
{
if
(
Boolean
.
FALSE
.
equals
(
phoneMap
.
get
(
employee
.
getEmpPhone
())))
{
if
(
Common
.
isNotNull
(
employee
.
getEmpPhone
()))
{
errorList
.
add
(
new
ErrorMessage
((
employee
.
getLineNums
()
),
"第"
+
(
employee
.
getLineNums
()
)
+
"行:该员工新建失败:【手机号验证:手机号错误】"
));
// 手机号本表重复,该条直接不给导入
if
(
phoneRepeatMap
.
get
(
employee
.
getEmpPhone
())
!=
null
)
{
errorList
.
add
(
new
ErrorMessage
((
employee
.
getLineNums
()),
"第"
+
(
employee
.
getLineNums
())
+
"行:该员工新建失败:【该手机号在本次导入表中有重复,请检查并修改后重新导入】"
));
isFalse
=
true
;
continue
;
}
// 手机号与系统里重复
phoneIdCardList
=
empPhoneMap
.
get
(
employee
.
getEmpPhone
());
if
(
phoneIdCardList
!=
null
)
{
phoneFlag
=
false
;
for
(
String
phoneIdCard
:
phoneIdCardList
)
{
if
(!
phoneIdCard
.
equals
(
employee
.
getEmpIdcard
()))
{
phoneFlag
=
true
;
break
;
}
}
if
(
phoneFlag
)
{
errorList
.
add
(
new
ErrorMessage
((
employee
.
getLineNums
()),
"第"
+
(
employee
.
getLineNums
())
+
"行:该员工新建失败:【手机号已被占用,请更改手机号后重试】"
));
isFalse
=
true
;
continue
;
}
}
// 手机号校验
if
(
phoneMap
.
get
(
employee
.
getEmpPhone
())
!=
null
)
{
if
(
Boolean
.
FALSE
.
equals
(
phoneMap
.
get
(
employee
.
getEmpPhone
())))
{
errorList
.
add
(
new
ErrorMessage
((
employee
.
getLineNums
()),
"第"
+
(
employee
.
getLineNums
())
+
"行:该员工新建失败:【手机号校验不通过,请更改手机号后重试!】"
));
isFalse
=
true
;
}
}
else
{
errorList
.
add
(
new
ErrorMessage
((
employee
.
getLineNums
()),
"第"
+
(
employee
.
getLineNums
())
+
"行:该员工新建失败:【手机号验证:"
+
SalaryConstants
.
CHECK_NO_RESPONSE
+
"】"
));
isFalse
=
true
;
isFalse
=
true
;
}
}
}
else
{
errorList
.
add
(
new
ErrorMessage
((
employee
.
getLineNums
()
),
"第"
+
(
employee
.
getLineNums
()
)
+
"行:该员工新建失败:【手机号验证:"
+
SalaryConstants
.
CHECK_NO_RESPONSE
+
"】"
));
isFalse
=
true
;
}
}
}
}
if
(
isFalse
)
{
if
(
isFalse
)
{
...
@@ -400,6 +451,14 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
...
@@ -400,6 +451,14 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
// 银行卡
// 银行卡
List
<
TCheckBankNo
>
bankList
=
new
ArrayList
<>();
List
<
TCheckBankNo
>
bankList
=
new
ArrayList
<>();
TCheckBankNo
checkBankNo
;
TCheckBankNo
checkBankNo
;
List
<
String
>
phoneList
=
new
ArrayList
<>();
// 查本表重
Map
<
String
,
Integer
>
phoneExcelMap
=
new
HashMap
<>();
// 本表重复的手机号,不允许导入该行
Map
<
String
,
Integer
>
phoneRepeatMap
=
new
HashMap
<>();
Integer
phoneCount
;
for
(
TSalaryEmployee
employee
:
updateEmployeeBankList
)
{
for
(
TSalaryEmployee
employee
:
updateEmployeeBankList
)
{
// cyx-mvp1.7.0:调整 代发户的新员工也校验银行卡号
// cyx-mvp1.7.0:调整 代发户的新员工也校验银行卡号
if
(
Common
.
isNotNull
(
employee
.
getBankNo
())
if
(
Common
.
isNotNull
(
employee
.
getBankNo
())
...
@@ -410,6 +469,36 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
...
@@ -410,6 +469,36 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
checkBankNo
.
setBankNo
(
employee
.
getBankNo
());
checkBankNo
.
setBankNo
(
employee
.
getBankNo
());
bankList
.
add
(
checkBankNo
);
bankList
.
add
(
checkBankNo
);
}
}
// 将重复的手机号组装到map里,下面去拦截
if
(
Common
.
isNotNull
(
employee
.
getEmpPhone
()))
{
phoneCount
=
phoneExcelMap
.
get
(
employee
.
getEmpPhone
());
if
(
phoneCount
==
null
)
{
phoneExcelMap
.
put
(
employee
.
getEmpPhone
(),
CommonConstants
.
ONE_INT
);
phoneList
.
add
(
employee
.
getEmpPhone
());
}
else
{
phoneRepeatMap
.
put
(
employee
.
getEmpPhone
(),
CommonConstants
.
ONE_INT
);
}
}
}
Map
<
String
,
Boolean
>
phoneMap
=
new
HashMap
<>();
// 系统已有人员手机号Map
Map
<
String
,
List
<
String
>>
empPhoneMap
=
new
HashMap
<>();
List
<
String
>
phoneIdCardList
;
if
(!
phoneList
.
isEmpty
())
{
R
<
CheckBatchVo
>
phoneR
=
HttpDaprUtil
.
invokeMethodPost
(
checkProperties
.
getAppUrl
(),
checkProperties
.
getAppId
()
,
"/tcheckmobile/inner/checkMobileBatch"
,
phoneList
,
CheckBatchVo
.
class
,
SecurityConstants
.
FROM_IN
);
if
(
phoneR
!=
null
&&
phoneR
.
getData
()
!=
null
)
{
phoneMap
=
phoneR
.
getData
().
getCheckMap
();
}
List
<
TSalaryEmployee
>
empPhoneList
=
baseMapper
.
getListByPhone
(
phoneList
);
for
(
TSalaryEmployee
e
:
empPhoneList
)
{
phoneIdCardList
=
empPhoneMap
.
get
(
e
.
getEmpPhone
());
if
(
phoneIdCardList
==
null
)
{
phoneIdCardList
=
new
ArrayList
<>();
}
phoneIdCardList
.
add
(
e
.
getEmpIdcard
());
empPhoneMap
.
put
(
e
.
getEmpPhone
(),
phoneIdCardList
);
}
}
}
// 批量校验 卡号与手机号
// 批量校验 卡号与手机号
Map
<
String
,
Boolean
>
bankMap
=
new
HashMap
<>();
Map
<
String
,
Boolean
>
bankMap
=
new
HashMap
<>();
...
@@ -421,6 +510,7 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
...
@@ -421,6 +510,7 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
}
}
}
}
boolean
isFalse
=
false
;
boolean
isFalse
=
false
;
boolean
phoneFlag
;
String
areaProvince
;
String
areaProvince
;
String
areaCity
;
String
areaCity
;
TSalaryEmployee
oldEmp
;
TSalaryEmployee
oldEmp
;
...
@@ -498,6 +588,42 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
...
@@ -498,6 +588,42 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
// }
// }
// }
// }
}
}
if
(
Common
.
isNotNull
(
employee
.
getEmpPhone
()))
{
// 手机号本表重复,该条直接不给导入
if
(
phoneRepeatMap
.
get
(
employee
.
getEmpPhone
())
!=
null
)
{
errorList
.
add
(
new
ErrorMessage
((
employee
.
getLineNums
()),
"第"
+
(
employee
.
getLineNums
())
+
"行:该员工更新失败:【该手机号在本次导入表中有重复,请检查并修改后重新导入】"
));
isFalse
=
true
;
continue
;
}
// 手机号与系统里重复
phoneIdCardList
=
empPhoneMap
.
get
(
employee
.
getEmpPhone
());
if
(
phoneIdCardList
!=
null
)
{
phoneFlag
=
false
;
for
(
String
phoneIdCard
:
phoneIdCardList
)
{
if
(!
phoneIdCard
.
equals
(
employee
.
getEmpIdcard
()))
{
phoneFlag
=
true
;
break
;
}
}
if
(
phoneFlag
)
{
errorList
.
add
(
new
ErrorMessage
((
employee
.
getLineNums
()),
"第"
+
(
employee
.
getLineNums
())
+
"行:该员工更新失败:【手机号已被占用,请更改手机号后重试】"
));
isFalse
=
true
;
continue
;
}
}
// 手机号校验
if
(
phoneMap
.
get
(
employee
.
getEmpPhone
())
!=
null
)
{
if
(
Boolean
.
FALSE
.
equals
(
phoneMap
.
get
(
employee
.
getEmpPhone
())))
{
errorList
.
add
(
new
ErrorMessage
((
employee
.
getLineNums
()),
"第"
+
(
employee
.
getLineNums
())
+
"行:该员工更新失败:【手机号校验不通过,请更改手机号后重试!】"
));
isFalse
=
true
;
}
}
else
{
errorList
.
add
(
new
ErrorMessage
((
employee
.
getLineNums
()),
"第"
+
(
employee
.
getLineNums
())
+
"行:该员工更新失败:【手机号验证:"
+
SalaryConstants
.
CHECK_NO_RESPONSE
+
"】"
));
isFalse
=
true
;
}
}
}
}
if
(
isFalse
)
{
if
(
isFalse
)
{
return
null
;
return
null
;
...
@@ -750,18 +876,7 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
...
@@ -750,18 +876,7 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
empMap
.
put
(
e
.
getEmpIdcard
(),
e
);
empMap
.
put
(
e
.
getEmpIdcard
(),
e
);
}
}
List
<
TSalaryEmployee
>
empPhoneList
=
baseMapper
.
getListByPhone
(
phoneList
);
// 人员手机号Map
Map
<
String
,
List
<
String
>>
empPhoneMap
=
new
HashMap
<>();
List
<
String
>
phoneIdCardList
;
for
(
TSalaryEmployee
e
:
empPhoneList
)
{
phoneIdCardList
=
empPhoneMap
.
get
(
e
.
getEmpPhone
());
if
(
phoneIdCardList
==
null
)
{
phoneIdCardList
=
new
ArrayList
<>();
}
phoneIdCardList
.
add
(
e
.
getEmpIdcard
());
empPhoneMap
.
put
(
e
.
getEmpPhone
(),
phoneIdCardList
);
}
TSalaryEmployee
emp
;
TSalaryEmployee
emp
;
// 开户行省市的区域暂存
// 开户行省市的区域暂存
...
@@ -781,7 +896,9 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
...
@@ -781,7 +896,9 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
bankCheckMap
=
checkListR
.
getData
().
getCheckMap
();
bankCheckMap
=
checkListR
.
getData
().
getCheckMap
();
}
}
}
}
// 系统已有人员手机号Map
Map
<
String
,
List
<
String
>>
empPhoneMap
=
new
HashMap
<>();
List
<
String
>
phoneIdCardList
;
Map
<
String
,
Boolean
>
phoneCheckMap
=
new
HashMap
<>();
Map
<
String
,
Boolean
>
phoneCheckMap
=
new
HashMap
<>();
if
(!
phoneList
.
isEmpty
())
{
if
(!
phoneList
.
isEmpty
())
{
R
<
CheckBatchVo
>
phoneR
=
HttpDaprUtil
.
invokeMethodPost
(
checkProperties
.
getAppUrl
(),
checkProperties
.
getAppId
()
R
<
CheckBatchVo
>
phoneR
=
HttpDaprUtil
.
invokeMethodPost
(
checkProperties
.
getAppUrl
(),
checkProperties
.
getAppId
()
...
@@ -789,6 +906,15 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
...
@@ -789,6 +906,15 @@ public class TSalaryEmployeeServiceImpl extends ServiceImpl<TSalaryEmployeeMappe
if
(
phoneR
!=
null
&&
phoneR
.
getData
()
!=
null
)
{
if
(
phoneR
!=
null
&&
phoneR
.
getData
()
!=
null
)
{
phoneCheckMap
=
phoneR
.
getData
().
getCheckMap
();
phoneCheckMap
=
phoneR
.
getData
().
getCheckMap
();
}
}
List
<
TSalaryEmployee
>
empPhoneList
=
baseMapper
.
getListByPhone
(
phoneList
);
for
(
TSalaryEmployee
e
:
empPhoneList
)
{
phoneIdCardList
=
empPhoneMap
.
get
(
e
.
getEmpPhone
());
if
(
phoneIdCardList
==
null
)
{
phoneIdCardList
=
new
ArrayList
<>();
}
phoneIdCardList
.
add
(
e
.
getEmpIdcard
());
empPhoneMap
.
put
(
e
.
getEmpPhone
(),
phoneIdCardList
);
}
}
}
for
(
int
i
=
0
;
i
<
excelVOList
.
size
();
i
++)
{
for
(
int
i
=
0
;
i
<
excelVOList
.
size
();
i
++)
{
excel
=
excelVOList
.
get
(
i
);
excel
=
excelVOList
.
get
(
i
);
...
...
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/util/SalaryAccountUtil.java
View file @
5da06006
...
@@ -830,6 +830,10 @@ public class SalaryAccountUtil implements Serializable {
...
@@ -830,6 +830,10 @@ public class SalaryAccountUtil implements Serializable {
String
areaInt
=
ExcelUtil
.
getRedisAreaValue
(
CacheConstants
.
AREA_VALUE
+
emp
.
getBankProvince
().
trim
());
String
areaInt
=
ExcelUtil
.
getRedisAreaValue
(
CacheConstants
.
AREA_VALUE
+
emp
.
getBankProvince
().
trim
());
if
(
Common
.
isNotNull
(
areaInt
))
{
if
(
Common
.
isNotNull
(
areaInt
))
{
entity
.
setBankProvince
(
areaInt
);
entity
.
setBankProvince
(
areaInt
);
}
else
{
error
=
"第"
+
i
+
SalaryConstants
.
LINE_EMP
+
emp
.
getEmpIdcard
()
+
"-开户行省错误,请在工资模板正确填写!"
;
errorList
.
add
(
new
ErrorMessage
(
i
,
error
));
return
true
;
}
}
String
areaCityInt
=
null
;
String
areaCityInt
=
null
;
if
(
Common
.
isNotNull
(
emp
.
getBankCity
()))
{
if
(
Common
.
isNotNull
(
emp
.
getBankCity
()))
{
...
@@ -837,6 +841,10 @@ public class SalaryAccountUtil implements Serializable {
...
@@ -837,6 +841,10 @@ public class SalaryAccountUtil implements Serializable {
+
CommonConstants
.
DOWN_LINE_STRING
+
emp
.
getBankProvince
().
trim
());
+
CommonConstants
.
DOWN_LINE_STRING
+
emp
.
getBankProvince
().
trim
());
if
(
Common
.
isNotNull
(
areaCityInt
))
{
if
(
Common
.
isNotNull
(
areaCityInt
))
{
entity
.
setBankCity
(
areaCityInt
);
entity
.
setBankCity
(
areaCityInt
);
}
else
{
error
=
"第"
+
i
+
SalaryConstants
.
LINE_EMP
+
emp
.
getEmpIdcard
()
+
"-开户行市错误或开户行市不在开户行省内,请在工资模板正确填写!"
;
errorList
.
add
(
new
ErrorMessage
(
i
,
error
));
return
true
;
}
}
}
}
}
}
...
...
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