mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
209 lines
9.1 KiB
PHP
209 lines
9.1 KiB
PHP
@extends('public.header')
|
|
|
|
@section('head')
|
|
@parent
|
|
|
|
@include('money_script')
|
|
|
|
@foreach ($invoice->client->account->getFontFolders() as $font)
|
|
<script src="{{ asset('js/vfs_fonts/'.$font.'.js') }}" type="text/javascript"></script>
|
|
@endforeach
|
|
<script src="{{ asset('pdf.built.js') }}?no_cache={{ NINJA_VERSION }}" type="text/javascript"></script>
|
|
|
|
<style type="text/css">
|
|
body {
|
|
background-color: #f8f8f8;
|
|
}
|
|
|
|
.dropdown-menu li a{
|
|
overflow:hidden;
|
|
margin-top:5px;
|
|
margin-bottom:5px;
|
|
}
|
|
</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 = $('.dropdown-menu a[href$="/braintree_paypal"]'),
|
|
paypalUrl = paypalLink.attr('href'),
|
|
checkout;
|
|
paypalLink.parent().attr('id', 'paypal-container');
|
|
braintree.setup("{{ $braintreeClientToken }}", "custom", {
|
|
onReady: function (integration) {
|
|
checkout = integration;
|
|
$('.dropdown-menu a[href$="#braintree_paypal"]').each(function(){
|
|
var el=$(this);
|
|
el.attr('href', el.attr('href').replace('#braintree_paypal','?device_data='+encodeURIComponent(integration.deviceData)))
|
|
})
|
|
},
|
|
paypal: {
|
|
container: "paypal-container",
|
|
singleUse: false,
|
|
enableShippingAddress: false,
|
|
enableBillingAddress: false,
|
|
headless: true,
|
|
locale: "{{$invoice->client->language?$invoice->client->language->locale:$invoice->account->language->locale}}"
|
|
},
|
|
dataCollector: {
|
|
paypal: true
|
|
},
|
|
onPaymentMethodReceived: function (obj) {
|
|
window.location.href = paypalUrl + '/' + encodeURIComponent(obj.nonce) + "?details=" + encodeURIComponent(JSON.stringify(obj.details))
|
|
}
|
|
});
|
|
paypalLink.click(function(e){
|
|
e.preventDefault();
|
|
checkout.paypal.initAuthFlow();
|
|
})
|
|
});
|
|
</script>
|
|
@elseif(!empty($enableWePayACH))
|
|
<script type="text/javascript" src="https://static.wepay.com/js/tokenization.v2.js"></script>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
var achLink = $('.dropdown-menu a[href$="/wepay_ach"]'),
|
|
achUrl = achLink.attr('href');
|
|
WePay.set_endpoint('{{ WEPAY_ENVIRONMENT }}');
|
|
achLink.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 = achLink.attr('href') + '/' + dataObj.bank_account_id + "?details=" + encodeURIComponent(data);
|
|
} else if(dataObj.error) {
|
|
$('#wepay-error').remove();
|
|
achLink.closest('.container').prepend($('<div id="wepay-error" style="margin-top:20px" class="alert alert-danger"></div>').text(dataObj.error_description));
|
|
}
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
@endif
|
|
@stop
|
|
|
|
@section('content')
|
|
|
|
<div class="container">
|
|
|
|
@if ($checkoutComToken)
|
|
@include('partials.checkout_com_payment')
|
|
@else
|
|
<div class="pull-right" style="text-align:right">
|
|
@if ($invoice->isQuote())
|
|
{!! Button::normal(trans('texts.download_pdf'))->withAttributes(['onclick' => 'onDownloadClick()'])->large() !!}
|
|
@if ($showApprove)
|
|
{!! Button::success(trans('texts.approve'))->asLinkTo(URL::to('/approve/' . $invitation->invitation_key))->large() !!}
|
|
@endif
|
|
@elseif ($invoice->client->account->isGatewayConfigured() && !$invoice->isPaid() && !$invoice->is_recurring)
|
|
{!! Button::normal(trans('texts.download_pdf'))->withAttributes(['onclick' => 'onDownloadClick()'])->large() !!}
|
|
@if (count($paymentTypes) > 1)
|
|
{!! DropdownButton::success(trans('texts.pay_now'))->withContents($paymentTypes)->large() !!}
|
|
@else
|
|
<a href='{!! $paymentURL !!}' class="btn btn-success btn-lg">{{ trans('texts.pay_now') }}</a>
|
|
@endif
|
|
@else
|
|
{!! Button::normal(trans('texts.download_pdf'))->withAttributes(['onclick' => 'onDownloadClick()'])->large() !!}
|
|
@if ($account->isNinjaAccount())
|
|
{!! Button::primary(trans('texts.return_to_app'))->asLinkTo(URL::to('/dashboard'))->large() !!}
|
|
@endif
|
|
@endif
|
|
</div>
|
|
<div class="pull-left">
|
|
@if(!empty($documentsZipURL))
|
|
{!! Button::normal(trans('texts.download_documents', array('size'=>Form::human_filesize($documentsZipSize))))->asLinkTo($documentsZipURL)->large() !!}
|
|
@endif
|
|
</div>
|
|
@endif
|
|
|
|
<div class="clearfix"></div><p> </p>
|
|
@if ($account->isPro() && $invoice->hasDocuments())
|
|
<div class="invoice-documents">
|
|
<h3>{{ trans('texts.documents_header') }}</h3>
|
|
<ul>
|
|
@foreach ($invoice->documents as $document)
|
|
<li><a target="_blank" href="{{ $document->getClientUrl($invitation) }}">{{$document->name}} ({{Form::human_filesize($document->size)}})</a></li>
|
|
@endforeach
|
|
@foreach ($invoice->expenses as $expense)
|
|
@foreach ($expense->documents as $document)
|
|
<li><a target="_blank" href="{{ $document->getClientUrl($invitation) }}">{{$document->name}} ({{Form::human_filesize($document->size)}})</a></li>
|
|
@endforeach
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if ($account->hasFeature(FEATURE_DOCUMENTS) && $account->invoice_embed_documents)
|
|
@foreach ($invoice->documents as $document)
|
|
@if($document->isPDFEmbeddable())
|
|
<script src="{{ $document->getClientVFSJSUrl() }}" type="text/javascript" async></script>
|
|
@endif
|
|
@endforeach
|
|
@foreach ($invoice->expenses as $expense)
|
|
@foreach ($expense->documents as $document)
|
|
@if($document->isPDFEmbeddable())
|
|
<script src="{{ $document->getClientVFSJSUrl() }}" type="text/javascript" async></script>
|
|
@endif
|
|
@endforeach
|
|
@endforeach
|
|
@endif
|
|
<script type="text/javascript">
|
|
|
|
window.invoice = {!! $invoice->toJson() !!};
|
|
invoice.features = {
|
|
customize_invoice_design:{{ $invoice->client->account->hasFeature(FEATURE_CUSTOMIZE_INVOICE_DESIGN) ? 'true' : 'false' }},
|
|
remove_created_by:{{ $invoice->client->account->hasFeature(FEATURE_REMOVE_CREATED_BY) ? 'true' : 'false' }},
|
|
invoice_settings:{{ $invoice->client->account->hasFeature(FEATURE_INVOICE_SETTINGS) ? 'true' : 'false' }}
|
|
};
|
|
invoice.is_quote = {{ $invoice->isQuote() ? 'true' : 'false' }};
|
|
invoice.contact = {!! $contact->toJson() !!};
|
|
|
|
function getPDFString(cb) {
|
|
return generatePDF(invoice, invoice.invoice_design.javascript, true, cb);
|
|
}
|
|
|
|
if (window.hasOwnProperty('pjsc_meta')) {
|
|
window['pjsc_meta'].remainingTasks++;
|
|
}
|
|
|
|
$(function() {
|
|
@if (Input::has('phantomjs'))
|
|
doc = getPDFString();
|
|
doc.getDataUrl(function(pdfString) {
|
|
document.write(pdfString);
|
|
document.close();
|
|
|
|
if (window.hasOwnProperty('pjsc_meta')) {
|
|
window['pjsc_meta'].remainingTasks--;
|
|
}
|
|
});
|
|
@else
|
|
refreshPDF();
|
|
@endif
|
|
});
|
|
|
|
function onDownloadClick() {
|
|
var doc = generatePDF(invoice, invoice.invoice_design.javascript, true);
|
|
var fileName = invoice.is_quote ? invoiceLabels.quote : invoiceLabels.invoice;
|
|
doc.save(fileName + '-' + invoice.invoice_number + '.pdf');
|
|
}
|
|
|
|
</script>
|
|
|
|
@include('invoices.pdf', ['account' => $invoice->client->account, 'viewPDF' => true])
|
|
|
|
<p> </p>
|
|
<p> </p>
|
|
|
|
</div>
|
|
@stop
|