54 lines
2.4 KiB
HTML
54 lines
2.4 KiB
HTML
<vn-crud-model
|
|
vn-id="model"
|
|
url="/client/api/clients/getTransactions"
|
|
link="{clientFk: $ctrl.$stateParams.id}"
|
|
limit="20"
|
|
data="transactions" auto-load="false">
|
|
</vn-crud-model>
|
|
<vn-vertical compact>
|
|
<vn-card pad-large>
|
|
<vn-vertical>
|
|
<vn-table model="model">
|
|
<vn-thead>
|
|
<vn-tr>
|
|
<vn-th>State</vn-th>
|
|
<vn-th field="id">Id</vn-th>
|
|
<vn-th field="amount" number>Amount</vn-th>
|
|
<vn-th field="created" default-order="DESC">Payed</vn-th>
|
|
<vn-th>Confirm</vn-th>
|
|
</vn-tr>
|
|
</vn-thead>
|
|
<vn-tbody>
|
|
<vn-tr ng-repeat="transaction in transactions">
|
|
<vn-td style="width: 3em; text-align: center">
|
|
<vn-icon
|
|
vn-tooltip="{{$ctrl.getFormattedMessage(transaction)}}"
|
|
ng-show="::((transaction.errorMessage || transaction.responseMessage) && !transaction.isConfirmed)"
|
|
icon="clear">
|
|
</vn-icon>
|
|
<vn-icon
|
|
vn-tooltip="Confirmed"
|
|
ng-show="::(transaction.isConfirmed)"
|
|
icon="check">
|
|
</vn-icon>
|
|
</vn-td>
|
|
<vn-td>{{::transaction.id}}</vn-td>
|
|
<vn-td number>{{::transaction.amount | currency: 'EUR':2}}</vn-td>
|
|
<vn-td>{{::transaction.created | dateTime:'dd/MM/yyyy'}}</vn-td>
|
|
<vn-td style="width: 3em; text-align: center">
|
|
<vn-icon-button
|
|
icon="done_all"
|
|
vn-acl="administrative"
|
|
vn-acl-action="remove"
|
|
vn-tooltip="Confirm transaction"
|
|
ng-show="::!transaction.isConfirmed"
|
|
ng-click="$ctrl.confirm(transaction)">
|
|
</vn-icon-button>
|
|
</vn-td>
|
|
</vn-tr>
|
|
</vn-tbody>
|
|
</vn-table>
|
|
</vn-vertical>
|
|
<vn-pagination model="model"></vn-pagination>
|
|
</vn-card>
|
|
</vn-vertical> |