Commit e9374c97 authored by hongguangwu's avatar hongguangwu

MVP1.6.6-社保士兵实缴——去除【1】

parent 1427f488
......@@ -1048,6 +1048,9 @@ public class TSocialSoldierServiceImpl extends ServiceImpl<TSocialSoldierMapper,
}
detail.setPayLimit(money);
}
if (insuranceType.contains("【")) {
insuranceType = insuranceType.split("【")[0];
}
detail.setInsuranceType(insuranceType);
insuranceTypeUnit = "单位" + insuranceType;
insuranceTypePerson = "个人" + insuranceType;
......@@ -1060,9 +1063,6 @@ public class TSocialSoldierServiceImpl extends ServiceImpl<TSocialSoldierMapper,
} else if ("工伤保险".equals(insuranceType)) {
insuranceTypeUnit = "工伤保险";
}
if (insuranceType.contains("【")) {
insuranceType = insuranceType.split("【")[0];
}
if (Common.isNotNull(unitLimit)) {
detail.setInsuranceType(insuranceTypeUnit);
}
......
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