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
e82038e3
Commit
e82038e3
authored
Feb 23, 2022
by
hongzhong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
薪资单,C15-体系推荐显示明细
parent
0f431180
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
131 additions
and
0 deletions
+131
-0
yd-api/src/main/java/com/yd/api/practitioner/service/impl/PractitionerBasicInfoServiceImpl.java
+11
-0
yd-api/src/main/java/com/yd/rmi/n22/salary/pojo/searchstaffsalarydetails/RecommendSystemCommission.java
+120
-0
No files found.
yd-api/src/main/java/com/yd/api/practitioner/service/impl/PractitionerBasicInfoServiceImpl.java
View file @
e82038e3
...
...
@@ -1288,6 +1288,17 @@ public class PractitionerBasicInfoServiceImpl implements PractitionerBasicInfoSe
recommendSystemCommission
.
setSaleSystem
(
withdrawLabelInfo
.
getSubordinateSystemName
());
recommendSystemCommission
.
setCommission
(
String
.
valueOf
(
withdrawLabelInfo
.
getReferralAmount
().
doubleValue
()));
recommendSystemCommission
.
setComments
(
withdrawLabelInfo
.
getRemark
());
recommendSystemCommission
.
setCustomer
(
withdrawLabelInfo
.
getInsurerName
());
//保险公司
recommendSystemCommission
.
setEffectiveDate
(
withdrawLabelInfo
.
getEffectiveStartDate
());
//生效时间
recommendSystemCommission
.
setInsurance_Cust
(
withdrawLabelInfo
.
getInsuredName
());
//投保人
recommendSystemCommission
.
setPol_name_chn
(
withdrawLabelInfo
.
getProductName
());
//产品名称
recommendSystemCommission
.
setPolicyno
(
withdrawLabelInfo
.
getPolicyNo
());
//保单号
recommendSystemCommission
.
setSalesCommissionRate
(
withdrawLabelInfo
.
getCommissionRate
().
doubleValue
());
recommendSystemCommission
.
setYearPREMIUM
(
withdrawLabelInfo
.
getOrderPrice
().
intValue
());
//保费
recommendSystemCommission
.
setCalculationFormula
(
withdrawLabelInfo
.
getCalculationFormula
());
//佣金计算公式
recommendSystemCommission
.
setSalestaff
(
withdrawLabelInfo
.
getPractitionerName
());
//经纪人名称
recommendSystemCommission
.
setSalaryCode
(
transformationType
(
withdrawLabelInfo
.
getDropOptionCode
()));
recommendSystemCommission
.
setCalculationAmount
(
withdrawLabelInfo
.
getCalculationAmount
().
doubleValue
());
c15List
.
add
(
recommendSystemCommission
);
}
}
...
...
yd-api/src/main/java/com/yd/rmi/n22/salary/pojo/searchstaffsalarydetails/RecommendSystemCommission.java
View file @
e82038e3
...
...
@@ -8,6 +8,21 @@ public class RecommendSystemCommission {
private
String
Rate
;
private
String
Commission
;
private
String
Comments
;
private
String
Customer
;
private
String
Policyno
;
private
String
Pol_name_chn
;
private
String
EffectiveDate
;
private
String
Insurance_Cust
;
private
int
Year
;
private
int
YearPREMIUM
;
private
double
SalesCommissionRate
;
private
String
Level
;
private
String
Salestaff
;
private
String
calculationFormula
;
private
String
salaryCode
;
private
double
calculationAmount
;
public
RecommendSystemCommission
()
{
}
...
...
@@ -52,4 +67,109 @@ public class RecommendSystemCommission {
public
void
setComments
(
String
comments
)
{
Comments
=
comments
;
}
@JsonProperty
(
"Customer"
)
public
void
setCustomer
(
String
customer
)
{
Customer
=
customer
;
}
public
String
getPolicyno
()
{
return
Policyno
;
}
@JsonProperty
(
"Policyno"
)
public
void
setPolicyno
(
String
policyno
)
{
Policyno
=
policyno
;
}
public
String
getPol_name_chn
()
{
return
Pol_name_chn
;
}
@JsonProperty
(
"Pol_name_chn"
)
public
void
setPol_name_chn
(
String
pol_name_chn
)
{
Pol_name_chn
=
pol_name_chn
;
}
public
String
getEffectiveDate
()
{
return
EffectiveDate
;
}
@JsonProperty
(
"EffectiveDate"
)
public
void
setEffectiveDate
(
String
effectiveDate
)
{
EffectiveDate
=
effectiveDate
;
}
public
String
getInsurance_Cust
()
{
return
Insurance_Cust
;
}
@JsonProperty
(
"Insurance_Cust"
)
public
void
setInsurance_Cust
(
String
insurance_Cust
)
{
Insurance_Cust
=
insurance_Cust
;
}
public
int
getYear
()
{
return
Year
;
}
@JsonProperty
(
"Year"
)
public
void
setYear
(
int
year
)
{
Year
=
year
;
}
public
int
getYearPREMIUM
()
{
return
YearPREMIUM
;
}
@JsonProperty
(
"YearPREMIUM"
)
public
void
setYearPREMIUM
(
int
yearPREMIUM
)
{
YearPREMIUM
=
yearPREMIUM
;
}
public
double
getSalesCommissionRate
()
{
return
SalesCommissionRate
;
}
@JsonProperty
(
"SalesCommissionRate"
)
public
void
setSalesCommissionRate
(
double
salesCommissionRate
)
{
SalesCommissionRate
=
salesCommissionRate
;
}
public
String
getLevel
()
{
return
Level
;
}
@JsonProperty
(
"Level"
)
public
void
setLevel
(
String
level
)
{
Level
=
level
;
}
public
String
getSalestaff
()
{
return
Salestaff
;
}
@JsonProperty
(
"Salestaff"
)
public
void
setSalestaff
(
String
salestaff
)
{
Salestaff
=
salestaff
;
}
public
String
getCalculationFormula
()
{
return
calculationFormula
;
}
public
void
setCalculationFormula
(
String
calculationFormula
)
{
this
.
calculationFormula
=
calculationFormula
;
}
public
String
getSalaryCode
()
{
return
salaryCode
;
}
public
void
setSalaryCode
(
String
salaryCode
)
{
this
.
salaryCode
=
salaryCode
;
}
public
double
getCalculationAmount
()
{
return
calculationAmount
;
}
public
void
setCalculationAmount
(
double
calculationAmount
)
{
this
.
calculationAmount
=
calculationAmount
;
}
}
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