2020-03-23 18:10:42 +01:00
|
|
|
<?php
|
|
|
|
|
2021-06-17 14:37:06 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2021-06-17 14:37:06 +02:00
|
|
|
*
|
2021-06-21 07:10:20 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-06-17 14:37:06 +02:00
|
|
|
*/
|
|
|
|
|
2020-03-23 18:10:42 +01:00
|
|
|
namespace App\Http\Controllers\ClientPortal;
|
|
|
|
|
2021-10-23 01:06:30 +02:00
|
|
|
use App\Events\Misc\InvitationWasViewed;
|
|
|
|
use App\Events\Quote\QuoteWasViewed;
|
2020-03-23 18:10:42 +01:00
|
|
|
use App\Http\Controllers\Controller;
|
2021-06-17 14:37:06 +02:00
|
|
|
use App\Http\Requests\ClientPortal\Quotes\ProcessQuotesInBulkRequest;
|
|
|
|
use App\Http\Requests\ClientPortal\Quotes\ShowQuoteRequest;
|
2021-10-23 01:06:30 +02:00
|
|
|
use App\Http\Requests\ClientPortal\Quotes\ShowQuotesRequest;
|
2020-11-17 16:57:42 +01:00
|
|
|
use App\Jobs\Invoice\InjectSignature;
|
2020-03-23 18:10:42 +01:00
|
|
|
use App\Models\Quote;
|
2020-07-08 14:02:16 +02:00
|
|
|
use App\Utils\Ninja;
|
2020-03-23 18:10:42 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\Contracts\View\Factory;
|
2022-06-21 11:57:17 +02:00
|
|
|
use Illuminate\Http\Request;
|
2021-10-23 01:06:30 +02:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\View\View;
|
2021-07-05 14:00:27 +02:00
|
|
|
use Symfony\Component\HttpFoundation\BinaryFileResponse;
|
2020-03-23 18:10:42 +01:00
|
|
|
|
|
|
|
class QuoteController extends Controller
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display a listing of the quotes.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return Factory|View
|
2020-03-23 18:10:42 +01:00
|
|
|
*/
|
2021-06-17 14:37:06 +02:00
|
|
|
public function index(ShowQuotesRequest $request)
|
2020-03-23 18:10:42 +01:00
|
|
|
{
|
2020-04-23 00:49:23 +02:00
|
|
|
return $this->render('quotes.index');
|
2020-03-23 18:10:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the specified resource.
|
|
|
|
*
|
|
|
|
* @param ShowQuoteRequest $request
|
|
|
|
* @param Quote $quote
|
2021-07-05 14:00:27 +02:00
|
|
|
* @return Factory|View|BinaryFileResponse
|
2020-03-23 18:10:42 +01:00
|
|
|
*/
|
|
|
|
public function show(ShowQuoteRequest $request, Quote $quote)
|
2022-06-21 11:57:17 +02:00
|
|
|
{
|
2022-01-07 05:03:42 +01:00
|
|
|
/* If the quote is expired, convert the status here */
|
|
|
|
|
2022-02-10 01:36:44 +01:00
|
|
|
$invitation = $quote->invitations()->where('client_contact_id', auth()->user()->id)->first();
|
|
|
|
|
2020-06-18 12:51:47 +02:00
|
|
|
$data = [
|
2020-03-23 18:10:42 +01:00
|
|
|
'quote' => $quote,
|
2022-02-16 00:47:54 +01:00
|
|
|
'key' => $invitation ? $invitation->key : false,
|
2022-08-24 10:28:08 +02:00
|
|
|
'invitation' => $invitation
|
2020-06-18 12:51:47 +02:00
|
|
|
];
|
|
|
|
|
2021-12-14 05:38:32 +01:00
|
|
|
if ($invitation && auth()->guard('contact') && ! request()->has('silent') && ! $invitation->viewed_date) {
|
|
|
|
$invitation->markViewed();
|
2021-10-23 01:06:30 +02:00
|
|
|
|
2021-12-14 05:38:32 +01:00
|
|
|
event(new InvitationWasViewed($quote, $invitation, $quote->company, Ninja::eventVars()));
|
|
|
|
event(new QuoteWasViewed($invitation, $invitation->company, Ninja::eventVars()));
|
|
|
|
}
|
2021-10-23 01:06:30 +02:00
|
|
|
|
2021-02-18 13:18:41 +01:00
|
|
|
if ($request->query('mode') === 'fullscreen') {
|
2021-05-10 13:28:31 +02:00
|
|
|
return render('quotes.show-fullscreen', $data);
|
2020-06-18 12:51:47 +02:00
|
|
|
}
|
|
|
|
|
2021-02-18 13:18:41 +01:00
|
|
|
return $this->render('quotes.show', $data);
|
2020-03-23 18:10:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function bulk(ProcessQuotesInBulkRequest $request)
|
|
|
|
{
|
|
|
|
$transformed_ids = $this->transformKeys($request->quotes);
|
2023-02-16 02:36:09 +01:00
|
|
|
nlog(request()->all());
|
2020-03-23 18:10:42 +01:00
|
|
|
|
|
|
|
if ($request->action == 'download') {
|
2021-12-14 05:38:32 +01:00
|
|
|
return $this->downloadQuotes((array) $transformed_ids);
|
2020-03-23 18:10:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($request->action = 'approve') {
|
2020-09-06 11:38:10 +02:00
|
|
|
return $this->approve((array) $transformed_ids, $request->has('process'));
|
2020-03-23 18:10:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return back();
|
|
|
|
}
|
|
|
|
|
2021-12-14 05:38:32 +01:00
|
|
|
public function downloadQuotes($ids)
|
|
|
|
{
|
|
|
|
$data['quotes'] = Quote::whereIn('id', $ids)
|
|
|
|
->whereClientId(auth()->user()->client->id)
|
|
|
|
->withTrashed()
|
|
|
|
->get();
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (count($data['quotes']) == 0) {
|
2021-12-14 05:38:32 +01:00
|
|
|
return back()->with(['message' => ctrans('texts.no_items_selected')]);
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-12-14 05:38:32 +01:00
|
|
|
|
|
|
|
return $this->render('quotes.download', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function download(Request $request)
|
|
|
|
{
|
|
|
|
$transformed_ids = $this->transformKeys($request->quotes);
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-12-14 05:38:32 +01:00
|
|
|
return $this->downloadQuotePdf((array) $transformed_ids);
|
|
|
|
}
|
|
|
|
|
2020-03-23 18:10:42 +01:00
|
|
|
protected function downloadQuotePdf(array $ids)
|
|
|
|
{
|
|
|
|
$quotes = Quote::whereIn('id', $ids)
|
|
|
|
->whereClientId(auth()->user()->client->id)
|
2021-12-14 05:38:32 +01:00
|
|
|
->withTrashed()
|
2020-03-23 18:10:42 +01:00
|
|
|
->get();
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $quotes || $quotes->count() == 0) {
|
2021-07-14 14:33:17 +02:00
|
|
|
return redirect()
|
|
|
|
->route('client.quotes.index')
|
|
|
|
->with('message', ctrans('texts.no_quotes_available_for_download'));
|
2020-03-23 18:10:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($quotes->count() == 1) {
|
2022-06-21 11:57:17 +02:00
|
|
|
$file = $quotes->first()->service()->getQuotePdf();
|
|
|
|
// return response()->download($file, basename($file), ['Cache-Control:' => 'no-cache'])->deleteFileAfterSend(true);
|
|
|
|
return response()->streamDownload(function () use ($file) {
|
|
|
|
echo Storage::get($file);
|
|
|
|
}, basename($file), ['Content-Type' => 'application/pdf']);
|
2020-03-23 18:10:42 +01:00
|
|
|
}
|
|
|
|
|
2022-02-18 11:45:01 +01:00
|
|
|
return $this->buildZip($quotes);
|
|
|
|
}
|
2020-03-23 18:10:42 +01:00
|
|
|
|
2022-02-18 11:45:01 +01:00
|
|
|
private function buildZip($quotes)
|
|
|
|
{
|
|
|
|
// create new archive
|
|
|
|
$zipFile = new \PhpZip\ZipFile();
|
2022-06-21 11:57:17 +02:00
|
|
|
try {
|
2022-02-18 11:45:01 +01:00
|
|
|
foreach ($quotes as $quote) {
|
2022-06-21 11:57:17 +02:00
|
|
|
//add it to the zip
|
2022-02-18 11:45:01 +01:00
|
|
|
$zipFile->addFromString(basename($quote->pdf_file_path()), file_get_contents($quote->pdf_file_path(null, 'url', true)));
|
|
|
|
}
|
2020-03-23 18:10:42 +01:00
|
|
|
|
2022-02-18 11:45:01 +01:00
|
|
|
$filename = date('Y-m-d').'_'.str_replace(' ', '_', trans('texts.quotes')).'.zip';
|
2022-06-21 11:57:17 +02:00
|
|
|
$filepath = sys_get_temp_dir().'/'.$filename;
|
2022-02-18 11:45:01 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
$zipFile->saveAsFile($filepath) // save the archive to a file
|
2022-02-18 11:45:01 +01:00
|
|
|
->close(); // close archive
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
return response()->download($filepath, $filename)->deleteFileAfterSend(true);
|
2022-06-21 11:57:17 +02:00
|
|
|
} catch (\PhpZip\Exception\ZipException $e) {
|
2022-02-18 11:45:01 +01:00
|
|
|
// handle exception
|
2022-06-21 11:57:17 +02:00
|
|
|
} finally {
|
2022-02-18 11:45:01 +01:00
|
|
|
$zipFile->close();
|
|
|
|
}
|
2020-03-23 18:10:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function approve(array $ids, $process = false)
|
|
|
|
{
|
|
|
|
$quotes = Quote::whereIn('id', $ids)
|
2022-02-16 03:24:10 +01:00
|
|
|
->where('client_id', auth()->guard('contact')->user()->client->id)
|
|
|
|
->where('company_id', auth()->guard('contact')->user()->client->company_id)
|
2022-02-08 11:18:41 +01:00
|
|
|
->whereIn('status_id', [Quote::STATUS_DRAFT, Quote::STATUS_SENT])
|
2021-12-14 05:38:32 +01:00
|
|
|
->withTrashed()
|
2020-03-23 18:10:42 +01:00
|
|
|
->get();
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! $quotes || $quotes->count() == 0) {
|
2021-07-14 14:13:37 +02:00
|
|
|
return redirect()
|
|
|
|
->route('client.quotes.index')
|
|
|
|
->with('message', ctrans('texts.quotes_with_status_sent_can_be_approved'));
|
2020-03-23 18:10:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($process) {
|
|
|
|
foreach ($quotes as $quote) {
|
2023-02-16 02:36:09 +01:00
|
|
|
if (request()->has('user_input') && strlen(request()->input('user_input')) > 2) {
|
2023-03-18 09:54:59 +01:00
|
|
|
$quote->po_number = substr(request()->input('user_input'), 0, 180);
|
2023-02-16 02:36:09 +01:00
|
|
|
$quote->saveQuietly();
|
2023-02-02 11:04:55 +01:00
|
|
|
}
|
|
|
|
|
2021-07-05 14:00:27 +02:00
|
|
|
$quote->service()->approve(auth()->user())->save();
|
2022-08-27 01:26:08 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (request()->has('signature') && ! is_null(request()->signature) && ! empty(request()->signature)) {
|
2023-07-26 04:18:00 +02:00
|
|
|
InjectSignature::dispatch($quote, auth()->guard('contact')->user()->id, request()->signature);
|
2020-11-17 16:57:42 +01:00
|
|
|
}
|
2020-03-23 18:10:42 +01:00
|
|
|
}
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (count($ids) == 1) {
|
2023-02-16 02:36:09 +01:00
|
|
|
//forward client to the invoice if it exists
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($quote->invoice()->exists()) {
|
|
|
|
return redirect()->route('client.invoice.show', $quote->invoice->hashed_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
return redirect()->route('client.quote.show', $quotes->first()->hashed_id);
|
|
|
|
}
|
2021-12-11 11:29:32 +01:00
|
|
|
|
2020-07-14 13:00:28 +02:00
|
|
|
return redirect()
|
|
|
|
->route('client.quotes.index')
|
|
|
|
->withSuccess('Quote(s) approved successfully.');
|
2020-03-23 18:10:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $this->render('quotes.approve', [
|
|
|
|
'quotes' => $quotes,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|