|
@@ -67,14 +67,18 @@ public class SiChargeLimitService {
|
|
|
}
|
|
|
if (dateList.size() >= limit.getLimitDay()) {
|
|
|
String type = limit.getChargeCode().length() == 5 ? "药品【" : "项目【";
|
|
|
- String fact = dateList.size() == limit.getLimitDay() ? "即将超期支付。" : "已经超期支付。";
|
|
|
+ String fact = dateList.size() == limit.getLimitDay() ? "即将超期支付(已支付" : "已经超期支付(已支付";
|
|
|
builder.append(type)
|
|
|
.append(limit.getChargeName())
|
|
|
.append("(")
|
|
|
.append(limit.getChargeCode())
|
|
|
.append(")】限定支付")
|
|
|
.append(limit.getLimitDay())
|
|
|
- .append("天,").append(fact).append("\r\n");
|
|
|
+ .append("天,")
|
|
|
+ .append(fact)
|
|
|
+ .append(dateList.size())
|
|
|
+ .append("天。)")
|
|
|
+ .append("\r\n");
|
|
|
}
|
|
|
}
|
|
|
|