style: Pint 포맷팅 적용
This commit is contained in:
@@ -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}개");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user