IDEMPIERE-448 Add CopyFrom on Bank Statement / add copying description for non-payment lines

This commit is contained in:
Carlos Ruiz 2016-11-06 11:00:31 +01:00
parent 396471ba07
commit 59ce34cedb
1 changed files with 1 additions and 0 deletions

View File

@ -105,6 +105,7 @@ public class CopyFromBankStmt extends SvrProcess
toLine.setTrxAmt(fromLine.getTrxAmt()); toLine.setTrxAmt(fromLine.getTrxAmt());
toLine.setChargeAmt(fromLine.getChargeAmt()); toLine.setChargeAmt(fromLine.getChargeAmt());
toLine.setInterestAmt(fromLine.getInterestAmt()); toLine.setInterestAmt(fromLine.getInterestAmt());
toLine.setDescription(fromLine.getDescription());
toLine.saveEx(); toLine.saveEx();
no++; no++;
} }