mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
28 lines
920 B
PHP
Executable File
28 lines
920 B
PHP
Executable File
@extends('header')
|
|
|
|
@section('content')
|
|
|
|
@if ($invoice->client->account->isGatewayConfigured())
|
|
{{ Button::primary_link(URL::to('payment/' . $invoice->invoice_key), 'Pay Now', array('class' => 'btn-lg pull-right')) }}
|
|
<div class="clearfix"></div><p> </p>
|
|
@endif
|
|
|
|
<iframe frameborder="1" width="100%" height="600" style="display:block;margin: 0 auto"></iframe>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
var invoice = {{ $invoice->toJson() }};
|
|
@if (file_exists($invoice->client->account->getLogoPath()))
|
|
invoice.image = "{{ HTML::image_data($invoice->client->account->getLogoPath()) }}";
|
|
invoice.imageWidth = {{ $invoice->client->account->getLogoWidth() }};
|
|
invoice.imageHeight = {{ $invoice->client->account->getLogoHeight() }};
|
|
@endif
|
|
var doc = generatePDF(invoice);
|
|
var string = doc.output('datauristring');
|
|
$('iframe').attr('src', string);
|
|
});
|
|
|
|
</script>
|
|
|
|
@stop |