backup: 사용하지 않는 파일 삭제 전 복구 지점

- 전체 371개 파일 중 82개 미사용 파일 식별
- Phase 1: 33개 파일 삭제 예정 (100% 안전)
- Phase 2: 30개 파일 삭제 검토 예정
- Phase 3: 19개 파일 수동 검토 예정

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
JiWoong Sul
2025-09-02 19:51:40 +09:00
parent 650cd4be55
commit c419f8f458
149 changed files with 12934 additions and 3644 deletions

View File

@@ -1,6 +1,7 @@
import 'package:flutter/foundation.dart';
import 'package:get_it/get_it.dart';
import 'package:injectable/injectable.dart';
import 'package:superport/core/constants/app_constants.dart';
import 'package:superport/core/errors/exceptions.dart';
import 'package:superport/core/errors/failures.dart';
import 'package:superport/data/datasources/remote/warehouse_remote_datasource.dart';
@@ -15,7 +16,7 @@ class WarehouseService {
// 창고 위치 목록 조회
Future<PaginatedResponse<WarehouseLocation>> getWarehouseLocations({
int page = 1,
int perPage = 20,
int perPage = AppConstants.warehousePageSize,
bool? isActive,
String? search,
bool includeInactive = false,
@@ -65,7 +66,7 @@ class WarehouseService {
try {
final request = WarehouseRequestDto(
name: location.name,
zipcodesZipcode: null, // WarehouseRequestDto에는 zipcodes_zipcode만 있음
zipcodesZipcode: location.zipcode, // 우편번호 전달
remark: location.remark,
);
@@ -83,7 +84,7 @@ class WarehouseService {
try {
final request = WarehouseUpdateRequestDto(
name: location.name,
zipcodesZipcode: null, // WarehouseUpdateRequestDto에는 zipcodes_zipcode만 있음
zipcodesZipcode: location.zipcode, // 우편번호 전달
remark: location.remark,
);
@@ -111,7 +112,7 @@ class WarehouseService {
Future<List<Map<String, dynamic>>> getWarehouseEquipment(
int warehouseId, {
int page = 1,
int perPage = 20,
int perPage = AppConstants.warehousePageSize,
}) async {
try {
final response = await _remoteDataSource.getWarehouseEquipment(