mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:07:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			255 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			255 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<style type="text/css">
 | 
						|
    .payment_method_img_container{
 | 
						|
        width:37px;
 | 
						|
        text-align: center;
 | 
						|
        display:inline-block;
 | 
						|
        margin-right:10px;
 | 
						|
    }
 | 
						|
 | 
						|
    .payment_method{
 | 
						|
        margin:20px 0;
 | 
						|
    }
 | 
						|
 | 
						|
    .payment_method_number{
 | 
						|
        margin-right:10px;
 | 
						|
        width:65px;
 | 
						|
        display:inline-block;
 | 
						|
    }
 | 
						|
</style>
 | 
						|
 | 
						|
@if (!empty($braintreeClientToken))
 | 
						|
    <script type="text/javascript" src="https://js.braintreegateway.com/js/braintree-2.23.0.min.js"></script>
 | 
						|
    <script type="text/javascript" >
 | 
						|
        $(function() {
 | 
						|
            var paypalLink = $('#add-paypal'),
 | 
						|
                    paypalUrl = paypalLink.attr('href'),
 | 
						|
                    checkout;
 | 
						|
            braintree.setup("{{ $braintreeClientToken }}", "custom", {
 | 
						|
                onReady: function (integration) {
 | 
						|
                    checkout = integration;
 | 
						|
                },
 | 
						|
                paypal: {
 | 
						|
                    container: "paypal-container",
 | 
						|
                    singleUse: false,
 | 
						|
                    enableShippingAddress: false,
 | 
						|
                    enableBillingAddress: false,
 | 
						|
                    headless: true,
 | 
						|
                    locale: "{{$client->language?$client->language->locale:$client->account->language->locale}}"
 | 
						|
                },
 | 
						|
                dataCollector: {
 | 
						|
                    paypal: true
 | 
						|
                },
 | 
						|
                onPaymentMethodReceived: function (obj) {
 | 
						|
                    window.location.href = paypalUrl + '/' + encodeURIComponent(obj.nonce)
 | 
						|
                }
 | 
						|
            });
 | 
						|
            paypalLink.click(function(e){
 | 
						|
                e.preventDefault();
 | 
						|
                checkout.paypal.initAuthFlow();
 | 
						|
            })
 | 
						|
        });
 | 
						|
    </script>
 | 
						|
@elseif($gateway->gateway_id == GATEWAY_WEPAY && $gateway->getAchEnabled())
 | 
						|
    <script type="text/javascript" src="https://static.wepay.com/js/tokenization.v2.js"></script>
 | 
						|
    <script type="text/javascript">
 | 
						|
        $(function() {
 | 
						|
            WePay.set_endpoint('{{ WEPAY_ENVIRONMENT }}');
 | 
						|
            $('#add-ach').click(function(e) {
 | 
						|
                e.preventDefault();
 | 
						|
 | 
						|
                $('#wepay-error').remove();
 | 
						|
                var email = {!! json_encode($contact->email) !!} || prompt('{{ trans('texts.ach_email_prompt') }}');
 | 
						|
                if(!email)return;
 | 
						|
 | 
						|
                WePay.bank_account.create({
 | 
						|
                    'client_id': '{{ WEPAY_CLIENT_ID }}',
 | 
						|
                    'email':email
 | 
						|
                }, function(data){
 | 
						|
                    dataObj = JSON.parse(data);
 | 
						|
                    if(dataObj.bank_account_id) {
 | 
						|
                        window.location.href = $('#add-ach').attr('href') + '/' + dataObj.bank_account_id + "?details=" + encodeURIComponent(data);
 | 
						|
                    } else if(dataObj.error) {
 | 
						|
                        $('#add-ach').after($('<div id="wepay-error" style="margin-top:20px" class="alert alert-danger"></div>').text(dataObj.error_description));
 | 
						|
                    }
 | 
						|
                });
 | 
						|
            });
 | 
						|
        });
 | 
						|
    </script>
 | 
						|
@endif
 | 
						|
 | 
						|
