fix: Show skip/error reasons in car import results

- Backend: Include car_name in skipped response
- Frontend: Display skip details (car name + reason like "Already imported (ID: 123)")
- Frontend: Display error details with error message
- Add import process description during loading

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
AutonetSellCar Deploy
2026-02-18 09:08:58 +09:00
parent d98e9287d3
commit 02a88da430
2 changed files with 94 additions and 32 deletions

View File

@@ -1423,6 +1423,7 @@ async def import_cars_from_carmodoo(
skipped.append({
"car_no": car_data.car_no,
"car_id": existing.id,
"car_name": car_data.car_name or existing.name or car_data.car_no,
"reason": "already exists"
})
continue