mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
ac5525c9ac
* Client login, reset and update password page * Client dashboard, sidebar, PortalComposer.php * wip * Personal page & update for details * Invoices, paying & pagination.blade.php * Invoices, recurring invoice & buttons * Payments, link component * Payment methods * Breadcrums, clean up & wrap up * Remove format_date() method to formatDate on object * Payments - $this->render is now proxy for render() - Removed logic from Controller.php to ClientPortal.php - Added MakesDates to ClientGatewayToken.php - StripePaymentDriver.php now returns correct views - Refactor of adding new payment method - Ignoring all local builds for public/js/clients/* * Signature, wip * Fix "Pay now" on single invoice * Payments: - Added ProcessInvoicesInBulk request class - Refactor InvoiceController::bulk() - Displaying terms & payments - New signature.blade.php - Removed comment from webpack.mix.js * Quotes: - Refactor ProcessInvoicesInBulk.php to ProcessInvoicesInBulkRequest.php - Add new 'Quotes' field inside of PortalComposer.php - Added MakesDates to Quote.php - Added Quote::badgeForStatus() - Cleanup payment.blade.php - Quote showing and approving - New resource 'quotes' in client.php - New image for quotes, align-left.svg * Credits: - New 'credits' resource in client.php - Fixes for client.php typo * Breadcrumbs: - Quotes - Credits * Placeholder for translations. * Restore whereIn & client scope Co-authored-by: David Bomba <turbo124@gmail.com>
115 lines
3.0 KiB
PHP
115 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\ClientPortal;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\ClientPortal\ProcessQuotesInBulkRequest;
|
|
use App\Http\Requests\ClientPortal\ShowQuoteRequest;
|
|
use App\Models\Company;
|
|
use App\Models\Quote;
|
|
use App\Utils\Traits\MakesHash;
|
|
use ZipStream\Option\Archive;
|
|
use ZipStream\ZipStream;
|
|
|
|
class QuoteController extends Controller
|
|
{
|
|
use MakesHash;
|
|
|
|
/**
|
|
* Display a listing of the quotes.
|
|
*
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
*/
|
|
public function index()
|
|
{
|
|
$quotes = auth()->user()->company->quotes()->paginate(10);
|
|
|
|
return $this->render('quotes.index', [
|
|
'quotes' => $quotes,
|
|
]);
|
|
}
|
|
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*
|
|
* @param ShowQuoteRequest $request
|
|
* @param Quote $quote
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
*/
|
|
public function show(ShowQuoteRequest $request, Quote $quote)
|
|
{
|
|
return $this->render('quotes.show', [
|
|
'quote' => $quote,
|
|
]);
|
|
}
|
|
|
|
public function bulk(ProcessQuotesInBulkRequest $request)
|
|
{
|
|
$transformed_ids = $this->transformKeys($request->quotes);
|
|
|
|
if ($request->action == 'download') {
|
|
return $this->downloadQuotePdf((array)$transformed_ids);
|
|
}
|
|
|
|
if ($request->action = 'approve') {
|
|
return $this->approve((array)$transformed_ids, $request->has('process'));
|
|
}
|
|
|
|
return back();
|
|
}
|
|
|
|
protected function downloadQuotePdf(array $ids)
|
|
{
|
|
$quotes = Quote::whereIn('id', $ids)
|
|
->whereClientId(auth()->user()->client->id)
|
|
->get();
|
|
|
|
if (!$quotes || $quotes->count() == 0) {
|
|
return;
|
|
}
|
|
|
|
if ($quotes->count() == 1) {
|
|
return response()->download(public_path($quotes->first()->pdf_file_path()));
|
|
}
|
|
|
|
# enable output of HTTP headers
|
|
$options = new Archive();
|
|
$options->setSendHttpHeaders(true);
|
|
|
|
# create a new zipstream object
|
|
$zip = new ZipStream(date('Y-m-d') . '_' . str_replace(' ', '_', trans('texts.invoices')) . ".zip", $options);
|
|
|
|
foreach ($quotes as $quote) {
|
|
$zip->addFileFromPath(basename($quote->pdf_file_path()), public_path($quote->pdf_file_path()));
|
|
}
|
|
|
|
# finish the zip stream
|
|
$zip->finish();
|
|
}
|
|
|
|
protected function approve(array $ids, $process = false)
|
|
{
|
|
$quotes = Quote::whereIn('id', $ids)
|
|
->whereClientId(auth()->user()->client->id)
|
|
->get();
|
|
|
|
if (!$quotes || $quotes->count() == 0) {
|
|
return redirect()->route('client.quotes.index');
|
|
}
|
|
|
|
if ($process) {
|
|
|
|
foreach ($quotes as $quote) {
|
|
$quote->service()->approve()->save();
|
|
}
|
|
|
|
return route('client.quotes.index')->withSuccess('Quote(s) approved successfully.');
|
|
}
|
|
|
|
return $this->render('quotes.approve', [
|
|
'quotes' => $quotes,
|
|
]);
|
|
}
|
|
}
|