forked from morrning/hesabixCore
bug fix in wallet deposit
This commit is contained in:
parent
ddbbf1f102
commit
82740193cb
|
@ -592,6 +592,7 @@ class AdminController extends AbstractController
|
|||
$temp['cardPan'] = $item->getCardPan();
|
||||
$temp['refID'] = $item->getRefID();
|
||||
$temp['shaba'] = $item->getShaba();
|
||||
$temp['amount'] = $item->getAmount();
|
||||
$temp['dateSubmit'] = $jdate->jdate('Y/n/d H:i', $item->getDateSubmit());
|
||||
$temp['gatePay'] = $item->getGatePay();
|
||||
$resp[] = $temp;
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
<td>{{ item.totalIncome }}</td>
|
||||
<td>{{ calculateStatus(item) }}</td>
|
||||
<td>
|
||||
<v-tooltip v-if="calculateStatus(item) === 'در صف تسویه'" location="top">
|
||||
<v-tooltip v-if="calculateStatus(item) === 'در انتظار پرداخت'" location="top">
|
||||
<template v-slot:activator="{ props }">
|
||||
<v-btn variant="text" icon v-bind="props" @click="openTransactionDialog(item)">
|
||||
<v-icon>mdi-cash-register</v-icon>
|
||||
|
@ -80,6 +80,7 @@
|
|||
<td>{{ item.bidName }}</td>
|
||||
<td>{{ item.bankAcName }}</td>
|
||||
<td>{{ item.type === 'pay' ? 'پرداخت' : 'دریافت' }}</td>
|
||||
<td>{{ $filters.formatNumber(item.amount) }}</td>
|
||||
<td>{{ item.gatePay }}</td>
|
||||
<td>{{ item.refID }}</td>
|
||||
<td>{{ item.shaba }}</td>
|
||||
|
@ -186,6 +187,7 @@ export default {
|
|||
{ title: "کسبوکار", key: "bidName", sortable: false, align: 'center' },
|
||||
{ title: "بانک", key: "bankAcName", sortable: false, align: 'center' },
|
||||
{ title: "نوع", key: "type", sortable: false, align: 'center' },
|
||||
{ title: "مبلغ", key: "amount", sortable: false, align: 'center' },
|
||||
{ title: "درگاه پرداخت", key: "gatePay", sortable: false, align: 'center' },
|
||||
{ title: "شناسه تراکنش", key: "refID", sortable: false, align: 'center' },
|
||||
{ title: "شبا", key: "shaba", sortable: false, align: 'center' },
|
||||
|
|
Loading…
Reference in a new issue