@if ($invitationKey = $client->firstInvitationKey())
 | 
						|
    <h3>
 | 
						|
        {{ trans('texts.payment_methods') }}
 | 
						|
        @if ($account->getGatewayByType(GATEWAY_TYPE_CREDIT_CARD)
 | 
						|
            && $account->getGatewayByType(GATEWAY_TYPE_TOKEN)
 | 
						|
            && $account->token_billing_type_id != TOKEN_BILLING_DISABLED)
 | 
						|
              
 | 
						|
            {!! Button::success(strtoupper(trans(!empty($paymentMethods) && count($paymentMethods) ? 'texts.update_credit_card' : 'texts.add_credit_card')))->asLinkTo(URL::to("/payment/$invitationKey/credit_card?update=true")) !!}
 | 
						|
        @endif
 | 
						|
    </h3>
 | 
						|
 | 
						|
    @if(!empty($paymentMethods) && count($paymentMethods))
 | 
						|
        @foreach ($paymentMethods as $paymentMethod)
 | 
						|
        <div class="payment_method">
 | 
						|
                    <span class="payment_method_img_container">
 | 
						|
                        <img height="22" src="{{ $paymentMethod->imageUrl() }}"
 | 
						|
                            alt="{{ trans("texts.card_" . str_replace(' ', '', strtolower($paymentMethod->payment_type->name))) }}">
 | 
						|
                    </span>
 | 
						|
 | 
						|
            @if($paymentMethod->payment_type_id == PAYMENT_TYPE_ACH)
 | 
						|
                @if($paymentMethod->bank_name)
 | 
						|
                    {{ $paymentMethod->bank_name }}
 | 
						|
                @else
 | 
						|
                    {{ trans('texts.bank_account') }}
 | 
						|
                @endif
 | 
						|
            @elseif($paymentMethod->payment_type_id == PAYMENT_TYPE_PAYPAL)
 | 
						|
                {{ trans('texts.paypal') . ': ' . $paymentMethod->email }}
 | 
						|
            @else
 | 
						|
                {{ trans('texts.credit_card') }}
 | 
						|
            @endif
 | 
						|
 | 
						|
            - {{ trans('texts.added_on', ['date' => Utils::dateToString($paymentMethod->created_at)]) }}
 | 
						|
 | 
						|
            @if($paymentMethod->payment_type_id == PAYMENT_TYPE_ACH)
 | 
						|
                @if($paymentMethod->status == PAYMENT_METHOD_STATUS_NEW)
 | 
						|
                    @if($gateway->gateway_id == GATEWAY_STRIPE)
 | 
						|
                        <a href="#" onclick="completeVerification('{{$paymentMethod->public_id}}','{{$paymentMethod->currency->symbol}}')">({{trans('texts.complete_verification')}})</a>
 | 
						|
                    @else
 | 
						|
                        [{{  trans('texts.verification_pending') }}]
 | 
						|
                    @endif
 | 
						|
                @elseif($paymentMethod->status == PAYMENT_METHOD_STATUS_VERIFICATION_FAILED)
 | 
						|
                    [{{trans('texts.verification_failed')}}]
 | 
						|
                @endif
 | 
						|
            @endif
 | 
						|
            |
 | 
						|
            @if($paymentMethod->id == $paymentMethod->account_gateway_token->default_payment_method_id)
 | 
						|
                {{trans('texts.used_for_auto_bill')}}
 | 
						|
            @elseif($paymentMethod->payment_type_id != PAYMENT_TYPE_ACH || $paymentMethod->status == PAYMENT_METHOD_STATUS_VERIFIED)
 | 
						|
                <a href="#" onclick="setDefault('{{$paymentMethod->public_id}}')">{{trans('texts.use_for_auto_bill')}}</a>
 | 
						|
            @endif
 | 
						|
            | <a href="#" title="{{ trans('texts.remove') }}" class="payment_method_remove" onclick="removePaymentMethod('{{$paymentMethod->public_id}}')">{{ trans('texts.remove') }}</a>
 | 
						|
 | 
						|
        </div>
 | 
						|
        @endforeach
 | 
						|
    @endif
 | 
						|
 | 
						|
    <br/> <br/>
 | 
						|
@endif
 | 
						|
 | 
						|
<center>
 | 
						|
    @if (false && $account->getGatewayByType(GATEWAY_TYPE_CREDIT_CARD) && $account->getGatewayByType(GATEWAY_TYPE_TOKEN))
 | 
						|
        {!! Button::success(strtoupper(trans('texts.add_credit_card')))
 | 
						|
        ->asLinkTo(URL::to('/client/add/credit_card')) !!}
 | 
						|
         
 | 
						|
    @endif
 | 
						|
    @if (false && $account->getGatewayByType(GATEWAY_TYPE_BANK_TRANSFER) && $account->getGatewayByType(GATEWAY_TYPE_TOKEN))
 | 
						|
        {!! Button::success(strtoupper(trans('texts.add_bank_account')))
 | 
						|
            ->withAttributes(['id'=>'add-ach'])
 | 
						|
            ->asLinkTo(URL::to('/client/add/bank_transfer')) !!}
 | 
						|
         
 | 
						|
    @endif
 | 
						|
    @if (false && $account->getGatewayByType(GATEWAY_TYPE_PAYPAL) && $account->getGatewayByType(GATEWAY_TYPE_TOKEN))
 | 
						|
        {!! Button::success(strtoupper(trans('texts.add_paypal_account')))
 | 
						|
            ->withAttributes(['id'=>'add-paypal'])
 | 
						|
            ->asLinkTo(URL::to('/client/add/paypal')) !!}
 | 
						|
        <div id="paypal-container"></div>
 | 
						|
    @endif
 | 
						|
</center>
 | 
						|
 | 
						|
