2019-07-22 05:54:34 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
2019-07-23 01:25:53 +02:00
|
|
|
namespace App\Http\Controllers\ClientPortal;
|
2019-07-22 05:54:34 +02:00
|
|
|
|
|
|
|
use App\Filters\InvoiceFilters;
|
2019-07-23 05:31:53 +02:00
|
|
|
use App\Http\Controllers\Controller;
|
2019-08-29 06:07:04 +02:00
|
|
|
use App\Http\Requests\ClientPortal\ShowInvoiceRequest;
|
2019-07-22 05:54:34 +02:00
|
|
|
use App\Jobs\Entity\ActionEntity;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use App\Repositories\BaseRepository;
|
2019-08-28 04:36:53 +02:00
|
|
|
use App\Utils\Number;
|
2019-08-28 02:58:13 +02:00
|
|
|
use App\Utils\Traits\MakesDates;
|
2019-07-22 05:54:34 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-08-28 02:58:13 +02:00
|
|
|
use Barracuda\ArchiveStream\Archive;
|
2019-07-22 05:54:34 +02:00
|
|
|
use Illuminate\Http\Request;
|
2019-07-26 00:05:13 +02:00
|
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
use Yajra\DataTables\Facades\DataTables;
|
2019-07-25 06:51:00 +02:00
|
|
|
use Yajra\DataTables\Html\Builder;
|
2019-07-22 05:54:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class InvoiceController
|
|
|
|
* @package App\Http\Controllers\ClientPortal\InvoiceController
|
|
|
|
*/
|
|
|
|
|
2019-07-23 05:31:53 +02:00
|
|
|
class InvoiceController extends Controller
|
2019-07-22 05:54:34 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
use MakesHash;
|
2019-08-28 02:58:13 +02:00
|
|
|
use MakesDates;
|
2019-07-22 05:54:34 +02:00
|
|
|
/**
|
|
|
|
* Show the list of Invoices
|
|
|
|
*
|
|
|
|
* @param \App\Filters\InvoiceFilters $filters The filters
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
2019-07-25 06:51:00 +02:00
|
|
|
public function index(InvoiceFilters $filters, Builder $builder)
|
2019-08-14 04:16:09 +02:00
|
|
|
{//
|
2019-08-29 00:13:26 +02:00
|
|
|
$invoices = Invoice::filter($filters)->with('client', 'client.country');
|
2019-07-26 00:19:01 +02:00
|
|
|
|
2019-07-25 06:51:00 +02:00
|
|
|
if (request()->ajax()) {
|
2019-07-26 00:19:01 +02:00
|
|
|
|
2019-08-15 07:19:00 +02:00
|
|
|
return DataTables::of($invoices)->addColumn('action', function ($invoice) {
|
2019-09-05 01:52:49 +02:00
|
|
|
return '<a href="/client/invoices/'. $invoice->hashed_id .'" class="btn btn-xs btn-primary"><i class="glyphicon glyphicon-edit"></i>'.ctrans('texts.view').'</a>';
|
2019-07-26 00:05:13 +02:00
|
|
|
})
|
|
|
|
->addColumn('checkbox', function ($invoice){
|
2019-07-30 00:28:38 +02:00
|
|
|
return '<input type="checkbox" name="hashed_ids[]" value="'. $invoice->hashed_id .'"/>';
|
2019-07-26 00:05:13 +02:00
|
|
|
})
|
2019-08-14 04:16:09 +02:00
|
|
|
->editColumn('status_id', function ($invoice){
|
|
|
|
return Invoice::badgeForStatus($invoice->status);
|
2019-08-28 04:36:53 +02:00
|
|
|
})->editColumn('invoice_date', function ($invoice){
|
2019-08-29 00:13:26 +02:00
|
|
|
return $this->formatDate($invoice->invoice_date, $invoice->client->date_format());
|
2019-08-28 03:13:10 +02:00
|
|
|
})->editColumn('due_date', function ($invoice){
|
2019-08-29 00:13:26 +02:00
|
|
|
return $this->formatDate($invoice->due_date, $invoice->client->date_format());
|
2019-08-28 04:36:53 +02:00
|
|
|
})->editColumn('balance', function ($invoice) {
|
|
|
|
return Number::formatMoney($invoice->balance, $invoice->client->currency(), $invoice->client->country, $invoice->client->getMergedSettings());
|
|
|
|
})->editColumn('amount', function ($invoice) {
|
|
|
|
return Number::formatMoney($invoice->amount, $invoice->client->currency(), $invoice->client->country, $invoice->client->getMergedSettings());
|
2019-08-28 01:19:54 +02:00
|
|
|
})
|
2019-08-14 04:16:09 +02:00
|
|
|
->rawColumns(['checkbox', 'action', 'status_id'])
|
2019-07-25 06:51:00 +02:00
|
|
|
->make(true);
|
2019-07-26 00:19:01 +02:00
|
|
|
|
2019-07-25 06:51:00 +02:00
|
|
|
}
|
|
|
|
|
2019-08-14 07:40:22 +02:00
|
|
|
$data['html'] = $builder;
|
2019-07-22 05:54:34 +02:00
|
|
|
|
2019-07-25 06:51:00 +02:00
|
|
|
return view('portal.default.invoices.index', $data);
|
2019-07-22 05:54:34 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the specified resource.
|
|
|
|
*
|
|
|
|
* @param \App\Models\Invoice $invoice The invoice
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
2019-08-29 06:07:04 +02:00
|
|
|
public function show(ShowInvoiceRequest $request, Invoice $invoice)
|
2019-07-22 05:54:34 +02:00
|
|
|
{
|
2019-08-29 06:07:04 +02:00
|
|
|
$data = [
|
|
|
|
'invoice' => $invoice
|
|
|
|
];
|
|
|
|
|
2019-09-05 01:52:49 +02:00
|
|
|
return view('portal.default.invoices.show', $data);
|
2019-07-22 05:54:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-08-14 07:40:22 +02:00
|
|
|
* Pay one or more invoices
|
2019-07-22 05:54:34 +02:00
|
|
|
*
|
2019-08-14 07:40:22 +02:00
|
|
|
* @return View
|
2019-07-22 05:54:34 +02:00
|
|
|
*/
|
2019-08-14 12:23:44 +02:00
|
|
|
public function bulk()
|
2019-07-22 05:54:34 +02:00
|
|
|
{
|
|
|
|
|
2019-08-14 12:23:44 +02:00
|
|
|
$transformed_ids = $this->transformKeys(explode(",",request()->input('hashed_ids')));
|
2019-08-14 07:40:22 +02:00
|
|
|
|
2019-08-15 06:31:03 +02:00
|
|
|
if(request()->input('action') == 'payment')
|
|
|
|
return $this->makePayment($transformed_ids);
|
|
|
|
else if(request()->input('action') == 'download')
|
|
|
|
return $this->downloadInvoicePDF($transformed_ids);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private function makePayment(array $ids)
|
|
|
|
{
|
|
|
|
|
|
|
|
$invoices = Invoice::whereIn('id', $ids)
|
2019-08-14 07:40:22 +02:00
|
|
|
->whereClientId(auth()->user()->client->id)
|
2019-09-05 07:04:52 +02:00
|
|
|
->get();
|
|
|
|
|
|
|
|
$total = $invoices->sum('balance');
|
|
|
|
|
|
|
|
$invoices->filter(function ($invoice){
|
|
|
|
return $invoice->isPayable();
|
|
|
|
})->map(function ($invoice){
|
|
|
|
$invoice->balance = Number::formatMoney($invoice->balance, $invoice->client->currency(), $invoice->client->country, $invoice->client->getMergedSettings());
|
|
|
|
$invoice->due_date = $this->formatDate($invoice->due_date, $invoice->client->date_format());
|
|
|
|
|
|
|
|
return $invoice;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$formatted_total = Number::formatMoney($total, auth()->user()->client->currency(), auth()->user()->client->country, auth()->user()->client->getMergedSettings());
|
2019-08-14 07:40:22 +02:00
|
|
|
|
|
|
|
$data = [
|
|
|
|
'invoices' => $invoices,
|
2019-09-05 07:04:52 +02:00
|
|
|
'formatted_total' => $formatted_total,
|
|
|
|
'total' => $total,
|
2019-08-14 07:40:22 +02:00
|
|
|
];
|
2019-08-14 12:23:44 +02:00
|
|
|
|
2019-08-14 07:40:22 +02:00
|
|
|
return view('portal.default.invoices.payment', $data);
|
2019-08-15 06:31:03 +02:00
|
|
|
|
2019-07-22 05:54:34 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 06:31:03 +02:00
|
|
|
private function downloadInvoicePDF(array $ids)
|
|
|
|
{
|
|
|
|
$invoices = Invoice::whereIn('id', $ids)
|
|
|
|
->whereClientId(auth()->user()->client->id)
|
|
|
|
->get()
|
|
|
|
->filter(function ($invoice){
|
|
|
|
return $invoice->isPayable();
|
|
|
|
});
|
2019-07-22 05:54:34 +02:00
|
|
|
|
2019-08-15 06:31:03 +02:00
|
|
|
//generate pdf's of invoices locally
|
|
|
|
|
|
|
|
|
|
|
|
//if only 1 pdf, output to buffer for download
|
|
|
|
|
|
|
|
|
|
|
|
//if multiple pdf's, output to zip stream using Barracuda lib
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
$zip = Archive::instance_by_useragent(date('Y-m-d') . '_' . str_replace(' ', '_', trans('texts.invoices')));
|
|
|
|
$zip->add_file($name, $document->getRaw());
|
|
|
|
$zip->finish();
|
|
|
|
*/
|
|
|
|
}
|
2019-07-22 05:54:34 +02:00
|
|
|
|
2019-08-15 06:31:03 +02:00
|
|
|
|
2019-07-22 05:54:34 +02:00
|
|
|
}
|