- 機台日誌:對齊 Luxury UI 規範,實作整合式佈局與分頁組件。 - 多語系:完成機台日誌繁、英、日三語系翻譯與動態處理。 - UI 規範:更新 SKILL.md 定義「標準列表 Bible」。 - 後端:完善 TenantScoped 隔離邏輯,修復儀表板死循環與 User Model 缺失。 - IoT:擴展機台、會員 Model 並建立交易、商品、狀態等核心表結構。 - 基礎設施:設置台北時區與 Docker 環境變數同步。
58 lines
1.8 KiB
PHP
58 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs\Machine;
|
|
|
|
use App\Models\Machine\Machine;
|
|
use App\Models\Machine\CoinInventory;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class ProcessCoinInventory implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
protected $serialNo;
|
|
protected $data;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*/
|
|
public function __construct(string $serialNo, array $data)
|
|
{
|
|
$this->serialNo = $serialNo;
|
|
$this->data = $data;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*/
|
|
public function handle(): void
|
|
{
|
|
try {
|
|
$machine = Machine::where('serial_no', $this->serialNo)->firstOrFail();
|
|
|
|
// Sync inventory: typically the IoT device sends the full state
|
|
// If it sends partial, logic would differ. For now, we assume simple updateOrCreate per denomination.
|
|
if (isset($this->data['inventories']) && is_array($this->data['inventories'])) {
|
|
foreach ($this->data['inventories'] as $inv) {
|
|
CoinInventory::updateOrCreate(
|
|
[
|
|
'machine_id' => $machine->id,
|
|
'denomination' => $inv['denomination'],
|
|
'type' => $inv['type'] ?? 'coin'
|
|
],
|
|
['count' => $inv['count']]
|
|
);
|
|
}
|
|
}
|
|
} catch (\Exception $e) {
|
|
Log::error("Failed to process coin inventory for machine {$this->serialNo}: " . $e->getMessage());
|
|
throw $e;
|
|
}
|
|
}
|
|
}
|