Skip to content

Commit

Permalink
adeos#26 [Bug Report] The Financial Statement Report shows the credit…
Browse files Browse the repository at this point in the history
…s in the beginning balance line incorrectly e-Evolution/adeos#26

adempiere#4296 [Bug Report] The Financial Statement Report shows the credits in the beginning balance line incorrectly adempiere#4296
- Solve issue with sign to debit and credit
  • Loading branch information
e-Evolution committed Mar 14, 2024
1 parent cf87452 commit fb3f6f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/src/org/compiere/report/FinStatement.java
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ private void createBalanceLine()
.append("INNER JOIN C_Element e ON (ev.C_Element_ID=e.C_Element_ID) ")
.append("LEFT JOIN (SELECT ")
.append("Account_ID,")
.append("SUM(AcctBalance(Account_ID, AmtAcctDr, 0)) AmtAcctDr,")
.append("SUM(AcctBalance(fa.Account_ID, AmtAcctCr, 0)) AmtAcctCr,")
.append("SUM(AmtAcctDr) AmtAcctDr,")
.append("SUM(AmtAcctCr) AmtAcctCr,")
.append("SUM(AcctBalance(fa.Account_ID, fa.AmtAcctDr, fa.AmtAcctCr)) Balance, ")
.append("SUM(AcctBalance(Account_ID, Qty, 0)) Qty ")
.append("FROM Fact_Acct fa ")
Expand Down

0 comments on commit fb3f6f3

Please sign in to comment.