order invoice fix with trans.

This commit is contained in:
merdan 2020-01-08 17:23:31 +05:00
parent 69d9bae0d3
commit 4450e58783
4 changed files with 4 additions and 5 deletions

View File

@ -11,7 +11,7 @@ if (!function_exists('money')) {
function money($amount, \App\Models\Currency $currency = null)
{
if(!$currency){
return number_format($amount,2,'.',',').' tmt';
return number_format($amount,2,'.',',').' TMT';
}
return $currency->symbol_left . number_format($amount, $currency->decimal_place, $currency->decimal_point,
$currency->thousand_point) . $currency->symbol_right;

View File

@ -851,7 +851,6 @@ class EventCheckoutController extends Controller
'order_reference' => $order->order_reference,
]);
}
/**

View File

@ -14,8 +14,8 @@ return [
'below_order_details_header' => '',
'below_payment_information_header' => '',
'below_tickets' => 'Выберите количество билетов и нажмите «зарегистрироваться». На следующем экране вы будете платить за них.',
'booking_fee' => 'Плата за бронирование',
'booking_fees' => 'Стоимость бронирования',
'booking_fee' => 'Плата за услуги',
'booking_fees' => 'Стоимость услуги',
'card_number' => 'Номер карты',
'checkout_submit' => 'Оплатить',
'checkout_order' => 'Продолжить к оплате',

View File

@ -69,7 +69,7 @@
@endif
<h3>
<h3 class="mt-5">
@lang("Public_ViewEvent.order_items")
</h3>