Commit 0cfc3f30 authored by 周健威's avatar 周健威

Merge branch 'holiday-price' into dev

parents 5dacd103 d8e8064b
......@@ -212,7 +212,7 @@ public class OrderCalculateBiz {
if(residueDays >= 2) {
residueDays = 2;
residueAmount = BigDecimal.ZERO;
for(int i = useDays; i < (useDays + residueDays + 1); i++) {
for(int i = useDays; i < (useDays + residueDays); i++) {
residueAmount = residueAmount.add(vmcpds.get(i).getPrice());
}
violateDesc += StrUtil.format("(封顶{}元)", residueAmount);
......
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