fix deposit

This commit is contained in:
Rinat Arsaev 2019-02-21 18:48:07 +03:00
parent f0cb22ceba
commit ea2a4af0c8

View File

@ -2,9 +2,9 @@ table.table.table-striped
thead
tr
th ID выплаты
th Сумма вывода
th Сумма пополнения
th Комиссия
th Сумма списания
th Сумма зачисления
th Дата создания
th Статус
th
@ -13,7 +13,7 @@ table.table.table-striped
td {{deposit.id}}
td {{deposit.body.amount | kofRoubleCurrency}} {{deposit.body.currency | kofCurrency}}
td {{deposit.fee.amount | kofRoubleCurrency }} {{deposit.fee.currency | kofCurrency }}
td {{deposit.body.amount + deposit.fee.amount | kofRoubleCurrency}} {{deposit.body.currency | kofCurrency}}
td {{deposit.body.amount - deposit.fee.amount | kofRoubleCurrency}} {{deposit.body.currency | kofCurrency}}
td {{deposit.createdAt | date: "dd.MM.yyyy HH:mm:ss"}}
td
span.label.label-default([ngClass]="getLabelClass(deposit.status)") {{deposit.status | kofDepositStatus}}