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
3e88cbd3
Commit
3e88cbd3
authored
Apr 04, 2023
by
huyuchen
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/MVP1.5.3' into MVP1.5.3
parents
024e1c3b
6817ea63
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
11 deletions
+14
-11
TEmpContractAlertServiceImpl.java
...u/archives/service/impl/TEmpContractAlertServiceImpl.java
+4
-1
TSalaryStandardIssueRes.java
...d/plus/v1/yifu/salary/entity/TSalaryStandardIssueRes.java
+2
-3
TSalaryAccountController.java
...s/v1/yifu/salary/controller/TSalaryAccountController.java
+3
-3
SalaryUploadServiceImpl.java
.../v1/yifu/salary/service/impl/SalaryUploadServiceImpl.java
+0
-3
TSalaryStandardServiceImpl.java
.../yifu/salary/service/impl/TSalaryStandardServiceImpl.java
+5
-1
No files found.
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TEmpContractAlertServiceImpl.java
View file @
3e88cbd3
...
...
@@ -237,9 +237,12 @@ public class TEmpContractAlertServiceImpl extends ServiceImpl<TEmpContractAlertM
if
(
Common
.
isNotNull
(
entity
.
getDaysDue
())){
wrapper
.
eq
(
TEmpContractAlert:
:
getDaysDue
,
entity
.
getDaysDue
());
}
if
(
Common
.
isNotNull
(
entity
.
getUnitId
())){
if
(
Common
.
isNotNull
(
entity
.
getUnitId
()))
{
wrapper
.
eq
(
TEmpContractAlert:
:
getUnitId
,
entity
.
getUnitId
());
}
if
(
Common
.
isNotNull
(
entity
.
getEmpPhone
()))
{
wrapper
.
eq
(
TEmpContractAlert:
:
getEmpPhone
,
entity
.
getEmpPhone
());
}
return
wrapper
;
}
/**
...
...
yifu-salary/yifu-salary-api/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/entity/TSalaryStandardIssueRes.java
View file @
3e88cbd3
...
...
@@ -67,10 +67,9 @@ public class TSalaryStandardIssueRes implements Serializable {
@Schema
(
description
=
"薪资主表id"
)
private
String
salaryId
;
/**
* money
* money
2023-4-4 11:11:56 hgw 去掉了金额限制,mvp1.5.3版本
*/
@ExcelAttribute
(
name
=
"money"
,
isNotEmpty
=
true
,
errorInfo
=
"money不能为空"
)
@NotBlank
(
message
=
"money不能为空"
)
@ExcelAttribute
(
name
=
"money"
)
@ExcelProperty
(
"money"
)
@Schema
(
description
=
"money"
)
private
BigDecimal
money
;
...
...
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/controller/TSalaryAccountController.java
View file @
3e88cbd3
...
...
@@ -405,11 +405,11 @@ public class TSalaryAccountController {
@Operation
(
description
=
"报账跨年查询导出 hasPermission('account_all_year_export')"
)
@PostMapping
(
"/allYearExport"
)
@PreAuthorize
(
"@pms.hasPermission('account_all_year_export')"
)
public
List
<
TSalaryAccount
>
allYearExport
(
@RequestBody
TSalaryAccountSearchVo
tSalaryAccount
)
{
public
R
<
List
<
TSalaryAccount
>
>
allYearExport
(
@RequestBody
TSalaryAccountSearchVo
tSalaryAccount
)
{
if
(
Common
.
isEmpty
(
tSalaryAccount
.
getEmpIdcard
()))
{
return
null
;
return
R
.
failed
(
"身份证不可为空!"
)
;
}
return
tSalaryAccountService
.
allYearExport
(
tSalaryAccount
);
return
R
.
ok
(
tSalaryAccountService
.
allYearExport
(
tSalaryAccount
)
);
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/impl/SalaryUploadServiceImpl.java
View file @
3e88cbd3
...
...
@@ -199,9 +199,6 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
if
(
Common
.
isEmpty
(
res
.
getIssueId
()))
{
return
R
.
failed
(
"代发户配置id不可为空"
);
}
if
(
Common
.
isEmpty
(
res
.
getMoney
()))
{
return
R
.
failed
(
"代发户金额不可为空"
);
}
if
(
Common
.
isEmpty
(
res
.
getBankName
()))
{
return
R
.
failed
(
"代发户开户行不可为空"
);
}
...
...
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/impl/TSalaryStandardServiceImpl.java
View file @
3e88cbd3
...
...
@@ -541,7 +541,11 @@ public class TSalaryStandardServiceImpl extends ServiceImpl<TSalaryStandardMappe
fd3b71f20933e0d2
.
add
(
""
);
}
fd3b745c35ff27a8
.
add
(
res
.
getBankName
());
if
(
Common
.
isNotNull
(
res
.
getMoney
()))
{
fd3b73a736cc9cc8
.
add
(
String
.
valueOf
(
res
.
getMoney
()));
}
else
{
fd3b73a736cc9cc8
.
add
(
""
);
}
}
sendMap
.
put
(
"fd_3b71f1f4fd40ac.fd_3b71f207c0cfd0"
,
fd3b71f207c0cfd0
);
sendMap
.
put
(
"fd_3b71f1f4fd40ac.fd_3b71f20883301a"
,
fd3b71f20883301a
);
...
...
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