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
07bad9d6
Commit
07bad9d6
authored
Oct 17, 2022
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
薪资导出
parent
9cb1d7ff
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
118 additions
and
17 deletions
+118
-17
TSalaryAccount.java
...yifu/cloud/plus/v1/yifu/salary/entity/TSalaryAccount.java
+61
-0
SalaryUploadServiceImpl.java
.../v1/yifu/salary/service/impl/SalaryUploadServiceImpl.java
+29
-15
TSalaryAccountMapper.xml
...ry-biz/src/main/resources/mapper/TSalaryAccountMapper.xml
+28
-2
No files found.
yifu-salary/yifu-salary-api/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/entity/TSalaryAccount.java
View file @
07bad9d6
...
@@ -445,4 +445,65 @@ public class TSalaryAccount extends BaseEntity {
...
@@ -445,4 +445,65 @@ public class TSalaryAccount extends BaseEntity {
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"订单ID"
)
@ExcelProperty
(
"订单ID"
)
private
String
orderId
;
private
String
orderId
;
@ExcelAttribute
(
name
=
"单位社保"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"单位社保"
)
private
BigDecimal
unitSocial
;
@ExcelAttribute
(
name
=
"个人社保"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"个人社保"
)
private
BigDecimal
personSocial
;
@ExcelAttribute
(
name
=
"单位公积金"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"单位公积金"
)
private
BigDecimal
unitFund
;
@ExcelAttribute
(
name
=
"个人公积金"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"个人公积金"
)
private
BigDecimal
personFund
;
@ExcelAttribute
(
name
=
"减除费用"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"减除费用"
)
private
BigDecimal
costReduction
;
// 累计子女教育 累计继续教育 累计住房贷款利息 累计住房租金 累计赡养老人 累计3岁以下婴幼儿照护
@ExcelAttribute
(
name
=
"累计子女教育"
,
isFloat
=
true
,
max
=
"999999999.99"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
value
=
"累计子女教育"
)
private
BigDecimal
sumChildEduMoney
;
@ExcelAttribute
(
name
=
"累计继续教育"
,
isFloat
=
true
,
max
=
"999999999.99"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
value
=
"累计继续教育"
)
private
BigDecimal
sumContinuingEducationMoney
;
@ExcelAttribute
(
name
=
"累计住房贷款利息"
,
isFloat
=
true
,
max
=
"999999999.99"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
value
=
"累计住房贷款利息"
)
private
BigDecimal
sumHousingLoanMoney
;
@ExcelAttribute
(
name
=
"累计住房租金"
,
isFloat
=
true
,
max
=
"999999999.99"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
value
=
"累计住房租金"
)
private
BigDecimal
sumHousingRentMoney
;
@ExcelAttribute
(
name
=
"累计赡养老人"
,
isFloat
=
true
,
max
=
"999999999.99"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
value
=
"累计赡养老人"
)
private
BigDecimal
sumSupportElderlyMoney
;
@ExcelAttribute
(
name
=
"累计3岁以下婴幼儿照护"
,
isFloat
=
true
,
max
=
"999999999.99"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
value
=
"累计3岁以下婴幼儿照护"
)
private
BigDecimal
sumBabyMoney
;
@ExcelAttribute
(
name
=
"年终奖单独扣税税费"
,
isFloat
=
true
,
max
=
"999999999.99"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
value
=
"年终奖单独扣税税费"
)
private
BigDecimal
annualBonusTax
;
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/impl/SalaryUploadServiceImpl.java
View file @
07bad9d6
...
@@ -590,6 +590,7 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
...
@@ -590,6 +590,7 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
//减除费用
//减除费用
if
(
SalaryConstants
.
COST_REDUCTION_JAVA
.
equals
(
sai
.
getJavaFiedName
()))
{
if
(
SalaryConstants
.
COST_REDUCTION_JAVA
.
equals
(
sai
.
getJavaFiedName
()))
{
costReduction
=
sai
.
getSalaryMoney
();
costReduction
=
sai
.
getSalaryMoney
();
a
.
setCostReduction
(
costReduction
);
}
}
//年终奖
//年终奖
if
(
SalaryConstants
.
ANNUAL_BONUS_JAVA
.
equals
(
sai
.
getJavaFiedName
()))
{
if
(
SalaryConstants
.
ANNUAL_BONUS_JAVA
.
equals
(
sai
.
getJavaFiedName
()))
{
...
@@ -604,12 +605,12 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
...
@@ -604,12 +605,12 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
if
(
modelPersonSocialFlag
)
{
if
(
modelPersonSocialFlag
)
{
personalDebt
=
personalDebt
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
PERSONAL_SOCIAL
,
personalDebt
=
personalDebt
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
PERSONAL_SOCIAL
,
SalaryConstants
.
PERSONAL_SOCIAL_JAVA
,
SalaryConstants
.
PERSONAL_SOCIAL_JAVA
,
this
.
getSocialOrFundMoneyForForecast
(
socialType
,
dept
,
a
.
getEmpIdcard
()
,
socialEstmateList
,
socialForecastList
,
true
,
true
,
socialList
,
fundList
,
forecastSocialList
,
forecastFundList
),
CommonConstants
.
ONE_INT
));
this
.
getSocialOrFundMoneyForForecast
(
socialType
,
dept
,
a
,
socialEstmateList
,
socialForecastList
,
true
,
true
,
socialList
,
fundList
,
forecastSocialList
,
forecastFundList
),
CommonConstants
.
ONE_INT
));
}
}
if
(
modelUnitSocialFlag
)
{
if
(
modelUnitSocialFlag
)
{
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
UNIT_SOCIAL
,
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
UNIT_SOCIAL
,
SalaryConstants
.
UNIT_SOCIAL_JAVA
,
SalaryConstants
.
UNIT_SOCIAL_JAVA
,
this
.
getSocialOrFundMoneyForForecast
(
socialType
,
dept
,
a
.
getEmpIdcard
()
,
socialEstmateList
,
socialForecastList
,
true
,
false
,
socialList
,
fundList
,
forecastSocialList
,
forecastFundList
),
CommonConstants
.
ZERO_INT
);
this
.
getSocialOrFundMoneyForForecast
(
socialType
,
dept
,
a
,
socialEstmateList
,
socialForecastList
,
true
,
false
,
socialList
,
fundList
,
forecastSocialList
,
forecastFundList
),
CommonConstants
.
ZERO_INT
);
}
}
}
}
if
(
Common
.
isEmpty
(
a
.
getIsDeductFund
())
||
SalaryConstants
.
IS_DEDUCT_ONE
.
equals
(
a
.
getIsDeductFund
()))
{
if
(
Common
.
isEmpty
(
a
.
getIsDeductFund
())
||
SalaryConstants
.
IS_DEDUCT_ONE
.
equals
(
a
.
getIsDeductFund
()))
{
...
@@ -618,12 +619,12 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
...
@@ -618,12 +619,12 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
if
(
modelPersonFundFlag
)
{
if
(
modelPersonFundFlag
)
{
personalDebt
=
personalDebt
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
PERSONAL_FUND
,
personalDebt
=
personalDebt
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
PERSONAL_FUND
,
SalaryConstants
.
PERSONAL_FUND_JAVA
,
SalaryConstants
.
PERSONAL_FUND_JAVA
,
this
.
getSocialOrFundMoneyForForecast
(
fundType
,
dept
,
a
.
getEmpIdcard
()
,
fundEstmateList
,
fundForecastList
,
false
,
true
,
socialList
,
fundList
,
forecastSocialList
,
forecastFundList
),
CommonConstants
.
ONE_INT
));
this
.
getSocialOrFundMoneyForForecast
(
fundType
,
dept
,
a
,
fundEstmateList
,
fundForecastList
,
false
,
true
,
socialList
,
fundList
,
forecastSocialList
,
forecastFundList
),
CommonConstants
.
ONE_INT
));
}
}
if
(
modelUnitFundFlag
)
{
if
(
modelUnitFundFlag
)
{
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
UNIT_FUND
,
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
UNIT_FUND
,
SalaryConstants
.
UNIT_FUND_JAVA
,
SalaryConstants
.
UNIT_FUND_JAVA
,
this
.
getSocialOrFundMoneyForForecast
(
fundType
,
dept
,
a
.
getEmpIdcard
()
,
fundEstmateList
,
fundForecastList
,
false
,
false
,
socialList
,
fundList
,
forecastSocialList
,
forecastFundList
),
CommonConstants
.
ZERO_INT
);
this
.
getSocialOrFundMoneyForForecast
(
fundType
,
dept
,
a
,
fundEstmateList
,
fundForecastList
,
false
,
false
,
socialList
,
fundList
,
forecastSocialList
,
forecastFundList
),
CommonConstants
.
ZERO_INT
);
}
}
}
}
}
}
...
@@ -651,21 +652,27 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
...
@@ -651,21 +652,27 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
//累计子女教育
//累计子女教育
sdSum
=
sdSum
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
SUM_CHILD_EDU_MONEY
,
sdSum
=
sdSum
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
SUM_CHILD_EDU_MONEY
,
SalaryConstants
.
SUM_CHILD_EDU_MONEY_JAVA
,
sds
.
getSumChildEduMoney
(),
CommonConstants
.
ZERO_INT
));
SalaryConstants
.
SUM_CHILD_EDU_MONEY_JAVA
,
sds
.
getSumChildEduMoney
(),
CommonConstants
.
ZERO_INT
));
a
.
setSumChildEduMoney
(
sds
.
getSumChildEduMoney
());
//累计住房贷款利息
//累计住房贷款利息
sdSum
=
sdSum
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
SUM_HOUSING_LOAN_MONEY
,
sdSum
=
sdSum
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
SUM_HOUSING_LOAN_MONEY
,
SalaryConstants
.
SUM_HOUSING_LOAN_MONEY_JAVA
,
sds
.
getSumHousingLoanMoney
(),
CommonConstants
.
ZERO_INT
));
SalaryConstants
.
SUM_HOUSING_LOAN_MONEY_JAVA
,
sds
.
getSumHousingLoanMoney
(),
CommonConstants
.
ZERO_INT
));
a
.
setSumHousingLoanMoney
(
sds
.
getSumHousingLoanMoney
());
//累计住房租金
//累计住房租金
sdSum
=
sdSum
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
SUM_HOUSING_RENT_MONEY
,
sdSum
=
sdSum
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
SUM_HOUSING_RENT_MONEY
,
SalaryConstants
.
SUM_HOUSING_RENT_MONEY_JAVA
,
sds
.
getSumHousingRentMoney
(),
CommonConstants
.
ZERO_INT
));
SalaryConstants
.
SUM_HOUSING_RENT_MONEY_JAVA
,
sds
.
getSumHousingRentMoney
(),
CommonConstants
.
ZERO_INT
));
a
.
setSumHousingRentMoney
(
sds
.
getSumHousingRentMoney
());
//累计赡养老人
//累计赡养老人
sdSum
=
sdSum
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
SUM_SUPPORT_ELDERLY_MONEY
,
sdSum
=
sdSum
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
SUM_SUPPORT_ELDERLY_MONEY
,
SalaryConstants
.
SUM_SUPPORT_ELDERLY_MONEY_JAVA
,
sds
.
getSumSupportElderlyMoney
(),
CommonConstants
.
ZERO_INT
));
SalaryConstants
.
SUM_SUPPORT_ELDERLY_MONEY_JAVA
,
sds
.
getSumSupportElderlyMoney
(),
CommonConstants
.
ZERO_INT
));
a
.
setSumSupportElderlyMoney
(
sds
.
getSumSupportElderlyMoney
());
//累计继续教育
//累计继续教育
sdSum
=
sdSum
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
SUM_CONTINUING_EDUCATION_MONEY
,
sdSum
=
sdSum
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
SUM_CONTINUING_EDUCATION_MONEY
,
SalaryConstants
.
SUM_CONTINUING_EDUCATION_MONEY_JAVA
,
sds
.
getSumContinuingEducationMoney
(),
CommonConstants
.
ZERO_INT
));
SalaryConstants
.
SUM_CONTINUING_EDUCATION_MONEY_JAVA
,
sds
.
getSumContinuingEducationMoney
(),
CommonConstants
.
ZERO_INT
));
a
.
setSumContinuingEducationMoney
(
sds
.
getSumContinuingEducationMoney
());
//累计婴幼儿照护费用
//累计婴幼儿照护费用
sdSum
=
sdSum
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
SUM_BABY_MONEY
,
sdSum
=
sdSum
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
SUM_BABY_MONEY
,
SalaryConstants
.
SUM_BABY_MONEY_JAVA
,
sds
.
getSumBabyMoney
(),
CommonConstants
.
ZERO_INT
));
SalaryConstants
.
SUM_BABY_MONEY_JAVA
,
sds
.
getSumBabyMoney
(),
CommonConstants
.
ZERO_INT
));
a
.
setSumBabyMoney
(
sds
.
getSumBabyMoney
());
//累计专项扣除总额
//累计专项扣除总额
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
SPECIAL_DEDU_MONEY_SUM
,
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
SPECIAL_DEDU_MONEY_SUM
,
SalaryConstants
.
SPECIAL_DEDU_MONEY_SUM_JAVA
,
sdSum
,
CommonConstants
.
ZERO_INT
);
SalaryConstants
.
SPECIAL_DEDU_MONEY_SUM_JAVA
,
sdSum
,
CommonConstants
.
ZERO_INT
);
...
@@ -700,10 +707,10 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
...
@@ -700,10 +707,10 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
if
(
CommonConstants
.
ONE_STRING
.
equals
(
checkYearFinalStyle
))
{
if
(
CommonConstants
.
ONE_STRING
.
equals
(
checkYearFinalStyle
))
{
if
(!
isActual
)
{
if
(!
isActual
)
{
personalDebt
=
personalDebt
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
ANNUAL_BONUS_TAX
,
personalDebt
=
personalDebt
.
add
(
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
ANNUAL_BONUS_TAX
,
SalaryConstants
.
ANNUAL_BONUS_TAX_JAVA
,
calculation2FinalSalary
(
annualBonus
,
annousTax
),
CommonConstants
.
ZERO_INT
));
SalaryConstants
.
ANNUAL_BONUS_TAX_JAVA
,
calculation2FinalSalary
(
a
,
a
nnualBonus
,
annousTax
),
CommonConstants
.
ZERO_INT
));
}
else
{
}
else
{
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
ANNUAL_BONUS_TAX
,
this
.
saveNewItems
(
saiList
,
SalaryConstants
.
ANNUAL_BONUS_TAX
,
SalaryConstants
.
ANNUAL_BONUS_TAX_JAVA
,
calculation2FinalSalary
(
annualBonus
,
annousTax
),
CommonConstants
.
ZERO_INT
);
SalaryConstants
.
ANNUAL_BONUS_TAX_JAVA
,
calculation2FinalSalary
(
a
,
a
nnualBonus
,
annousTax
),
CommonConstants
.
ZERO_INT
);
}
}
if
(
annousSai
!=
null
)
{
if
(
annousSai
!=
null
)
{
annousSai
.
setIsTax
(
CommonConstants
.
ONE_INT
);
annousSai
.
setIsTax
(
CommonConstants
.
ONE_INT
);
...
@@ -991,18 +998,21 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
...
@@ -991,18 +998,21 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
* @Date: 2019/10/8 15:11
* @Date: 2019/10/8 15:11
* @return: java.math.BigDecimal
* @return: java.math.BigDecimal
**/
**/
private
static
BigDecimal
calculation2FinalSalary
(
BigDecimal
yearFinal
,
List
<
TSalaryTaxConfig
>
annousTax
)
{
private
static
BigDecimal
calculation2FinalSalary
(
TSalaryAccount
a
,
BigDecimal
yearFinal
,
List
<
TSalaryTaxConfig
>
annousTax
)
{
//年终奖
//年终奖
if
(
yearFinal
!=
null
&&
yearFinal
.
compareTo
(
SalaryConstants
.
B_ZERO
)
>
SalaryConstants
.
EQUAL
if
(
yearFinal
!=
null
&&
yearFinal
.
compareTo
(
SalaryConstants
.
B_ZERO
)
>
SalaryConstants
.
EQUAL
&&
annousTax
!=
null
&&
annousTax
.
size
()
>
CommonConstants
.
ZERO_INT
)
{
&&
annousTax
!=
null
&&
annousTax
.
size
()
>
CommonConstants
.
ZERO_INT
)
{
BigDecimal
month
=
yearFinal
.
divide
(
SalaryConstants
.
B_TWELVE
,
SalaryConstants
.
TAX_FEE_PLACES
,
BigDecimal
.
ROUND_HALF_UP
);
BigDecimal
month
=
yearFinal
.
divide
(
SalaryConstants
.
B_TWELVE
,
SalaryConstants
.
TAX_FEE_PLACES
,
BigDecimal
.
ROUND_HALF_UP
);
// 应纳税额
// 应纳税额
BigDecimal
annualBonusTax
;
for
(
TSalaryTaxConfig
sub
:
annousTax
)
{
for
(
TSalaryTaxConfig
sub
:
annousTax
)
{
if
(
month
.
compareTo
(
sub
.
getMinIncome
())
>
SalaryConstants
.
EQUAL
if
(
month
.
compareTo
(
sub
.
getMinIncome
())
>
SalaryConstants
.
EQUAL
&&
month
.
compareTo
(
sub
.
getMaxIncome
())
<=
SalaryConstants
.
EQUAL
)
{
&&
month
.
compareTo
(
sub
.
getMaxIncome
())
<=
SalaryConstants
.
EQUAL
)
{
return
yearFinal
.
multiply
(
new
BigDecimal
(
sub
.
getWithholdingRate
()).
divide
(
annualBonusTax
=
yearFinal
.
multiply
(
new
BigDecimal
(
sub
.
getWithholdingRate
()).
divide
(
SalaryConstants
.
B_ONEHUNDRED
,
SalaryConstants
.
TAX_FEE_PLACES
,
BigDecimal
.
ROUND_HALF_UP
))
SalaryConstants
.
B_ONEHUNDRED
,
SalaryConstants
.
TAX_FEE_PLACES
,
BigDecimal
.
ROUND_HALF_UP
))
.
subtract
(
sub
.
getQuickDeducation
());
.
subtract
(
sub
.
getQuickDeducation
());
a
.
setAnnualBonusTax
(
annualBonusTax
);
return
annualBonusTax
;
}
}
}
}
}
}
...
@@ -1040,7 +1050,7 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
...
@@ -1040,7 +1050,7 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
/**
/**
* @param estmateList 预估库数据列表
* @param estmateList 预估库数据列表
* @param
idNumber
身份证
* @param
a :
身份证
* @param isSocial true:社保 false:公积金
* @param isSocial true:社保 false:公积金
* @param isPerson true:个人 false:单位
* @param isPerson true:个人 false:单位
* @param socialList 预估库id,社保list
* @param socialList 预估库id,社保list
...
@@ -1050,7 +1060,7 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
...
@@ -1050,7 +1060,7 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
* @Date: 2019/9/26 15:38
* @Date: 2019/9/26 15:38
* @return: java.math.BigDecimal
* @return: java.math.BigDecimal
**/
**/
public
BigDecimal
getSocialOrFundMoneyForForecast
(
String
socialFundType
,
TSettleDomain
dept
,
String
idNumber
public
BigDecimal
getSocialOrFundMoneyForForecast
(
String
socialFundType
,
TSettleDomain
dept
,
TSalaryAccount
a
,
List
<
TPaymentBySalaryVo
>
estmateList
,
List
<
TPaymentBySalaryVo
>
forecastList
,
boolean
isSocial
,
boolean
isPerson
,
List
<
TPaymentBySalaryVo
>
estmateList
,
List
<
TPaymentBySalaryVo
>
forecastList
,
boolean
isSocial
,
boolean
isPerson
,
Set
<
String
>
socialList
,
Set
<
String
>
fundList
,
Set
<
String
>
forecastSocialList
,
Set
<
String
>
forecastFundList
)
{
,
Set
<
String
>
socialList
,
Set
<
String
>
fundList
,
Set
<
String
>
forecastSocialList
,
Set
<
String
>
forecastFundList
)
{
BigDecimal
money
=
SalaryConstants
.
B_ZERO
;
BigDecimal
money
=
SalaryConstants
.
B_ZERO
;
...
@@ -1061,11 +1071,11 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
...
@@ -1061,11 +1071,11 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
.
divide
(
SalaryConstants
.
B_ONEHUNDRED
,
SalaryConstants
.
PLACES
,
BigDecimal
.
ROUND_HALF_UP
);
.
divide
(
SalaryConstants
.
B_ONEHUNDRED
,
SalaryConstants
.
PLACES
,
BigDecimal
.
ROUND_HALF_UP
);
}
}
if
(
CommonConstants
.
ZERO_STRING
.
equals
(
socialFundType
)
&&
estmateList
!=
null
&&
!
estmateList
.
isEmpty
())
{
if
(
CommonConstants
.
ZERO_STRING
.
equals
(
socialFundType
)
&&
estmateList
!=
null
&&
!
estmateList
.
isEmpty
())
{
money
=
this
.
getSocialFundMoney
(
idNumber
,
estmateList
,
isSocial
,
isPerson
,
socialList
,
fundList
,
money
,
sub
);
money
=
this
.
getSocialFundMoney
(
a
,
estmateList
,
isSocial
,
isPerson
,
socialList
,
fundList
,
money
,
sub
);
}
}
// 缴费库没找到,从预估库找
// 缴费库没找到,从预估库找
if
(
CommonConstants
.
ONE_STRING
.
equals
(
socialFundType
)
&&
forecastList
!=
null
&&
!
forecastList
.
isEmpty
())
{
if
(
CommonConstants
.
ONE_STRING
.
equals
(
socialFundType
)
&&
forecastList
!=
null
&&
!
forecastList
.
isEmpty
())
{
money
=
this
.
getSocialFundMoney
(
idNumber
,
forecastList
,
isSocial
,
isPerson
,
forecastSocialList
,
forecastFundList
,
money
,
sub
);
money
=
this
.
getSocialFundMoney
(
a
,
forecastList
,
isSocial
,
isPerson
,
forecastSocialList
,
forecastFundList
,
money
,
sub
);
}
}
return
money
;
return
money
;
}
}
...
@@ -1076,11 +1086,11 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
...
@@ -1076,11 +1086,11 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
* @Date: 2022/8/17 11:38
* @Date: 2022/8/17 11:38
* @return: java.math.BigDecimal
* @return: java.math.BigDecimal
**/
**/
private
BigDecimal
getSocialFundMoney
(
String
idNumber
,
List
<
TPaymentBySalaryVo
>
estmateList
,
boolean
isSocial
private
BigDecimal
getSocialFundMoney
(
TSalaryAccount
a
,
List
<
TPaymentBySalaryVo
>
estmateList
,
boolean
isSocial
,
boolean
isPerson
,
Set
<
String
>
socialList
,
Set
<
String
>
fundList
,
BigDecimal
money
,
BigDecimal
sub
)
{
,
boolean
isPerson
,
Set
<
String
>
socialList
,
Set
<
String
>
fundList
,
BigDecimal
money
,
BigDecimal
sub
)
{
money
=
money
.
setScale
(
SalaryConstants
.
PLACES
,
BigDecimal
.
ROUND_HALF_UP
);
money
=
money
.
setScale
(
SalaryConstants
.
PLACES
,
BigDecimal
.
ROUND_HALF_UP
);
for
(
TPaymentBySalaryVo
m
:
estmateList
)
{
for
(
TPaymentBySalaryVo
m
:
estmateList
)
{
if
(
Common
.
isNotNull
(
idNumber
)
&&
idNumber
.
equals
(
m
.
getEmpIdcard
()))
{
if
(
Common
.
isNotNull
(
a
.
getEmpIdcard
())
&&
a
.
getEmpIdcard
()
.
equals
(
m
.
getEmpIdcard
()))
{
//社保
//社保
if
(
isSocial
&&
(!
Common
.
isNotNull
(
m
.
getSalarySocialFlag
())
||
CommonConstants
.
ZERO_STRING
.
equals
(
m
.
getSalarySocialFlag
()))
if
(
isSocial
&&
(!
Common
.
isNotNull
(
m
.
getSalarySocialFlag
())
||
CommonConstants
.
ZERO_STRING
.
equals
(
m
.
getSalarySocialFlag
()))
&&
(
m
.
getPersonalSocialSum
()
!=
null
||
m
.
getUnitSocialSum
()
!=
null
))
{
&&
(
m
.
getPersonalSocialSum
()
!=
null
||
m
.
getUnitSocialSum
()
!=
null
))
{
...
@@ -1090,6 +1100,7 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
...
@@ -1090,6 +1100,7 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
&&
m
.
getUnitBitmailmentFee
()
!=
null
)
{
&&
m
.
getUnitBitmailmentFee
()
!=
null
)
{
money
=
money
.
add
(
m
.
getUnitBitmailmentFee
().
multiply
(
sub
));
money
=
money
.
add
(
m
.
getUnitBitmailmentFee
().
multiply
(
sub
));
}
}
a
.
setPersonSocial
(
money
);
}
}
if
(!
isPerson
&&
m
.
getUnitSocialSum
()
!=
null
)
{
if
(!
isPerson
&&
m
.
getUnitSocialSum
()
!=
null
)
{
money
=
money
.
add
(
m
.
getUnitSocialSum
());
money
=
money
.
add
(
m
.
getUnitSocialSum
());
...
@@ -1097,6 +1108,7 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
...
@@ -1097,6 +1108,7 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
&&
m
.
getUnitBitmailmentFee
()
!=
null
)
{
&&
m
.
getUnitBitmailmentFee
()
!=
null
)
{
money
=
money
.
subtract
(
m
.
getUnitBitmailmentFee
().
multiply
(
sub
));
money
=
money
.
subtract
(
m
.
getUnitBitmailmentFee
().
multiply
(
sub
));
}
}
a
.
setUnitSocial
(
money
);
}
}
socialList
.
add
(
m
.
getId
());
socialList
.
add
(
m
.
getId
());
}
}
...
@@ -1105,9 +1117,11 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
...
@@ -1105,9 +1117,11 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
&&
(
m
.
getPersonalFundSum
()
!=
null
||
m
.
getUnitFundSum
()
!=
null
))
{
&&
(
m
.
getPersonalFundSum
()
!=
null
||
m
.
getUnitFundSum
()
!=
null
))
{
if
(
isPerson
&&
m
.
getPersonalFundSum
()
!=
null
)
{
if
(
isPerson
&&
m
.
getPersonalFundSum
()
!=
null
)
{
money
=
money
.
add
(
m
.
getPersonalFundSum
());
money
=
money
.
add
(
m
.
getPersonalFundSum
());
a
.
setPersonFund
(
money
);
}
}
if
(!
isPerson
&&
m
.
getUnitFundSum
()
!=
null
)
{
if
(!
isPerson
&&
m
.
getUnitFundSum
()
!=
null
)
{
money
=
money
.
add
(
m
.
getUnitFundSum
());
money
=
money
.
add
(
m
.
getUnitFundSum
());
a
.
setUnitFund
(
money
);
}
}
fundList
.
add
(
m
.
getId
());
fundList
.
add
(
m
.
getId
());
}
}
...
@@ -1339,7 +1353,7 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
...
@@ -1339,7 +1353,7 @@ public class SalaryUploadServiceImpl extends ServiceImpl<TSalaryStandardMapper,
,
List
<
TSalaryTaxConfig
>
annousTax
,
TSalaryAccount
a
)
{
,
List
<
TSalaryTaxConfig
>
annousTax
,
TSalaryAccount
a
)
{
BigDecimal
finalSalaryWithSalary
=
calculation2PersonSalary
(
isActual
,
saiList
,
asList
,
sdSum
BigDecimal
finalSalaryWithSalary
=
calculation2PersonSalary
(
isActual
,
saiList
,
asList
,
sdSum
,
costReduction
,
personTax
,
saiList
,
a
);
,
costReduction
,
personTax
,
saiList
,
a
);
BigDecimal
finalSalaryNoSalary
=
calculation2FinalSalary
(
annualBonus
,
annousTax
);
BigDecimal
finalSalaryNoSalary
=
calculation2FinalSalary
(
a
,
a
nnualBonus
,
annousTax
);
if
(
finalSalaryWithSalary
.
compareTo
(
finalSalaryNoSalary
)
>
SalaryConstants
.
EQUAL
)
{
if
(
finalSalaryWithSalary
.
compareTo
(
finalSalaryNoSalary
)
>
SalaryConstants
.
EQUAL
)
{
return
"1"
;
return
"1"
;
}
}
...
...
yifu-salary/yifu-salary-biz/src/main/resources/mapper/TSalaryAccountMapper.xml
View file @
07bad9d6
...
@@ -78,6 +78,20 @@
...
@@ -78,6 +78,20 @@
<result
property=
"sendUserName"
column=
"SEND_USER_NAME"
/>
<result
property=
"sendUserName"
column=
"SEND_USER_NAME"
/>
<result
property=
"sendMonth"
column=
"SEND_MONTH"
/>
<result
property=
"sendMonth"
column=
"SEND_MONTH"
/>
<result
property=
"orderId"
column=
"ORDER_ID"
/>
<result
property=
"orderId"
column=
"ORDER_ID"
/>
<result
property=
"unitSocial"
column=
"UNIT_SOCIAL"
/>
<result
property=
"personSocial"
column=
"PERSON_SOCIAL"
/>
<result
property=
"unitFund"
column=
"UNIT_FUND"
/>
<result
property=
"personFund"
column=
"PERSON_FUND"
/>
<result
property=
"costReduction"
column=
"COST_REDUCTION"
/>
<result
property=
"annualBonusTax"
column=
"ANNUAL_BONUS_TAX"
/>
<result
property=
"sumChildEduMoney"
column=
"SUM_CHILD_EDU_MONEY"
/>
<result
property=
"sumHousingLoanMoney"
column=
"SUM_HOUSING_LOAN_MONEY"
/>
<result
property=
"sumHousingRentMoney"
column=
"SUM_HOUSING_RENT_MONEY"
/>
<result
property=
"sumSupportElderlyMoney"
column=
"SUM_SUPPORT_ELDERLY_MONEY"
/>
<result
property=
"sumContinuingEducationMoney"
column=
"SUM_CONTINUING_EDUCATION_MONEY"
/>
<result
property=
"sumBabyMoney"
column=
"SUM_BABY_MONEY"
/>
</resultMap>
</resultMap>
<!-- 对接EKP的参数 -->
<!-- 对接EKP的参数 -->
...
@@ -208,8 +222,20 @@
...
@@ -208,8 +222,20 @@
a.SEND_USER,
a.SEND_USER,
a.SEND_USER_NAME,
a.SEND_USER_NAME,
a.SEND_MONTH,
a.SEND_MONTH,
a.ORDER_ID
a.ORDER_ID,
</sql>
a.UNIT_SOCIAL,
a.PERSON_SOCIAL,
a.UNIT_FUND,
a.PERSON_FUND,
a.COST_REDUCTION,
a.ANNUAL_BONUS_TAX,
a.SUM_CHILD_EDU_MONEY,
a.SUM_HOUSING_LOAN_MONEY,
a.SUM_HOUSING_RENT_MONEY,
a.SUM_SUPPORT_ELDERLY_MONEY,
a.SUM_CONTINUING_EDUCATION_MONEY,
a.SUM_BABY_MONEY
</sql>
<sql
id=
"tSalaryAccount_where"
>
<sql
id=
"tSalaryAccount_where"
>
<if
test=
"tSalaryAccount != null"
>
<if
test=
"tSalaryAccount != null"
>
<if
test=
"tSalaryAccount.id != null and tSalaryAccount.id.trim() != ''"
>
<if
test=
"tSalaryAccount.id != null and tSalaryAccount.id.trim() != ''"
>
...
...
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