Commit 66809e94 authored by neo's avatar neo

[bugfix] use wrong debitbal to add

parent 7dbf7450
......@@ -441,7 +441,7 @@ public class DataImportServiceImpl {
if (items.size() > 0) {
items.forEach(item -> {
if (item != null) {
item.setDebitBal(item.getDebitNet().add(v.debit));
item.setDebitBal(item.getDebitBal().add(v.debit));
item.setCreditBal(item.getCreditBal().add(v.credit));
if (v.direction == 0) {
item.setEndDebitBal(item.getEndDebitBal().add(value));
......
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