Files
backend/app/Exports/RoadDanger/summaryAccidentPerformanceCity.php
2024-02-01 09:53:53 +00:00

142 lines
5.0 KiB
PHP

<?php
namespace App\Exports\RoadDanger;
use Illuminate\Contracts\View\View;
use Maatwebsite\Excel\Concerns\FromView;
use App\Models\ContractSubItems;
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
use Maatwebsite\Excel\Events\AfterSheet;
use Maatwebsite\Excel\Concerns\WithEvents;
use Maatwebsite\Excel\Concerns\WithDrawings;
use PhpOffice\PhpSpreadsheet\Worksheet\Drawing;
use Maatwebsite\Excel\Concerns\WithStyles;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
class summaryAccidentPerformanceCity implements FromView, ShouldAutoSize, WithEvents, WithDrawings, WithStyles
{
public function __construct($fromDate = null, $toDate = null, $province = null, $last_status_id = null)
{
$this->fromDate = $fromDate ?? null;
$this->toDate = $toDate ?? null;
$this->province = $province ?? null;
$this->last_status_id = $last_status_id ?? null;
}
public function view(): View
{
$fromDate = $this->fromDate;
$toDate = $this->toDate;
$province = $this->province;
$last_status_id = $this->last_status_id;
$cities = \App\Models\City::join('provinces', 'cities.province_id', '=', 'provinces.id')
->select(
'provinces.name_fa as province_fa',
'provinces.id as province_id',
'cities.name_fa as city_fa',
'cities.id as city_id',
)
->when($province, function($query, $province) {
return $query->where('province_id', $province);
})
->orderBy('cities.province_id', 'ASC')
->get();
$array = [];
foreach ($cities as $key => $value) {
$array[$value->city_id] = [
'province_fa' => $value->province_fa,
'city_fa' => $value->city_fa,
'avg' => '-',
'count' => '-'
];
}
$data = ContractSubItems::where('project_type_id', 2)
->when($this->fromDate, function ($query) use ($fromDate, $toDate) {
return $query->whereBetween('created_at', [$fromDate, $toDate]);
})
->when($this->province, function ($query, $province) {
return $query->where('province_id', $province);
})
->when($this->last_status_id, function ($query, $last_status_id) {
return $query->where('last_status_id', $last_status_id);
})
->orderBy('province_id', 'ASC')
->select('province_fa', 'city_fa', 'city_id')
->selectRaw("avg(progress_project) as avg")
->selectRaw('count(*) as count')
->groupBy('city_id')
->get();
foreach ($data as $key => $value) {
$array[$value->city_id] = [
'province_fa' => $value->province_fa,
'city_fa' => $value->city_fa,
'avg' => $value->avg,
'count' => $value->count
];
}
return view('excel.RoadDanger.summaryAccidentPerformanceCity', [
'roads' => $array,
'fromFa' => $fromDate ?? null,
'toFa' => $toDate ?? null
]);
}
/**
* @return array
*/
public function registerEvents(): array
{
return [
AfterSheet::class => function(AfterSheet $event) {
$event->sheet->getDelegate()->setRightToLeft(true);
},
];
}
public function drawings()
{
$drawing = new Drawing();
$drawing->setName('Logo');
$drawing->setDescription('This is my logo');
$drawing->setPath(public_path('/dist/logo.png'));
$drawing->setWidth(50);
$drawing->setHeight(50);
$drawing->setOffsetX(5);
$drawing->setOffsetY(5);
$drawing->setCoordinates('A1');
$drawing2 = new Drawing();
$drawing2->setName('Logo');
$drawing2->setDescription('This is my logo');
$drawing2->setPath(public_path('/dist/141icon.png'));
$drawing2->setWidth(50);
$drawing2->setHeight(50);
$drawing2->setOffsetX(5);
$drawing2->setOffsetY(5);
$drawing2->setCoordinates('B1');
return [$drawing, $drawing2];
}
public function styles(Worksheet $sheet)
{
return [
// Style the first row as bold text.
'A:BA' => [
'font' => [
'name' => 'B Nazanin'
]
],
];
}
}