mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-09-03 05:41:07 +00:00
chore(reporting): remove legacy-era reporting sources
This commit is contained in:
@@ -1,99 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domains\Reporting\Http\Controllers;
|
||||
|
||||
use App\Domains\Accounts\Models\Company;
|
||||
use App\Domains\Accounts\Models\CompanySetting;
|
||||
use App\Domains\Contacts\Models\Customer;
|
||||
use App\Domains\Money\Models\Currency;
|
||||
use App\Platform\Http\Controller;
|
||||
use App\Platform\Pdf\Facades\Pdf;
|
||||
use App\Platform\Pdf\Rendering\PdfPageSetup;
|
||||
use App\Platform\Pdf\Rendering\PdfTemplateUtils;
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\App;
|
||||
use Silber\Bouncer\BouncerFacade;
|
||||
|
||||
class CustomerSalesReportController extends Controller
|
||||
{
|
||||
/**
|
||||
* Handle the incoming request.
|
||||
*
|
||||
* @param string $hash
|
||||
* @return JsonResponse
|
||||
*/
|
||||
public function __invoke(Request $request, $hash)
|
||||
{
|
||||
$company = Company::where('unique_hash', $hash)->firstOrFail();
|
||||
|
||||
// These routes carry no company header, so ScopeBouncer is not in their
|
||||
// middleware stack and the ability scope was never set. 'view-financial-reports'
|
||||
// is stored scoped to a company, so the unscoped check always failed and every
|
||||
// report PDF answered 403. Scope to the company named in the URL: the policy
|
||||
// still checks membership, so this grants nothing new.
|
||||
BouncerFacade::scope()->to($company->id);
|
||||
|
||||
$this->authorize('view report', $company);
|
||||
|
||||
$locale = CompanySetting::getSetting('language', $company->id);
|
||||
|
||||
App::setLocale($locale);
|
||||
|
||||
$start = Carbon::createFromFormat('Y-m-d', $request->from_date);
|
||||
$end = Carbon::createFromFormat('Y-m-d', $request->to_date);
|
||||
|
||||
$customers = Customer::with(['invoices' => function ($query) use ($start, $end) {
|
||||
$query->whereBetween(
|
||||
'invoice_date',
|
||||
[$start->format('Y-m-d'), $end->format('Y-m-d')]
|
||||
);
|
||||
}])
|
||||
->where('company_id', $company->id)
|
||||
->applyInvoiceFilters($request->only(['from_date', 'to_date']))
|
||||
->get();
|
||||
|
||||
$totalAmount = 0;
|
||||
foreach ($customers as $customer) {
|
||||
$customerTotalAmount = 0;
|
||||
foreach ($customer->invoices as $invoice) {
|
||||
$customerTotalAmount += $invoice->base_total;
|
||||
}
|
||||
$customer->totalAmount = $customerTotalAmount;
|
||||
$totalAmount += $customerTotalAmount;
|
||||
}
|
||||
|
||||
$dateFormat = CompanySetting::getSetting('carbon_date_format', $company->id);
|
||||
$from_date = Carbon::createFromFormat('Y-m-d', $request->from_date)->translatedFormat($dateFormat);
|
||||
$to_date = Carbon::createFromFormat('Y-m-d', $request->to_date)->translatedFormat($dateFormat);
|
||||
$currency = Currency::findOrFail(CompanySetting::getSetting('currency', $company->id));
|
||||
|
||||
view()->share([
|
||||
'customers' => $customers,
|
||||
'totalAmount' => $totalAmount,
|
||||
'company' => $company,
|
||||
'logo' => $company->logo_path,
|
||||
'from_date' => $from_date,
|
||||
'to_date' => $to_date,
|
||||
'currency' => $currency,
|
||||
]);
|
||||
|
||||
// Renders a same-named file from storage/app/templates/pdf/reports/
|
||||
// when one exists, so a report can be overridden without a
|
||||
// template picker it has no concept of.
|
||||
$templatePath = PdfTemplateUtils::resolveView('reports', 'sales-customers');
|
||||
|
||||
$pdf = Pdf::loadView($templatePath, [], PdfPageSetup::forReports());
|
||||
|
||||
if ($request->has('preview')) {
|
||||
return view($templatePath);
|
||||
}
|
||||
|
||||
if ($request->has('download')) {
|
||||
return $pdf->download();
|
||||
}
|
||||
|
||||
return $pdf->stream();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user