mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-15 17:24:10 +00:00
Split PDFService.php (3 classes + 2 interfaces in one file) into separate files. Move GotenbergPDFDriver from app/Services/PDFDrivers/ into app/Services/Pdf/. Normalize casing from ALL-CAPS PDF to Pdf throughout: facade, provider, service, driver factory, and Gotenberg driver. Fix PaymentService using Barryvdh DomPDF facade directly instead of the app's PDF facade (bypassed the driver factory). Report controllers also updated to use the app facade.
89 lines
2.6 KiB
PHP
89 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\V1\Admin\Report;
|
|
|
|
use App\Facades\Pdf;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Company;
|
|
use App\Models\CompanySetting;
|
|
use App\Models\Currency;
|
|
use App\Models\Tax;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\App;
|
|
|
|
class TaxSummaryReportController extends Controller
|
|
{
|
|
/**
|
|
* Handle the incoming request.
|
|
*
|
|
* @param string $hash
|
|
* @return JsonResponse
|
|
*/
|
|
public function __invoke(Request $request, $hash)
|
|
{
|
|
$company = Company::where('unique_hash', $hash)->first();
|
|
|
|
$this->authorize('view report', $company);
|
|
|
|
$locale = CompanySetting::getSetting('language', $company->id);
|
|
|
|
App::setLocale($locale);
|
|
|
|
$taxTypes = Tax::with('taxType', 'invoice', 'invoiceItem')
|
|
->whereCompany($company->id)
|
|
->whereInvoicesFilters($request->only(['from_date', 'to_date']))
|
|
->taxAttributes()
|
|
->get();
|
|
|
|
$totalAmount = 0;
|
|
foreach ($taxTypes as $taxType) {
|
|
$totalAmount += $taxType->total_tax_amount;
|
|
}
|
|
|
|
$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));
|
|
|
|
$colors = [
|
|
'primary_text_color',
|
|
'heading_text_color',
|
|
'section_heading_text_color',
|
|
'border_color',
|
|
'body_text_color',
|
|
'footer_text_color',
|
|
'footer_total_color',
|
|
'footer_bg_color',
|
|
'date_text_color',
|
|
];
|
|
|
|
$colorSettings = CompanySetting::whereIn('option', $colors)
|
|
->whereCompany($company->id)
|
|
->get();
|
|
|
|
view()->share([
|
|
'taxTypes' => $taxTypes,
|
|
'totalTaxAmount' => $totalAmount,
|
|
'colorSettings' => $colorSettings,
|
|
'company' => $company,
|
|
'from_date' => $from_date,
|
|
'to_date' => $to_date,
|
|
'currency' => $currency,
|
|
]);
|
|
|
|
$pdf = Pdf::loadView('app.pdf.reports.tax-summary');
|
|
|
|
if ($request->has('preview')) {
|
|
return view('app.pdf.reports.tax-summary');
|
|
}
|
|
|
|
if ($request->has('download')) {
|
|
return $pdf->download();
|
|
}
|
|
|
|
return $pdf->stream();
|
|
}
|
|
}
|