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