- Introduced `ApiErrorTranslator` to normalize and translate API error messages, providing clearer feedback in French. - Updated all Filament pages (Articles, Documents, Divers, Journaux, Tiers, TablesExplorer) to utilize the new error translation mechanism, improving user experience during API interactions. - Added validation for required fields before API calls, ensuring users receive immediate feedback when mandatory inputs are missing. - Implemented tracking properties to distinguish between "never searched" and "searched without results," enhancing the user interface. - Removed the obsolete `$results` property from the Articles page and added a new `$barcode` property to align with API requirements. - Updated documentation to reflect changes in API behavior and error handling, including new metadata returned by the `art_list` endpoint. - Added new tests to verify the functionality of the barcode handling and validation logic.
101 lines
2.8 KiB
PHP
101 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Pages;
|
|
|
|
use App\Exceptions\LogisticsApiException;
|
|
use App\Services\LogisticsService;
|
|
use App\Support\ApiErrorTranslator;
|
|
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 $mode = 'read';
|
|
|
|
public string $search = '';
|
|
|
|
public string $select = 'artid,name1';
|
|
|
|
public string $barcode = '';
|
|
|
|
public string $stockArticleId = '';
|
|
|
|
public array $data = [];
|
|
|
|
public array $stockData = [];
|
|
|
|
public ?array $metadata = null;
|
|
|
|
public ?string $errorMessage = null;
|
|
|
|
public bool $hasSearched = false;
|
|
|
|
public bool $hasCheckedStock = false;
|
|
|
|
public function searchArticles(): void
|
|
{
|
|
$this->errorMessage = null;
|
|
$this->hasSearched = true;
|
|
|
|
try {
|
|
$service = app(LogisticsService::class);
|
|
|
|
$params = array_filter([
|
|
'select' => $this->select,
|
|
'search' => $this->search,
|
|
'barcode' => $this->barcode,
|
|
]);
|
|
|
|
$response = $service->artList($params);
|
|
|
|
$this->data = $response['data'] ?? [];
|
|
$this->metadata = $response['metadata'] ?? null;
|
|
$this->errorMessage = ApiErrorTranslator::translate($response['error'] ?? null);
|
|
|
|
} catch (LogisticsApiException $e) {
|
|
$this->errorMessage = ApiErrorTranslator::translate($e->getMessage());
|
|
$this->data = [];
|
|
} catch (\Throwable $e) {
|
|
$this->errorMessage = ApiErrorTranslator::translate($e->getMessage());
|
|
$this->data = [];
|
|
}
|
|
}
|
|
|
|
public function getStock(): void
|
|
{
|
|
$this->errorMessage = null;
|
|
|
|
if (blank($this->stockArticleId)) {
|
|
$this->errorMessage = 'Le champ identifiant article (ARTID) est obligatoire pour verifier le stock.';
|
|
|
|
return;
|
|
}
|
|
|
|
$this->hasCheckedStock = true;
|
|
|
|
try {
|
|
$service = app(LogisticsService::class);
|
|
$response = $service->artGetStock($this->stockArticleId);
|
|
|
|
$this->stockData = $response['data'] ?? [];
|
|
$this->errorMessage = ApiErrorTranslator::translate($response['error'] ?? null);
|
|
} catch (LogisticsApiException $e) {
|
|
$this->errorMessage = ApiErrorTranslator::translate($e->getMessage());
|
|
$this->stockData = [];
|
|
} catch (\Throwable $e) {
|
|
$this->errorMessage = ApiErrorTranslator::translate($e->getMessage());
|
|
$this->stockData = [];
|
|
}
|
|
}
|
|
}
|