mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
86 lines
2.6 KiB
PHP
86 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace Crater\Http\Controllers\V1\Report;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Crater\Models\Company;
|
|
use PDF;
|
|
use Carbon\Carbon;
|
|
use Crater\Models\Invoice;
|
|
use Crater\Models\Expense;
|
|
use Crater\Models\CompanySetting;
|
|
use Crater\Http\Controllers\Controller;
|
|
use Illuminate\Support\Facades\App;
|
|
|
|
class ProfitLossReportController extends Controller
|
|
{
|
|
/**
|
|
* Handle the incoming request.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param string $hash
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function __invoke(Request $request, $hash)
|
|
{
|
|
$company = Company::where('unique_hash', $hash)->first();
|
|
|
|
$locale = CompanySetting::getSetting('language', $company->id);
|
|
|
|
App::setLocale($locale);
|
|
|
|
$invoicesAmount = Invoice::whereCompany($company->id)
|
|
->applyFilters($request->only(['from_date', 'to_date']))
|
|
->wherePaidStatus(Invoice::STATUS_PAID)
|
|
->sum('total');
|
|
|
|
$expenseCategories = Expense::with('category')
|
|
->whereCompany($company->id)
|
|
->applyFilters($request->only(['from_date', 'to_date']))
|
|
->expensesAttributes()
|
|
->get();
|
|
|
|
$totalAmount = 0;
|
|
foreach ($expenseCategories as $category) {
|
|
$totalAmount += $category->total_amount;
|
|
}
|
|
|
|
$dateFormat = CompanySetting::getSetting('carbon_date_format', $company->id);
|
|
$from_date = Carbon::createFromFormat('Y-m-d', $request->from_date)->format($dateFormat);
|
|
$to_date = Carbon::createFromFormat('Y-m-d', $request->to_date)->format($dateFormat);
|
|
|
|
$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([
|
|
'company' => $company,
|
|
'income' => $invoicesAmount,
|
|
'expenseCategories' => $expenseCategories,
|
|
'totalExpense' => $totalAmount,
|
|
'colorSettings' => $colorSettings,
|
|
'company' => $company,
|
|
'from_date' => $from_date,
|
|
'to_date' => $to_date
|
|
]);
|
|
$pdf = PDF::loadView('app.pdf.reports.profit-loss');
|
|
|
|
if ($request->has('download')) {
|
|
return $pdf->download();
|
|
}
|
|
|
|
return $pdf->stream();
|
|
}
|
|
}
|