Files
logisticsAPI/app/Filament/Pages/Articles.php
2026-02-20 08:40:00 +01:00

77 lines
1.9 KiB
PHP

<?php
namespace App\Filament\Pages;
use App\Services\LogisticsService;
use Filament\Pages\Page;
use Filament\Support\Icons\Heroicon;
class Articles extends Page
{
protected static string|\BackedEnum|null $navigationIcon = Heroicon::OutlinedCube;
protected static ?string $navigationLabel = 'Articles';
protected static ?string $title = 'Articles';
protected static ?int $navigationSort = 2;
protected string $view = 'filament.pages.articles';
public string $search = '';
public string $select = 'artid,artname';
public int $results = 10;
public string $stockArticleId = '';
public array $data = [];
public array $stockData = [];
public ?array $metadata = null;
public ?string $errorMessage = null;
public function searchArticles(): void
{
try {
$service = app(LogisticsService::class);
$params = array_filter([
'select' => $this->select,
'results' => $this->results,
'search' => $this->search,
]);
$response = $service->artList($params);
$this->data = $response['data'] ?? [];
$this->metadata = $response['metadata'] ?? null;
$this->errorMessage = $response['error'] ?? null;
} catch (\Throwable $e) {
$this->errorMessage = $e->getMessage();
$this->data = [];
}
}
public function getStock(): void
{
if (blank($this->stockArticleId)) {
return;
}
try {
$service = app(LogisticsService::class);
$response = $service->artGetStock($this->stockArticleId);
$this->stockData = $response['data'] ?? [];
$this->errorMessage = $response['error'] ?? null;
} catch (\Throwable $e) {
$this->errorMessage = $e->getMessage();
$this->stockData = [];
}
}
}