|
@@ -469,9 +469,9 @@ public class OutpatientOrderService {
|
|
int refundValue = statisticalDataMap.getOrDefault(refundKey, 0);
|
|
int refundValue = statisticalDataMap.getOrDefault(refundKey, 0);
|
|
if (payValue > 0 || refundValue > 0) {
|
|
if (payValue > 0 || refundValue > 0) {
|
|
startRows += 1;
|
|
startRows += 1;
|
|
- customExcelItemList.add(new ExcelCollectPojo(startColumn + 1, startRows, new String[]{paymentChannelName + "支付总额", FormatUtil.intShrink100ToStr(payValue)}));
|
|
|
|
- customExcelItemList.add(new ExcelCollectPojo(startColumn + 3, startRows, new String[]{paymentChannelName + "退款总额", FormatUtil.intShrink100ToStr(refundValue)}));
|
|
|
|
- customExcelItemList.add(new ExcelCollectPojo(startColumn + 5, startRows, new String[]{paymentChannelName + "实际支付金额", FormatUtil.intShrink100ToStr(payValue - refundValue)}));
|
|
|
|
|
|
+ customExcelItemList.add(new ExcelCollectPojo(startColumn + 1, startRows + 1, new String[]{paymentChannelName + "支付总额", FormatUtil.intShrink100ToStr(payValue)}));
|
|
|
|
+ customExcelItemList.add(new ExcelCollectPojo(startColumn + 3, startRows + 2, new String[]{paymentChannelName + "退款总额", FormatUtil.intShrink100ToStr(refundValue)}));
|
|
|
|
+ customExcelItemList.add(new ExcelCollectPojo(startColumn + 5, startRows + 5, new String[]{paymentChannelName + "实际支付金额", FormatUtil.intShrink100ToStr(payValue - refundValue)}));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|