mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
137 lines
6.2 KiB
PHP
137 lines
6.2 KiB
PHP
@extends('portal.ninja2020.layout.app')
|
|
@section('meta_title', ctrans('texts.entity_number_placeholder', ['entity' => ctrans('texts.quote'), 'entity_number' => $quote->number]))
|
|
|
|
@push('head')
|
|
<meta name="pdf-url" content="{{ asset($quote->pdf_file_path(null, 'url', true)) }}">
|
|
<script src="{{ asset('js/vendor/pdf.js/pdf.min.js') }}"></script>
|
|
|
|
<meta name="show-quote-terms" content="{{ $settings->show_accept_quote_terms ? true : false }}">
|
|
<meta name="require-quote-signature" content="{{ $client->company->account->hasFeature(\App\Models\Account::FEATURE_INVOICE_SETTINGS) && $settings->require_quote_signature }}">
|
|
<meta name="accept-user-input" content="{{ $client->getSetting('accept_client_input_quote_approval') }}">
|
|
|
|
@include('portal.ninja2020.components.no-cache')
|
|
|
|
<script src="{{ asset('vendor/signature_pad@2.3.2/signature_pad.min.js') }}"></script>
|
|
@endpush
|
|
|
|
@section('body')
|
|
|
|
@if(!$quote->isApproved() && $client->getSetting('custom_message_unapproved_quote'))
|
|
@component('portal.ninja2020.components.message')
|
|
{{ $client->getSetting('custom_message_unapproved_quote') }}
|
|
@endcomponent
|
|
@endif
|
|
|
|
@if(in_array($quote->status_id, [\App\Models\Quote::STATUS_SENT, \App\Models\Quote::STATUS_DRAFT]))
|
|
<div class="mb-4">
|
|
@include('portal.ninja2020.quotes.includes.actions', ['quote' => $quote])
|
|
</div>
|
|
@elseif($quote->status_id == \App\Models\Quote::STATUS_CONVERTED)
|
|
|
|
<div class="bg-white shadow sm:rounded-lg mb-4">
|
|
<div class="px-4 py-5 sm:p-6">
|
|
<div class="sm:flex sm:items-start sm:justify-between">
|
|
<div>
|
|
<h3 class="text-lg leading-6 font-medium text-gray-900">
|
|
{{ ctrans('texts.approved') }}
|
|
</h3>
|
|
|
|
@if($key)
|
|
<div class="btn hidden md:block" data-clipboard-text="{{url("client/quote/{$key}")}}" aria-label="Copied!">
|
|
<div class="flex text-sm leading-6 font-medium text-gray-500">
|
|
<p class="mr-2">{{url("client/quote/{$key}")}}</p>
|
|
<p><img class="h-5 w-5" src="{{ asset('assets/clippy.svg') }}" alt="Copy to clipboard"></p>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
</div>
|
|
|
|
@if($quote->invoice()->exists())
|
|
<div class="mt-5 sm:mt-0 sm:ml-6 flex justify-end">
|
|
<div class="inline-flex rounded-md shadow-sm">
|
|
<a class="button button-primary bg-primary" href="/client/invoices/{{ $quote->invoice->hashed_id }}">{{ ctrans('texts.view_invoice') }}</a>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@elseif($quote->status_id == \App\Models\Quote::STATUS_APPROVED)
|
|
|
|
<div class="bg-white shadow sm:rounded-lg mb-4">
|
|
<div class="px-4 py-5 sm:p-6">
|
|
<div class="sm:flex sm:items-start sm:justify-between">
|
|
<div>
|
|
<h3 class="text-lg leading-6 font-medium text-gray-900">
|
|
{{ ctrans('texts.approved') }}
|
|
</h3>
|
|
|
|
@if($key)
|
|
<div class="btn hidden md:block" data-clipboard-text="{{url("client/quote/{$key}")}}" aria-label="Copied!">
|
|
<div class="flex text-sm leading-6 font-medium text-gray-500">
|
|
<p class="mr-2">{{url("client/quote/{$key}")}}</p>
|
|
<p><img class="h-5 w-5" src="{{ asset('assets/clippy.svg') }}" alt="Copy to clipboard"></p>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@else
|
|
|
|
<div class="bg-white shadow sm:rounded-lg mb-4">
|
|
<div class="px-4 py-5 sm:p-6">
|
|
<div class="sm:flex sm:items-start sm:justify-between">
|
|
<div>
|
|
<h3 class="text-lg leading-6 font-medium text-gray-900">
|
|
{{ ctrans('texts.expired') }}
|
|
</h3>
|
|
|
|
@if($key)
|
|
<div class="btn hidden md:block" data-clipboard-text="{{url("client/quote/{$key}")}}" aria-label="Copied!">
|
|
<div class="flex text-sm leading-6 font-medium text-gray-500">
|
|
<p class="mr-2">{{url("client/quote/{$key}")}}</p>
|
|
<p><img class="h-5 w-5" src="{{ asset('assets/clippy.svg') }}" alt="Copy to clipboard"></p>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
@include('portal.ninja2020.components.entity-documents', ['entity' => $quote])
|
|
@include('portal.ninja2020.components.pdf-viewer', ['entity' => $quote, 'invitation' => $invitation])
|
|
@include('portal.ninja2020.invoices.includes.terms', ['entities' => [$quote], 'entity_type' => ctrans('texts.quote')])
|
|
@include('portal.ninja2020.invoices.includes.signature')
|
|
@endsection
|
|
|
|
@section('footer')
|
|
<script src="{{ asset('js/clients/quotes/approve.js') }}"></script>
|
|
<script src="{{ asset('vendor/clipboard.min.js') }}"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
var clipboard = new ClipboardJS('.btn');
|
|
|
|
// clipboard.on('success', function(e) {
|
|
// console.info('Action:', e.action);
|
|
// console.info('Text:', e.text);
|
|
// console.info('Trigger:', e.trigger);
|
|
|
|
// e.clearSelection();
|
|
// });
|
|
|
|
// clipboard.on('error', function(e) {
|
|
// console.error('Action:', e.action);
|
|
// console.error('Trigger:', e.trigger);
|
|
// });
|
|
|
|
</script>
|
|
@endsection
|