mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 04:37:32 -04:00 
			
		
		
		
	- Change ClientPortal helper to return 'bg-primary-darken' instead of 'active-page'
    - Buttons & input fields don't have SASS color now
    - bg-blue-600/900 replaced with primary/primary-darken
    - Production build of assets
		
	
			
		
			
				
	
	
		
			87 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('portal.ninja2020.layout.app')
 | |
| @section('meta_title', ctrans('texts.approve'))
 | |
| 
 | |
| @push('head')
 | |
|     <meta name="require-quote-signature" content="{{ $settings->require_invoice_signature ? true : false }}">
 | |
|     <script src="https://cdn.jsdelivr.net/npm/signature_pad@2.3.2/dist/signature_pad.min.js"></script>
 | |
| @endpush
 | |
| 
 | |
| @section('body')
 | |
|     <form action="{{ route('client.quotes.bulk') }}" method="post" id="approve-form">
 | |
|         @csrf
 | |
|         <input type="hidden" name="action" value="approve">
 | |
|         <input type="hidden" name="process" value="true">
 | |
|         @foreach($quotes as $quote)
 | |
|             <input type="hidden" name="quotes[]" value="{{ $quote->hashed_id }}">
 | |
|         @endforeach
 | |
|     </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="flex justify-end">
 | |
|                     <div class="flex justify-end mb-2">
 | |
|                         <div class="relative inline-block text-left">
 | |
|                             <div>
 | |
|                                 <div class="rounded-md shadow-sm">
 | |
|                                     <button type="button" id="approve-button"
 | |
|                                             class="inline-flex justify-center w-full rounded-md border border-gray-300 px-4 py-2 bg-white text-sm leading-5 font-medium text-gray-700 hover:text-gray-500 focus:outline-none focus:border-blue-300 focus:shadow-outline-blue active:bg-gray-50 active:text-gray-800 transition ease-in-out duration-150">
 | |
|                                         {{ ctrans('texts.approve') }}
 | |
|                                     </button>
 | |
|                                 </div>
 | |
|                             </div>
 | |
|                         </div>
 | |
|                     </div>
 | |
|                 </div>
 | |
|                 @foreach($quotes as $quote)
 | |
|                     <div class="bg-white shadow overflow-hidden sm:rounded-lg mb-4">
 | |
|                         <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.invoice') }}
 | |
|                                 <a class="button-link text-primary" href="{{ route('client.quote.show', $quote->hashed_id) }}">
 | |
|                                     ({{ $quote->number }})
 | |
|                                 </a>
 | |
|                             </h3>
 | |
|                             <p class="mt-1 max-w-2xl text-sm leading-5 text-gray-500" translate>
 | |
|                             </p>
 | |
|                         </div>
 | |
|                         <div>
 | |
|                             <dl>
 | |
|                                 <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.quote_number') }}
 | |
|                                     </dt>
 | |
|                                     <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
 | |
|                                         {{ $quote->number }}
 | |
|                                     </dd>
 | |
|                                 </div>
 | |
|                                 <div class="bg-white 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.quote_date') }}
 | |
|                                     </dt>
 | |
|                                     <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
 | |
|                                         {{ $quote->formatDate($quote->date, $quote->client->date_format()) }}
 | |
|                                     </dd>
 | |
|                                 </div>
 | |
|                                 <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.balance') }}
 | |
|                                     </dt>
 | |
|                                     <dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
 | |
|                                         {{ App\Utils\Number::formatMoney($quote->balance, $quote->client) }}
 | |
|                                     </dd>
 | |
|                                 </div>
 | |
|                             </dl>
 | |
|                         </div>
 | |
|                     </div>
 | |
|                 @endforeach
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| 
 | |
|     @include('portal.ninja2020.invoices.includes.signature')
 | |
| @endsection
 | |
| 
 | |
| @push('footer')
 | |
|     <script src="{{ asset('js/clients/quotes/approve.js') }}"></script>
 | |
| @endpush
 |