fix: [production] 절곡 검사 products 배열 FormRequest 검증 규칙 추가

- StoreItemInspectionRequest에 inspection_data.products 검증 규칙 누락으로 validated()에서 제거되던 버그 수정
- products.*.id, bendingStatus, lengthMeasured, widthMeasured, gapPoints 규칙 추가

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-05 10:39:51 +09:00
parent 1a8bb46137
commit ef7d9fae24
2 changed files with 11 additions and 1 deletions

View File

@@ -29,7 +29,7 @@ class RecordStorageUsage extends Command
*/
public function handle(): int
{
$tenants = Tenant::active()->get();
$tenants = Tenant::where('tenant_st_code', 'active')->get();
$recorded = 0;
foreach ($tenants as $tenant) {