mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 14:11:54 +00:00
commit
79100c6984
@ -46,7 +46,7 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat="transaction in transactions">
|
||||
<tr ng-repeat="transaction in transactions.pageItems">
|
||||
<td>{{transaction.officeName}}</td>
|
||||
<td>{{transaction.transactionDate}}</td>
|
||||
<td>{{transaction.glAccountType.value}}</td>
|
||||
|
||||
@ -18,8 +18,8 @@
|
||||
scope.offices = data;
|
||||
});
|
||||
|
||||
var fetchFunction = function(offset, limit, transactionId, callback) {
|
||||
resourceFactory.journalEntriesResource.search({offset: offset, limit: limit, transactionId : transactionId} , callback);
|
||||
var fetchFunction = function(offset, limit, callback) {
|
||||
resourceFactory.journalEntriesResource.search({transactionId : scope.formData.transactionId , offset: offset, limit: limit} , callback);
|
||||
};
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user