- Updated CustomerService to simplify getAll method. - Refactored ProductService to utilize HasRoleChecks trait and improved role verification logic. - Enhanced ProductVariantService with new methods for fetching data for restocking and transactions. - Cleaned up RawMaterialService by removing unused methods and improving data retrieval. - Adjusted SupplierService to streamline getAll method. - Refactored RoleService to use Spatie's Role model and improved role filtering logic. - Updated NotificationService to handle role labels more effectively. - Improved StockMutationService by removing redundant paginated method. - Cleaned up various frontend components to directly accept necessary props instead of nested data objects. - Updated tests to reflect changes in service method names and ensure proper notification handling.
72 lines
3.0 KiB
PHP
72 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Concerns\HasRoleChecks;
|
|
use App\Enums\Role;
|
|
use App\Services\AnalysisService;
|
|
use Illuminate\Http\Request;
|
|
use Inertia\Inertia;
|
|
use Inertia\Response;
|
|
|
|
class AnalysisController extends Controller
|
|
{
|
|
use HasRoleChecks;
|
|
|
|
public function __construct(
|
|
private AnalysisService $service
|
|
) {}
|
|
|
|
public function index(Request $request): Response
|
|
{
|
|
$user = $request->user();
|
|
$isManager = self::hasAnyRole([Role::OWNER, Role::DEVELOPER, Role::ADMIN_TOKO, Role::DIREKTUR]);
|
|
|
|
$startDate = $request->input('start_date');
|
|
$endDate = $request->input('end_date');
|
|
|
|
$attendance = $this->service->getAttendanceStats($startDate, $endDate);
|
|
$myAttendance = $this->service->getMyAttendance($user, $startDate, $endDate);
|
|
$cashOverview = $this->service->getCashOverview();
|
|
$rawMaterialStock = $this->service->getRawMaterialStock();
|
|
$productStock = $this->service->getProductStock();
|
|
$revenueSummary = $this->service->getRevenueSummary($startDate, $endDate);
|
|
$monthlyRevenue = $this->service->getMonthlyRevenue($startDate, $endDate);
|
|
$monthlyRevenueByChannel = $this->service->getMonthlyRevenueByChannel($startDate, $endDate);
|
|
$revenueByPaymentType = $this->service->getRevenueByPaymentType($startDate, $endDate);
|
|
$expenseSummary = $this->service->getExpenseSummary($startDate, $endDate);
|
|
$monthlyExpense = $this->service->getMonthlyExpense($startDate, $endDate);
|
|
$busyHours = $this->service->getBusyHours($startDate, $endDate);
|
|
$profitMetrics = $this->service->getProfitMetrics($startDate, $endDate);
|
|
$topSuppliers = $this->service->getTopSuppliers($startDate, $endDate);
|
|
$topCustomers = $this->service->getTopCustomers($startDate, $endDate);
|
|
$topProducts = $this->service->getTopProducts($startDate, $endDate);
|
|
$marketingSales = $this->service->getMarketingSales($startDate, $endDate);
|
|
|
|
return Inertia::render('admin/analysis/index', [
|
|
'filters' => [
|
|
'start_date' => $startDate,
|
|
'end_date' => $endDate,
|
|
],
|
|
'attendance' => $attendance,
|
|
'myAttendance' => $myAttendance,
|
|
'isManager' => $isManager,
|
|
'cashOverview' => $cashOverview,
|
|
'rawMaterialStock' => $rawMaterialStock,
|
|
'productStock' => $productStock,
|
|
'revenueSummary' => $revenueSummary,
|
|
'monthlyRevenue' => $monthlyRevenue,
|
|
'monthlyRevenueByChannel' => $monthlyRevenueByChannel,
|
|
'revenueByPaymentType' => $revenueByPaymentType,
|
|
'expenseSummary' => $expenseSummary,
|
|
'monthlyExpense' => $monthlyExpense,
|
|
'busyHours' => $busyHours,
|
|
'profitMetrics' => $profitMetrics,
|
|
'topSuppliers' => $topSuppliers,
|
|
'topCustomers' => $topCustomers,
|
|
'topProducts' => $topProducts,
|
|
'marketingSales' => $marketingSales,
|
|
]);
|
|
}
|
|
}
|