<div class="modal fade" id="completeVerificationModal" tabindex="-1" role="dialog" aria-labelledby="completeVerificationModalLabel" aria-hidden="true">
 | 
						|
    <div class="modal-dialog" style="min-width:150px">
 | 
						|
        <div class="modal-content">
 | 
						|
            {!! Former::open('/client/payment_methods/verify') !!}
 | 
						|
 | 
						|
            @if (Utils::isNinjaDev())
 | 
						|
                <script>
 | 
						|
                    $(function() {
 | 
						|
                        $('#verification1').val('32');
 | 
						|
                        $('#verification2').val('45');
 | 
						|
                    })
 | 
						|
                </script>
 | 
						|
            @endif
 | 
						|
 | 
						|
            <div class="modal-header">
 | 
						|
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
 | 
						|
                <h4 class="modal-title" id="completeVerificationModalLabel">{{ trans('texts.complete_verification') }}</h4>
 | 
						|
            </div>
 | 
						|
 | 
						|
            <div class="modal-body">
 | 
						|
                <div style="display:none">
 | 
						|
                    {!! Former::text('source_id') !!}
 | 
						|
                </div>
 | 
						|
                <p>{{ trans('texts.bank_account_verification_help') }}</p>
 | 
						|
                <div class="form-group">
 | 
						|
                    <label for="verification1" class="control-label col-sm-5">{{ trans('texts.verification_amount1') }}</label>
 | 
						|
                    <div class="col-sm-3">
 | 
						|
                        <div class="input-group">
 | 
						|
                            <span class="input-group-addon"><span class="payment_method_currenct_symbol"></span>0.</span>
 | 
						|
                            <input type="number" min="0" max="99" required class="form-control" id="verification1" name="verification1">
 | 
						|
                        </div>
 | 
						|
                    </div>
 | 
						|
                </div>
 | 
						|
                <div class="form-group">
 | 
						|
                    <label for="verification2" class="control-label col-sm-5">{{ trans('texts.verification_amount2') }}</label>
 | 
						|
                    <div class="col-sm-3">
 | 
						|
                        <div class="input-group">
 | 
						|
                            <span class="input-group-addon"><span class="payment_method_currenct_symbol"></span>0.</span>
 | 
						|
                            <input type="number" min="0" max="99" required class="form-control" id="verification2" name="verification2">
 | 
						|
                        </div>
 | 
						|
                    </div>
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
            <div class="modal-footer" style="margin-top: 2px">
 | 
						|
                <button type="button" class="btn btn-default" data-dismiss="modal">{{ trans('texts.cancel') }}</button>
 | 
						|
                <button type="submit" class="btn btn-primary">{{ trans('texts.complete_verification') }}</button>
 | 
						|
            </div>
 | 
						|
            {!! Former::close() !!}
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
 | 
						|
<div class="modal fade" id="removePaymentMethodModal" tabindex="-1" role="dialog" aria-labelledby="removePaymentMethodModalLabel" aria-hidden="true">
 | 
						|
    <div class="modal-dialog" style="min-width:150px">
 | 
						|
        <div class="modal-content">
 | 
						|
            {!! Former::open()->id('removeForm') !!}
 | 
						|
            <div class="modal-header">
 | 
						|
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
 | 
						|
                <h4 class="modal-title" id="removePaymentMethodModalLabel">{{ trans('texts.remove_payment_method') }}</h4>
 | 
						|
            </div>
 | 
						|
 | 
						|
            <div class="modal-body">
 | 
						|
                <p>{{ trans('texts.confirm_remove_payment_method') }}</p>
 | 
						|
            </div>
 | 
						|
            <div class="modal-footer" style="margin-top: 2px">
 | 
						|
                <button type="button" class="btn btn-default" data-dismiss="modal">{{ trans('texts.cancel') }}</button>
 | 
						|
                <button type="submit" class="btn btn-primary">{{ trans('texts.remove') }}</button>
 | 
						|
            </div>
 | 
						|
            {!! Former::close() !!}
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
 | 
						|
{!! Former::open(URL::to('/client/payment_methods/default'))->id('defaultSourceForm') !!}
 | 
						|
    <input type="hidden" name="source" id="default_id">
 | 
						|
{!! Former::close() !!}
 | 
						|
 | 
						|
<script type="text/javascript">
 | 
						|
 | 
						|
    function completeVerification(sourceId, currencySymbol) {
 | 
						|
        $('#source_id').val(sourceId);
 | 
						|
        $('.payment_method_currenct_symbol').text(currencySymbol);
 | 
						|
        $('#completeVerificationModal').modal('show');
 | 
						|
    }
 | 
						|
 | 
						|
    function removePaymentMethod(sourceId) {
 | 
						|
        $('#removeForm').attr('action', '{{ URL::to('/client/payment_methods/%s/remove') }}'.replace('%s', sourceId))
 | 
						|
        $('#removePaymentMethodModal').modal('show');
 | 
						|
    }
 | 
						|
 | 
						|
    function setDefault(sourceId) {
 | 
						|
        $('#default_id').val(sourceId);
 | 
						|
        $('#defaultSourceForm').submit()
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
</script>
 |