lisai17@sina.com 2020-12-26 15:38:34 +08:00
parent 92c29cd9ad
commit d8bcf52b85
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ public class RefundDetailSyncService extends BaseSyncService {
return Result.failed("未找到客户预付费信息");
}
if (prepayCustomer.getSurplus() == null || amount.compareTo(prepayCustomer.getSurplus()) > 0) {
if (prepayCustomer.getSurplus() == null || amount.compareTo(prepayCustomer.getSurplus()) >= 0) {
return Result.failed("退费金额不能大于账户余额");
}