|
@@ -881,14 +881,6 @@ public class SiQueryService {
|
|
|
selfPaySum = selfPaySum.add(selfPayAmt);
|
|
|
fundPaySum = fundPaySum.add(fundPayAmt);
|
|
|
|
|
|
- if (itm.getString("polItemName").trim().equals("大额一段")) {
|
|
|
- lst.setBigAmtFrstLvPsnAmt(selfPayAmt);
|
|
|
- lst.setBigAmtFrstLvPsnProp(selfPayProp);
|
|
|
- lst.setBigAmtFrstLvFundAmt(fundPayAmt);
|
|
|
- lst.setBigAmtFrstLvFundProp(fundPayProp);
|
|
|
- lst.setBigAmtFrstLvSum(polItemPaySum);
|
|
|
- }
|
|
|
-
|
|
|
PolItemCode polItemCode = PolItemCode.get(itm.getString("polItemCode"));
|
|
|
if (null == polItemCode) {
|
|
|
String message = String.format("找到了字典缺失的政策项:%s", itm);
|
|
@@ -896,7 +888,6 @@ public class SiQueryService {
|
|
|
wxsrvc.sendCorpWxMsg("2801", message);
|
|
|
continue;
|
|
|
}
|
|
|
-
|
|
|
switch (polItemCode) {
|
|
|
case QZF:
|
|
|
lst.setSelfPayPsnAmt(selfPayAmt);
|
|
@@ -940,6 +931,13 @@ public class SiQueryService {
|
|
|
lst.setFundScndLvFundProp(fundPayProp);
|
|
|
lst.setFundScndLvSum(polItemPaySum);
|
|
|
break;
|
|
|
+ case DEYD:
|
|
|
+ lst.setBigAmtFrstLvPsnAmt(selfPayAmt);
|
|
|
+ lst.setBigAmtFrstLvPsnProp(selfPayProp);
|
|
|
+ lst.setBigAmtFrstLvFundAmt(fundPayAmt);
|
|
|
+ lst.setBigAmtFrstLvFundProp(fundPayProp);
|
|
|
+ lst.setBigAmtFrstLvSum(polItemPaySum);
|
|
|
+ break;
|
|
|
}
|
|
|
}
|
|
|
lst.setAllPsnAmt(selfPaySum);
|