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:
parent
6ed966a307
commit
2a366b9c52
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue