Commit 65a4e6a8 by hongzhong

薪资单码值处理

parent dbee7be6
...@@ -1207,8 +1207,8 @@ public class PractitionerBasicInfoServiceImpl implements PractitionerBasicInfoSe ...@@ -1207,8 +1207,8 @@ public class PractitionerBasicInfoServiceImpl implements PractitionerBasicInfoSe
} }
} }
//C99:其他,13:公司激励奖金,14:其它税前加扣款,15:加码奖金,16:季度奖金,17,银盾在线佣金 //C99:其他,C98:公司激励奖金,C97:其它税前加扣款,C96:加码奖金,C95:季度奖金,C94,银盾在线佣金
if ("C99,13,14,15,16,17,".indexOf(withdrawLabelInfo.getDropOptionCode()+",") != -1) { if ("C99,C94,C95,C96,C97,C98,".indexOf(withdrawLabelInfo.getDropOptionCode()+",") != -1) {
OtherCommission otherCommission = new OtherCommission(); OtherCommission otherCommission = new OtherCommission();
otherCommission.setComments(withdrawLabelInfo.getRemark()); otherCommission.setComments(withdrawLabelInfo.getRemark());
otherCommission.setCommission(String.valueOf(withdrawLabelInfo.getReferralAmount().doubleValue())); otherCommission.setCommission(String.valueOf(withdrawLabelInfo.getReferralAmount().doubleValue()));
...@@ -1310,23 +1310,23 @@ public class PractitionerBasicInfoServiceImpl implements PractitionerBasicInfoSe ...@@ -1310,23 +1310,23 @@ public class PractitionerBasicInfoServiceImpl implements PractitionerBasicInfoSe
} }
//公司激励奖金 //公司激励奖金
if ("13".equals(commissionType)) { if ("C98".equals(commissionType)) {
return "C-001"; return "C-001";
} }
//其它税前加扣款 //其它税前加扣款
if ("14".equals(commissionType)) { if ("C97".equals(commissionType)) {
return "C-002"; return "C-002";
} }
//加码奖金 //加码奖金
if ("15".equals(commissionType)) { if ("C96".equals(commissionType)) {
return "C-003"; return "C-003";
} }
//季度奖金 //季度奖金
if ("16".equals(commissionType)) { if ("C95".equals(commissionType)) {
return "C-004"; return "C-004";
} }
//银盾在线佣金 //银盾在线佣金
if ("17".equals(commissionType)) { if ("C94".equals(commissionType)) {
return "C-005"; return "C-005";
} }
return null; return null;
......
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