Fiw operation column name.
This commit is contained in:
parent
e433aed773
commit
f75e65a3de
@ -40,7 +40,7 @@
|
||||
|
||||
<tr id="{{ operation.id }}" class="form-inline"
|
||||
ng-class="{stroke: operation.canceled, italic: !operation.confirmed,
|
||||
warning: operation.sold < 0, danger: operation.sold < operationsCtrl.account.authorized_overdraft}"
|
||||
warning: operation.balance < 0, danger: operation.balance < operationsCtrl.account.authorized_overdraft}"
|
||||
ng-repeat="operation in operationsCtrl.operations | orderBy:'+':true">
|
||||
<td>
|
||||
{{ operation.operation_date | date:"yyyy-MM-dd" }}
|
||||
@ -54,8 +54,8 @@
|
||||
{{ operation.value | currency:"€" }}
|
||||
</td>
|
||||
|
||||
<td ng-class="{'text-warning': operation.sold < 0, 'text-danger':
|
||||
operation.sold < operationsCtrl.account.authorized_overdraft}">
|
||||
<td ng-class="{'text-warning': operation.balance < 0, 'text-danger':
|
||||
operation.balance < operationsCtrl.account.authorized_overdraft}">
|
||||
{{ operation.balance | currency:"€" }}
|
||||
</td>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user