currency rates

This commit is contained in:
2025-11-13 21:51:43 +05:00
parent b67fd61bf8
commit 3ea35f6bca
11 changed files with 368 additions and 32 deletions

View File

@@ -2,9 +2,9 @@
namespace App\Modules\VisaMasterPaymentOrder\Filament\Actions;
use App\Modules\CurrencyRate\Models\CurrencyRate;
use App\Modules\VisaMasterPaymentOrder\Models\VisaMasterPaymentOrder;
use Filament\Actions\Action;
use Filament\Forms\Components\TextInput;
class PayVisaMasterPaymentAction
{
@@ -15,16 +15,16 @@ class PayVisaMasterPaymentAction
->icon('heroicon-o-credit-card')
->modal()
->schema(function () {
// $usd_to_tmt = floatval(CurrencyRate::where('currency_from', 'USD')->where('currency_to', 'TMT')->first('value')?->value);
$usd_to_tmt = floatval(CurrencyRate::where('currency_from', 'USD')->where('currency_to', 'TMT')->first('value')?->value);
// $payment_warning_text = VisaMasterSettings::where('name', 'payment_warning_text')->first();
// if (! $usd_to_tmt || ! $payment_warning_text) {
// return [];
// }
// $max_value = number_format($usd_to_tmt * 250, 2);
// return [
// Section::make('Customer Information')
// ->schema([
@@ -38,48 +38,48 @@ class PayVisaMasterPaymentAction
// ->extraAttributes(['class' => 'uppercase tracking-wide font-bold text-xs'])
// ->label(__('GBÜS tutumy: 3 TMT')),
// ])
// Text::make(__('Töleg aý'), 'month')
// ->fullWidth()
// ->readonly()
// ->default(today()->translatedFormat('F')),
// Text::make(sprintf('%s (%s)', __('Töleg möçberi'), __('TMT')), 'payment_amount')
// ->fullWidth()
// ->required()
// ->rules('required', 'numeric', 'max:'.$max_value)
// ->help("Iň ýokary möçberi: {$max_value} TMT"),
// Text::make(__('USD ekwalendi'), 'usd_rate')
// ->fullWidth()
// ->readonly()
// ->dependsOn('payment_amount', function (Text $field, NovaRequest $request, FormData $formData) use ($usd_to_tmt) {
// $payment_amount = $formData->get('payment_amount');
// if ($payment_amount) {
// $field->setValue(number_format($payment_amount / $usd_to_tmt, 2, '.', ''));
// } else {
// $field->setValue('');
// }
// }),
// Hidden::make('usd_payment')
// ->dependsOn('payment_amount', function (Hidden $field, NovaRequest $request, FormData $formData) use ($usd_to_tmt) {
// $payment_amount = $formData->get('payment_amount');
// if ($payment_amount) {
// $field->setValue(number_format($payment_amount / $usd_to_tmt, 2, '.', ''));
// } else {
// $field->setValue('');
// }
// }),
// Text::make(__('Jemi (TMT)'), 'total_amount')
// ->fullWidth()
// ->readonly()
// ->dependsOn('payment_amount', function ($field, $request, $formData) {
// $payment_amount = $formData->get('payment_amount');
// if ($payment_amount) {
// $field->setValue(
// floatval(number_format($payment_amount, 2, '.', '')) + 23
@@ -88,7 +88,7 @@ class PayVisaMasterPaymentAction
// $field->setValue('');
// }
// }),
// Heading::make(Blade::render(<<<HTML
// <div class="w-full border text-left appearance-none rounded text-sm font-bold focus:outline-none focus:ring ring-primary-200 dark:ring-gray-600 relative inline-flex items-center justify-center shadow h-9 px-3 bg-primary-500 border-primary-500 text-white dark:text-gray-900">
// <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" class="stroke-current shrink-0 w-6 h-6 mr-2">
@@ -105,4 +105,4 @@ class PayVisaMasterPaymentAction
})
->modalFooterActions([]);
}
}
}