Commit e82038e3 by hongzhong

薪资单,C15-体系推荐显示明细

parent 0f431180
......@@ -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);
}
}
......
......@@ -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;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment