style: Pint 포맷팅 적용

This commit is contained in:
김보곤
2026-02-25 11:45:01 +09:00
parent 68b1622a4e
commit 9a7c548246
199 changed files with 1420 additions and 1083 deletions

View File

@@ -63,6 +63,7 @@ protected function seedPricesFromItems(): void
if ($salesPrice <= 0) {
$skipped++;
continue;
}
@@ -79,7 +80,7 @@ protected function seedPricesFromItems(): void
'sales_price' => $salesPrice,
'updated_by' => 1,
]);
$this->command->line(" 업데이트: {$item->code} => " . number_format($salesPrice));
$this->command->line(" 업데이트: {$item->code} => ".number_format($salesPrice));
} else {
// 새 단가 생성
Price::create([
@@ -102,10 +103,10 @@ protected function seedPricesFromItems(): void
'created_by' => 1,
]);
$created++;
$this->command->line(" 생성: {$item->code} => " . number_format($salesPrice));
$this->command->line(" 생성: {$item->code} => ".number_format($salesPrice));
}
}
$this->command->info(" 생성: {$created}개, 스킵(단가없음): {$skipped}");
}
}
}