Skip to content
Snippets Groups Projects
Commit 91f811a8 authored by Raditss's avatar Raditss
Browse files

fix transaction bug

parent eb0b7cfd
Branches
Tags
1 merge request!1soap service 85%
Pipeline #59429 canceled with stages
......@@ -30,7 +30,7 @@ public class transaction_model {
transaction_entity[] transactions = new transaction_entity[100];
int i = 0;
while(rs.next()){
transactions[i] = new transaction_entity(rs.getInt(1), rs.getInt(2), rs.getString(3), rs.getString(4));
transactions[i] = new transaction_entity(rs.getInt(2), rs.getInt(3), rs.getString(4), rs.getString(5));
i++;
}
return transactions;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment