- 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.
38 lines
1.3 KiB
PHP
38 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin\Finance\Payroll;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\Admin\Finance\PayrollAdjustmentRequest;
|
|
use App\Models\Payroll;
|
|
use App\Models\PayrollAdjustment;
|
|
use App\Services\Admin\Finance\Payroll\PayrollAdjustmentService;
|
|
use Illuminate\Http\RedirectResponse;
|
|
|
|
class PayrollAdjustmentController extends Controller
|
|
{
|
|
public function __construct(
|
|
private PayrollAdjustmentService $service
|
|
) {}
|
|
|
|
public function store(PayrollAdjustmentRequest $request, Payroll $payroll): RedirectResponse
|
|
{
|
|
return $this->handleAction(
|
|
fn () => $this->service->store($payroll, $request->validated()),
|
|
'Adjustment gaji berhasil ditambahkan.',
|
|
'admin.finance.payroll-periods.show',
|
|
parameters: ['payroll_period' => $payroll->payroll_period_id]
|
|
);
|
|
}
|
|
|
|
public function destroy(PayrollAdjustment $payrollAdjustment): RedirectResponse
|
|
{
|
|
return $this->handleAction(
|
|
fn () => $this->service->destroy($payrollAdjustment),
|
|
'Adjustment gaji berhasil dihapus.',
|
|
'admin.finance.payroll-periods.show',
|
|
parameters: ['payroll_period' => $payrollAdjustment->payroll->payroll_period_id]
|
|
);
|
|
}
|
|
}
|