update transaction
This commit is contained in:
@@ -75,11 +75,6 @@ class DownloadCardRequisite extends Action
|
|||||||
end_date: $date,
|
end_date: $date,
|
||||||
);
|
);
|
||||||
|
|
||||||
info([
|
|
||||||
'isJson' => Str::isJson($response),
|
|
||||||
'decoded' => json_decode($response),
|
|
||||||
]);
|
|
||||||
|
|
||||||
return Str::isJson($response)
|
return Str::isJson($response)
|
||||||
? json_decode($response)
|
? json_decode($response)
|
||||||
: emptyClass(errCode: 1, message: 'Connection issue to VP');
|
: emptyClass(errCode: 1, message: 'Connection issue to VP');
|
||||||
|
|||||||
2
lang/vendor/nova/tk.json
vendored
2
lang/vendor/nova/tk.json
vendored
@@ -340,7 +340,7 @@
|
|||||||
"Restore Selected": "Saýlananlary dikelt",
|
"Restore Selected": "Saýlananlary dikelt",
|
||||||
"Reunion": "Reunion",
|
"Reunion": "Reunion",
|
||||||
"Romania": "Rumyniýa",
|
"Romania": "Rumyniýa",
|
||||||
"Run Action": "Hereket et",
|
"Run Action": "Dowam et",
|
||||||
"Russian Federation": "Russiýa Federasiýasy",
|
"Russian Federation": "Russiýa Federasiýasy",
|
||||||
"Rwanda": "Ruanda",
|
"Rwanda": "Ruanda",
|
||||||
"Saint Barthelemy": "Keramatly Bartelemi",
|
"Saint Barthelemy": "Keramatly Bartelemi",
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
<div class="section">
|
<div class="section">
|
||||||
<p>Sene: <strong>{{ now()->format('d.m.Y') }}</strong></p>
|
<p>Sene: <strong>{{ now()->format('d.m.Y') }}</strong></p>
|
||||||
<p>№ ---YOK--- belgili kart hasaby boýunça GÖÇÜRME</p>
|
<p>№ {{ $data->accountNumber }} belgili kart hasaby boýunça GÖÇÜRME</p>
|
||||||
<p>Müşderiniň FAAa: <strong>{{ $data->clientName }}</strong></p>
|
<p>Müşderiniň FAAa: <strong>{{ $data->clientName }}</strong></p>
|
||||||
<p>{{ $data->fromDate }} - {{ $data->toDate }} aralygy üçin</p>
|
<p>{{ $data->fromDate }} - {{ $data->toDate }} aralygy üçin</p>
|
||||||
|
|
||||||
@@ -37,19 +37,20 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
@foreach($data->transactions as $transaction)
|
@foreach($data->transactions as $transaction)
|
||||||
@php
|
@php
|
||||||
$date = Carbon\Carbon::create($transaction->trandate);
|
$operdate = Carbon\Carbon::create($transaction->operdate);
|
||||||
|
$trandate = Carbon\Carbon::create($transaction->trandate);
|
||||||
@endphp
|
@endphp
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<th>{{ $date->format('d.m.Y') }}</th>
|
<th>{{ $operdate->format('d.m.Y') }}</th>
|
||||||
<th>{{ $date->format('d.m.Y') }} ---Sagady yok---</th>
|
<th>{{ $transaction->trantime }}, {{ $trandate->format('d.m.Y') }}</th>
|
||||||
<th>{{ $data->cardMaskNumber }}</th>
|
<th>{{ $data->cardnum }}</th>
|
||||||
<th>{{ $transaction->actionName }}</th>
|
<th>{{ $transaction->binfo }}</th>
|
||||||
<th>YOK</th>
|
<th>{{ $transaction->terminalLocation }}</th>
|
||||||
<th>{{ $transaction->currency }}</th>
|
<th>{{ $transaction->currCode }}</th>
|
||||||
<th>{{ $transaction->opersum }}</th>
|
<th>{{ $transaction->currOperSum }}</th>
|
||||||
<th>{{ $transaction->opersum }}</th>
|
<th>{{ $transaction->currOperSum }}({{ $transaction->sign }})</th>
|
||||||
<th>{{ $transaction->balsum }}</th>
|
<th>{{ $transaction->rest }}</th>
|
||||||
</tr>
|
</tr>
|
||||||
@endforeach
|
@endforeach
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|||||||
Reference in New Issue
Block a user