1008183 C_BankAccount.CurrentBalance is updated when Drafted Bank Statement is voided (IDEMPIERE-3414)
This commit is contained in:
parent
5625e27627
commit
680cf7f5a7
|
@ -453,15 +453,17 @@ public class MBankStatement extends X_C_BankStatement implements DocAction
|
|||
MPeriod.testPeriodOpen(getCtx(), getStatementDate(), MDocType.DOCBASETYPE_BankStatement, getAD_Org_ID());
|
||||
MFactAcct.deleteEx(Table_ID, getC_BankStatement_ID(), get_TrxName());
|
||||
}
|
||||
|
||||
//Added Lines by AZ Goodwill
|
||||
//Restore Bank Account Balance
|
||||
MBankAccount ba = getBankAccount();
|
||||
ba.load(get_TrxName());
|
||||
ba.setCurrentBalance(ba.getCurrentBalance().subtract(getStatementDifference()));
|
||||
ba.saveEx();
|
||||
//End of Added Lines
|
||||
|
||||
|
||||
if (isProcessed()) {
|
||||
//Added Lines by AZ Goodwill
|
||||
//Restore Bank Account Balance
|
||||
MBankAccount ba = getBankAccount();
|
||||
ba.load(get_TrxName());
|
||||
ba.setCurrentBalance(ba.getCurrentBalance().subtract(getStatementDifference()));
|
||||
ba.saveEx();
|
||||
//End of Added Lines
|
||||
}
|
||||
|
||||
// Set lines to 0
|
||||
MBankStatementLine[] lines = getLines(true);
|
||||
for (int i = 0; i < lines.length; i++)
|
||||
|
|
Loading…
Reference in New Issue