|
@@ -100,7 +100,9 @@ public class InvAccountExcelServiceImpl extends ServiceImpl<InvAccountExcelMappe
|
|
|
if (record.getPayoutAmount() == null) {
|
|
if (record.getPayoutAmount() == null) {
|
|
|
record.setPayoutAmount("0");
|
|
record.setPayoutAmount("0");
|
|
|
}
|
|
}
|
|
|
- if (record.getPayoutAmount().equals(record.getApplyAmount())) {
|
|
|
|
|
|
|
+ double applyAmount = Double.parseDouble(record.getApplyAmount());
|
|
|
|
|
+ double payoutAmount = Double.parseDouble(record.getPayoutAmount());
|
|
|
|
|
+ if (applyAmount == payoutAmount) {
|
|
|
record.setTransferFlag("0");
|
|
record.setTransferFlag("0");
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|