IDEMPIERE-1636 ImportBankStatement process uses wrong order in sql / peer review - order columns must be in sync with the grouping logic below

This commit is contained in:
Carlos Ruiz 2013-12-17 12:30:57 -05:00
parent 6ed966a307
commit 2a366b9c52
1 changed files with 1 additions and 1 deletions

View File

@ -364,7 +364,7 @@ public class ImportBankStatement extends SvrProcess
//Import Bank Statement
sql = new StringBuilder("SELECT * FROM I_BankStatement")
.append(" WHERE I_IsImported='N'")
.append(" ORDER BY C_BankAccount_ID, Name, StatementDate, ReferenceNo");
.append(" ORDER BY C_BankAccount_ID, Name, StatementDate, EftStatementReference");
MBankStatement statement = null;
MBankAccount account = null;