mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 11:17:34 -04:00 
			
		
		
		
	checkout
This commit is contained in:
		
							parent
							
								
									6f91a028f5
								
							
						
					
					
						commit
						4f9d9c106c
					
				| @ -163,7 +163,7 @@ class CheckoutComPaymentDriver extends BaseDriver | |||||||
|         $state = array_merge($state, $request->all()); |         $state = array_merge($state, $request->all()); | ||||||
|         $state['store_card'] = boolval($state['store_card']); |         $state['store_card'] = boolval($state['store_card']); | ||||||
| 
 | 
 | ||||||
|         if ($request->has('token') && ! is_null($request->token)) { |         if ($request->has('token') && !is_null($request->token)) { | ||||||
|             $method = new IdSource($state['token']); |             $method = new IdSource($state['token']); | ||||||
|             $payment = new CheckoutPayment($method, $state['currency']); |             $payment = new CheckoutPayment($method, $state['currency']); | ||||||
|             $payment->amount = $state['value']; |             $payment->amount = $state['value']; | ||||||
| @ -355,6 +355,9 @@ class CheckoutComPaymentDriver extends BaseDriver | |||||||
| 
 | 
 | ||||||
|     public function saveCard($state) |     public function saveCard($state) | ||||||
|     { |     { | ||||||
|  |         // TODO: @wip Fix card tokenization.
 | ||||||
|  |         return; | ||||||
|  | 
 | ||||||
|         //some cards just can't be tokenized....
 |         //some cards just can't be tokenized....
 | ||||||
|         if(!$state['payment_response']->source['id']) |         if(!$state['payment_response']->source['id']) | ||||||
|             return; |             return; | ||||||
|  | |||||||
| @ -3286,4 +3286,5 @@ return [ | |||||||
|     'credit_subject' => 'New credit :number from :account', |     'credit_subject' => 'New credit :number from :account', | ||||||
|     'credit_message' => 'To view your credit for :amount, click the link below.', |     'credit_message' => 'To view your credit for :amount, click the link below.', | ||||||
| 
 | 
 | ||||||
|  |     'store_for_future_use' => 'Store for future use', | ||||||
| ]; | ]; | ||||||
|  | |||||||
| @ -0,0 +1,8 @@ | |||||||
|  | <div class="px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 flex items-center"> | ||||||
|  |     <dt class="text-sm leading-5 font-medium text-gray-500 mr-4"> | ||||||
|  |         {{ $title }} | ||||||
|  |     </dt> | ||||||
|  |     <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> | ||||||
|  |         {{ $slot }} | ||||||
|  |     </dd> | ||||||
|  | </div> | ||||||
| @ -1,17 +1,14 @@ | |||||||
| @extends('portal.ninja2020.layout.app') | @extends('portal.ninja2020.layout.payments', ['gateway_title' => 'Checkout.com']) | ||||||
| @section('meta_title', ctrans('texts.checkout_com')) |  | ||||||
| 
 | 
 | ||||||
| @push('head') | @section('payment-head') | ||||||
|     <meta name="public-key" content="{{ $gateway->getPublishableKey() }}"> |     <meta name="public-key" content="{{ $gateway->getPublishableKey() }}"> | ||||||
|     <meta name="customer-email" content="{{ $customer_email }}"> |     <meta name="customer-email" content="{{ $customer_email }}"> | ||||||
|     <meta name="value" content="{{ $value }}"> |     <meta name="value" content="{{ $value }}"> | ||||||
|     <meta name="currency" content="{{ $currency }}"> |     <meta name="currency" content="{{ $currency }}"> | ||||||
|     <meta name="reference" content="{{ $payment_hash }}"> |     <meta name="reference" content="{{ $payment_hash }}"> | ||||||
|  | @endsection | ||||||
| 
 | 
 | ||||||
|     <script src="{{ asset('js/clients/payments/checkout.com.js') }}"></script> | @section('payment-content') | ||||||
| @endpush |  | ||||||
| 
 |  | ||||||
| @section('body') |  | ||||||
|     <form action="{{ route('client.payments.response') }}" method="post" id="server-response"> |     <form action="{{ route('client.payments.response') }}" method="post" id="server-response"> | ||||||
|         @csrf |         @csrf | ||||||
|         <input type="hidden" name="gateway_response"> |         <input type="hidden" name="gateway_response"> | ||||||
| @ -23,106 +20,30 @@ | |||||||
|         <input type="hidden" name="value" value="{{ $value }}"> |         <input type="hidden" name="value" value="{{ $value }}"> | ||||||
|         <input type="hidden" name="raw_value" value="{{ $raw_value }}"> |         <input type="hidden" name="raw_value" value="{{ $raw_value }}"> | ||||||
|         <input type="hidden" name="currency" value="{{ $currency }}"> |         <input type="hidden" name="currency" value="{{ $currency }}"> | ||||||
|  |          | ||||||
|         @isset($token) |         @isset($token) | ||||||
|             <input type="hidden" name="token" value="{{ $token->meta->id }}"> |             <input type="hidden" name="token" value="{{ $token->meta->id }}"> | ||||||
|         @endisset |         @endisset | ||||||
|     </form> |     </form> | ||||||
| 
 | 
 | ||||||
|     <div class="container mx-auto"> |     @component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.payment_type')]) | ||||||
|         <div class="grid grid-cols-6 gap-4"> |         {{ ctrans('texts.credit_card') }} (Checkout.com) | ||||||
|             <div class="col-span-6 md:col-start-2 md:col-span-4"> |     @endcomponent | ||||||
|                 <div class="alert alert-failure mb-4" hidden id="errors"></div> | 
 | ||||||
|                 <div class="bg-white shadow overflow-hidden sm:rounded-lg"> |     @include('portal.ninja2020.gateways.includes.payment_details') | ||||||
|                     <div class="px-4 py-5 border-b border-gray-200 sm:px-6"> |     @include('portal.ninja2020.gateways.includes.store_for_future') | ||||||
|                         <h3 class="text-lg leading-6 font-medium text-gray-900"> | 
 | ||||||
|                             {{ ctrans('texts.pay_now') }} |     @component('portal.ninja2020.components.general.card-element', ['title' => '']) | ||||||
|                         </h3> |         <form class="payment-form" method="POST" action="#"> | ||||||
|                         <p class="mt-1 max-w-2xl text-sm leading-5 text-gray-500"> |  | ||||||
|                             {{ ctrans('texts.complete_your_payment') }} |  | ||||||
|                         </p> |  | ||||||
|                     </div> |  | ||||||
|                     <div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 flex items-center"> |  | ||||||
|                         <dt class="text-sm leading-5 font-medium text-gray-500 mr-4"> |  | ||||||
|                             {{ ctrans('texts.payment_type') }} |  | ||||||
|                         </dt> |  | ||||||
|                         <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |  | ||||||
|                             {{ ctrans('texts.checkout_com') }} ({{ ctrans('texts.credit_card') }}) |  | ||||||
|                         </dd> |  | ||||||
|                     </div> |  | ||||||
|                     <div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 flex items-center"> |  | ||||||
|                         <dt class="text-sm leading-5 font-medium text-gray-500"> |  | ||||||
|                             {{ ctrans('texts.subtotal') }} |  | ||||||
|                         </dt> |  | ||||||
|                         <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |  | ||||||
|                             {{ App\Utils\Number::formatMoney($total['invoice_totals'], $client) }} |  | ||||||
|                         </dd> |  | ||||||
|                         <dt class="text-sm leading-5 font-medium text-gray-500"> |  | ||||||
|                             {{ ctrans('texts.gateway_fees') }} |  | ||||||
|                         </dt> |  | ||||||
|                         <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |  | ||||||
|                             {{ App\Utils\Number::formatMoney($total['fee_total'], $client) }} |  | ||||||
|                         </dd> |  | ||||||
|                         <dt class="text-sm leading-5 font-medium text-gray-500 mr-4"> |  | ||||||
|                             {{ ctrans('texts.amount') }} |  | ||||||
|                         </dt> |  | ||||||
|                         <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |  | ||||||
|                             <span class="font-bold">{{ App\Utils\Number::formatMoney($total['amount_with_fee'], $client) }}</span> |  | ||||||
|                         </dd> |  | ||||||
|                     </div> |  | ||||||
|                     @isset($token) |  | ||||||
|                         <div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |  | ||||||
|                             <dt class="text-sm leading-5 font-medium text-gray-500"> |  | ||||||
|                                 {{ ctrans('texts.card_number') }} |  | ||||||
|                             </dt> |  | ||||||
|                             <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |  | ||||||
|                                 **** {{ ucfirst($token->meta->last4) }} |  | ||||||
|                             </dd> |  | ||||||
|                         </div> |  | ||||||
|                         <div class="bg-white px-4 py-5 flex justify-end"> |  | ||||||
|                             <button class="button button-primary bg-primary" onclick="document.getElementById('server-response').submit()"> |  | ||||||
|                                 {{ ctrans('texts.pay_now') }} |  | ||||||
|                             </button> |  | ||||||
|                         </div> |  | ||||||
|                     @else |  | ||||||
|                         <div class="{{ ($gateway->company_gateway->token_billing == 'optin' || $gateway->company_gateway->token_billing == 'optout') ? 'sm:grid' : 'hidden' }} bg-gray-50 px-4 py-5 sm:grid-cols-3 sm:gap-4 sm:px-6"> |  | ||||||
|                             <dt class="text-sm leading-5 font-medium text-gray-500"> |  | ||||||
|                                 {{ ctrans('texts.token_billing_checkbox') }} |  | ||||||
|                             </dt> |  | ||||||
|                             <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |  | ||||||
|                                 <label class="mr-4"> |  | ||||||
|                                     <input  |  | ||||||
|                                         type="radio" |  | ||||||
|                                         class="form-radio cursor-pointer"  |  | ||||||
|                                         name="token-billing-checkbox"  |  | ||||||
|                                         id="proxy_is_default" |  | ||||||
|                                         value="true" |  | ||||||
|                                         {{ ($gateway->company_gateway->token_billing == 'always' || $gateway->company_gateway->token_billing == 'optout') ? 'checked' : '' }} /> |  | ||||||
|                                     <span class="ml-1 cursor-pointer">{{ ctrans('texts.yes') }}</span> |  | ||||||
|                                 </label> |  | ||||||
|                                 <label> |  | ||||||
|                                     <input  |  | ||||||
|                                         type="radio"  |  | ||||||
|                                         class="form-radio cursor-pointer"  |  | ||||||
|                                         name="token-billing-checkbox"  |  | ||||||
|                                         id="proxy_is_default"  |  | ||||||
|                                         value="false" |  | ||||||
|                                         {{ ($gateway->company_gateway->token_billing == 'off' || $gateway->company_gateway->token_billing == 'optin') ? 'checked' : '' }} /> |  | ||||||
|                                     <span class="ml-1 cursor-pointer">{{ ctrans('texts.no') }}</span> |  | ||||||
|                                 </label> |  | ||||||
|                             </dd> |  | ||||||
|                         </div> |  | ||||||
|                         <div class="bg-white px-4 py-5 flex justify-end"> |  | ||||||
|                             <form class="payment-form" method="POST" action="https://merchant.com/successUrl"> |  | ||||||
|             @if(app()->environment() == 'production') |             @if(app()->environment() == 'production') | ||||||
|                 <script async src="https://cdn.checkout.com/js/checkout.js"></script> |                 <script async src="https://cdn.checkout.com/js/checkout.js"></script> | ||||||
|             @else |             @else | ||||||
|                 <script async src="https://cdn.checkout.com/sandbox/js/checkout.js"></script> |                 <script async src="https://cdn.checkout.com/sandbox/js/checkout.js"></script> | ||||||
|             @endif |             @endif | ||||||
|         </form> |         </form> | ||||||
|                         </div> |     @endcomponent | ||||||
|                     @endisset | @endsection | ||||||
|                 </div> | 
 | ||||||
|             </div> | @section('payment-footer') | ||||||
|         </div> |     <script src="{{ asset('js/clients/payments/checkout.com.js') }}"></script> | ||||||
|     </div> |  | ||||||
| @endsection | @endsection | ||||||
| @ -0,0 +1,128 @@ | |||||||
|  | @extends('portal.ninja2020.layout.app') | ||||||
|  | @section('meta_title', ctrans('texts.checkout_com')) | ||||||
|  | 
 | ||||||
|  | @push('head') | ||||||
|  |     <meta name="public-key" content="{{ $gateway->getPublishableKey() }}"> | ||||||
|  |     <meta name="customer-email" content="{{ $customer_email }}"> | ||||||
|  |     <meta name="value" content="{{ $value }}"> | ||||||
|  |     <meta name="currency" content="{{ $currency }}"> | ||||||
|  |     <meta name="reference" content="{{ $payment_hash }}"> | ||||||
|  | 
 | ||||||
|  |     <script src="{{ asset('js/clients/payments/checkout.com.js') }}"></script> | ||||||
|  | @endpush | ||||||
|  | 
 | ||||||
|  | @section('body') | ||||||
|  |     <form action="{{ route('client.payments.response') }}" method="post" id="server-response"> | ||||||
|  |         @csrf | ||||||
|  |         <input type="hidden" name="gateway_response"> | ||||||
|  |         <input type="hidden" name="store_card"> | ||||||
|  |         <input type="hidden" name="reference" value="{{ $payment_hash }}"> | ||||||
|  |         <input type="hidden" name="payment_hash" value="{{ $payment_hash }}"> | ||||||
|  |         <input type="hidden" name="company_gateway_id" value="{{ $company_gateway->id }}"> | ||||||
|  |         <input type="hidden" name="payment_method_id" value="{{ $payment_method_id }}"> | ||||||
|  |         <input type="hidden" name="value" value="{{ $value }}"> | ||||||
|  |         <input type="hidden" name="raw_value" value="{{ $raw_value }}"> | ||||||
|  |         <input type="hidden" name="currency" value="{{ $currency }}"> | ||||||
|  |         @isset($token) | ||||||
|  |             <input type="hidden" name="token" value="{{ $token->meta->id }}"> | ||||||
|  |         @endisset | ||||||
|  |     </form> | ||||||
|  | 
 | ||||||
|  |     <div class="container mx-auto"> | ||||||
|  |         <div class="grid grid-cols-6 gap-4"> | ||||||
|  |             <div class="col-span-6 md:col-start-2 md:col-span-4"> | ||||||
|  |                 <div class="alert alert-failure mb-4" hidden id="errors"></div> | ||||||
|  |                 <div class="bg-white shadow overflow-hidden sm:rounded-lg"> | ||||||
|  |                     <div class="px-4 py-5 border-b border-gray-200 sm:px-6"> | ||||||
|  |                         <h3 class="text-lg leading-6 font-medium text-gray-900"> | ||||||
|  |                             {{ ctrans('texts.pay_now') }} | ||||||
|  |                         </h3> | ||||||
|  |                         <p class="mt-1 max-w-2xl text-sm leading-5 text-gray-500"> | ||||||
|  |                             {{ ctrans('texts.complete_your_payment') }} | ||||||
|  |                         </p> | ||||||
|  |                     </div> | ||||||
|  |                     <div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 flex items-center"> | ||||||
|  |                         <dt class="text-sm leading-5 font-medium text-gray-500 mr-4"> | ||||||
|  |                             {{ ctrans('texts.payment_type') }} | ||||||
|  |                         </dt> | ||||||
|  |                         <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> | ||||||
|  |                             {{ ctrans('texts.checkout_com') }} ({{ ctrans('texts.credit_card') }}) | ||||||
|  |                         </dd> | ||||||
|  |                     </div> | ||||||
|  |                     <div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 flex items-center"> | ||||||
|  |                         <dt class="text-sm leading-5 font-medium text-gray-500"> | ||||||
|  |                             {{ ctrans('texts.subtotal') }} | ||||||
|  |                         </dt> | ||||||
|  |                         <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> | ||||||
|  |                             {{ App\Utils\Number::formatMoney($total['invoice_totals'], $client) }} | ||||||
|  |                         </dd> | ||||||
|  |                         <dt class="text-sm leading-5 font-medium text-gray-500"> | ||||||
|  |                             {{ ctrans('texts.gateway_fees') }} | ||||||
|  |                         </dt> | ||||||
|  |                         <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> | ||||||
|  |                             {{ App\Utils\Number::formatMoney($total['fee_total'], $client) }} | ||||||
|  |                         </dd> | ||||||
|  |                         <dt class="text-sm leading-5 font-medium text-gray-500 mr-4"> | ||||||
|  |                             {{ ctrans('texts.amount') }} | ||||||
|  |                         </dt> | ||||||
|  |                         <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> | ||||||
|  |                             <span class="font-bold">{{ App\Utils\Number::formatMoney($total['amount_with_fee'], $client) }}</span> | ||||||
|  |                         </dd> | ||||||
|  |                     </div> | ||||||
|  |                     @isset($token) | ||||||
|  |                         <div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> | ||||||
|  |                             <dt class="text-sm leading-5 font-medium text-gray-500"> | ||||||
|  |                                 {{ ctrans('texts.card_number') }} | ||||||
|  |                             </dt> | ||||||
|  |                             <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> | ||||||
|  |                                 **** {{ ucfirst($token->meta->last4) }} | ||||||
|  |                             </dd> | ||||||
|  |                         </div> | ||||||
|  |                         <div class="bg-white px-4 py-5 flex justify-end"> | ||||||
|  |                             <button class="button button-primary bg-primary" onclick="document.getElementById('server-response').submit()"> | ||||||
|  |                                 {{ ctrans('texts.pay_now') }} | ||||||
|  |                             </button> | ||||||
|  |                         </div> | ||||||
|  |                     @else | ||||||
|  |                         <div class="{{ ($gateway->company_gateway->token_billing == 'optin' || $gateway->company_gateway->token_billing == 'optout') ? 'sm:grid' : 'hidden' }} bg-gray-50 px-4 py-5 sm:grid-cols-3 sm:gap-4 sm:px-6"> | ||||||
|  |                             <dt class="text-sm leading-5 font-medium text-gray-500"> | ||||||
|  |                                 {{ ctrans('texts.token_billing_checkbox') }} | ||||||
|  |                             </dt> | ||||||
|  |                             <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> | ||||||
|  |                                 <label class="mr-4"> | ||||||
|  |                                     <input  | ||||||
|  |                                         type="radio" | ||||||
|  |                                         class="form-radio cursor-pointer"  | ||||||
|  |                                         name="token-billing-checkbox"  | ||||||
|  |                                         id="proxy_is_default" | ||||||
|  |                                         value="true" | ||||||
|  |                                         {{ ($gateway->company_gateway->token_billing == 'always' || $gateway->company_gateway->token_billing == 'optout') ? 'checked' : '' }} /> | ||||||
|  |                                     <span class="ml-1 cursor-pointer">{{ ctrans('texts.yes') }}</span> | ||||||
|  |                                 </label> | ||||||
|  |                                 <label> | ||||||
|  |                                     <input  | ||||||
|  |                                         type="radio"  | ||||||
|  |                                         class="form-radio cursor-pointer"  | ||||||
|  |                                         name="token-billing-checkbox"  | ||||||
|  |                                         id="proxy_is_default"  | ||||||
|  |                                         value="false" | ||||||
|  |                                         {{ ($gateway->company_gateway->token_billing == 'off' || $gateway->company_gateway->token_billing == 'optin') ? 'checked' : '' }} /> | ||||||
|  |                                     <span class="ml-1 cursor-pointer">{{ ctrans('texts.no') }}</span> | ||||||
|  |                                 </label> | ||||||
|  |                             </dd> | ||||||
|  |                         </div> | ||||||
|  |                         <div class="bg-white px-4 py-5 flex justify-end"> | ||||||
|  |                             <form class="payment-form" method="POST" action="https://merchant.com/successUrl"> | ||||||
|  |                                 @if(app()->environment() == 'production') | ||||||
|  |                                     <script async src="https://cdn.checkout.com/js/checkout.js"></script> | ||||||
|  |                                 @else | ||||||
|  |                                     <script async src="https://cdn.checkout.com/sandbox/js/checkout.js"></script> | ||||||
|  |                                 @endif | ||||||
|  |                             </form> | ||||||
|  |                         </div> | ||||||
|  |                     @endisset | ||||||
|  |                 </div> | ||||||
|  |             </div> | ||||||
|  |         </div> | ||||||
|  |     </div> | ||||||
|  | @endsection | ||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user