Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-backend
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
AutogeneralShanghai
yd-backend
Commits
65a4e6a8
Commit
65a4e6a8
authored
Dec 28, 2021
by
hongzhong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
薪资单码值处理
parent
dbee7be6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
yd-api/src/main/java/com/yd/api/practitioner/service/impl/PractitionerBasicInfoServiceImpl.java
+7
-7
No files found.
yd-api/src/main/java/com/yd/api/practitioner/service/impl/PractitionerBasicInfoServiceImpl.java
View file @
65a4e6a8
...
...
@@ -1207,8 +1207,8 @@ public class PractitionerBasicInfoServiceImpl implements PractitionerBasicInfoSe
}
}
//C99:其他,
13:公司激励奖金,14:其它税前加扣款,15:加码奖金,16:季度奖金,17
,银盾在线佣金
if
(
"C99,
13,14,15,16,17
,"
.
indexOf
(
withdrawLabelInfo
.
getDropOptionCode
()+
","
)
!=
-
1
)
{
//C99:其他,
C98:公司激励奖金,C97:其它税前加扣款,C96:加码奖金,C95:季度奖金,C94
,银盾在线佣金
if
(
"C99,
C94,C95,C96,C97,C98
,"
.
indexOf
(
withdrawLabelInfo
.
getDropOptionCode
()+
","
)
!=
-
1
)
{
OtherCommission
otherCommission
=
new
OtherCommission
();
otherCommission
.
setComments
(
withdrawLabelInfo
.
getRemark
());
otherCommission
.
setCommission
(
String
.
valueOf
(
withdrawLabelInfo
.
getReferralAmount
().
doubleValue
()));
...
...
@@ -1310,23 +1310,23 @@ public class PractitionerBasicInfoServiceImpl implements PractitionerBasicInfoSe
}
//公司激励奖金
if
(
"
13
"
.
equals
(
commissionType
))
{
if
(
"
C98
"
.
equals
(
commissionType
))
{
return
"C-001"
;
}
//其它税前加扣款
if
(
"
14
"
.
equals
(
commissionType
))
{
if
(
"
C97
"
.
equals
(
commissionType
))
{
return
"C-002"
;
}
//加码奖金
if
(
"
15
"
.
equals
(
commissionType
))
{
if
(
"
C96
"
.
equals
(
commissionType
))
{
return
"C-003"
;
}
//季度奖金
if
(
"
16
"
.
equals
(
commissionType
))
{
if
(
"
C95
"
.
equals
(
commissionType
))
{
return
"C-004"
;
}
//银盾在线佣金
if
(
"
17
"
.
equals
(
commissionType
))
{
if
(
"
C94
"
.
equals
(
commissionType
))
{
return
"C-005"
;
}
return
null
;
...
...
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