393e227de5
后端: - 新增 product_images 表,支持每商品最多5张图(服务端压缩至1200px/JPEG85%) - products 表新增 public_id(UUID)、description 字段 - 新增商品详情接口、二维码接口、公开商品接口(无鉴权) - 修复 XLS 导入:OLE2 magic bytes 检测 + 临时文件解析,兼容 extrame/xls - 修复商品/名称/系列/规格三张表导入数据为0(LastCol()=0 bug) - 所有导入接口返回 total/imported/skipped 统计 - config 新增 StorageConfig,支持 STORAGE_* 环境变量覆盖 - 种子数据修复:products 补 public_id、新增 product_images TRUNCATE、schema.sql 表名修正 前端: - 商品详情页:图片上传/删除、描述内联编辑、二维码弹窗、公开链接复制 - 公开商品页:无鉴权路由 /product/:public_id,Flutter Web SPA - 商品详情列表(批次追踪)商品名超链接跳转详情页 - 导航「商品管理」改名「商品详情」 - 所有列表表格新增每页条数选择(10/20/50/100) - 表格列头内嵌筛选(FilterableColumnHeader) - 导出 Excel 功能(入库/出库/库存/财务/批次/往来单位) - 网络恢复自动刷新 + 离线缓存展示 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
103 lines
2.5 KiB
Dart
103 lines
2.5 KiB
Dart
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import '../core/api/api_client.dart';
|
|
import '../core/auth/auth_state.dart';
|
|
import '../core/models/page_result.dart';
|
|
import '../models/partner.dart';
|
|
import '../repositories/partner_repository.dart';
|
|
import 'connectivity_provider.dart';
|
|
|
|
final partnerRepositoryProvider = Provider<PartnerRepository>((ref) {
|
|
return PartnerRepository(ref.watch(apiClientProvider));
|
|
});
|
|
|
|
// Supplier list provider for dropdowns
|
|
final supplierListProvider =
|
|
AsyncNotifierProvider<PartnerListNotifier, PageResult<Partner>>(
|
|
() => PartnerListNotifier(type: 'supplier'),
|
|
);
|
|
|
|
// Customer list provider
|
|
final customerListProvider =
|
|
AsyncNotifierProvider<PartnerListNotifier, PageResult<Partner>>(
|
|
() => PartnerListNotifier(type: 'customer'),
|
|
);
|
|
|
|
class PartnerListNotifier extends AsyncNotifier<PageResult<Partner>> {
|
|
final String? type;
|
|
int _page = 1;
|
|
int _pageSize = 20;
|
|
String _keyword = '';
|
|
PageResult<Partner>? _cache;
|
|
|
|
PartnerListNotifier({this.type});
|
|
|
|
@override
|
|
Future<PageResult<Partner>> build() async {
|
|
ref.watch(authStateProvider.select((s) => s.user?.shopId));
|
|
ref.watch(networkRecoveryCountProvider);
|
|
try {
|
|
final result = await _fetch();
|
|
_cache = result;
|
|
return result;
|
|
} catch (_) {
|
|
if (_cache != null) return _cache!;
|
|
rethrow;
|
|
}
|
|
}
|
|
|
|
Future<PageResult<Partner>> _fetch() {
|
|
return ref.read(partnerRepositoryProvider).list(
|
|
type: type,
|
|
keyword: _keyword.isEmpty ? null : _keyword,
|
|
page: _page,
|
|
pageSize: _pageSize,
|
|
);
|
|
}
|
|
|
|
void setPage(int page) {
|
|
_page = page;
|
|
reload();
|
|
}
|
|
|
|
void setPageSize(int pageSize) {
|
|
_pageSize = pageSize;
|
|
_page = 1;
|
|
reload();
|
|
}
|
|
|
|
void setKeyword(String keyword) {
|
|
_keyword = keyword;
|
|
_page = 1;
|
|
reload();
|
|
}
|
|
|
|
void reload() {
|
|
state = const AsyncValue.loading();
|
|
_fetch().then((result) {
|
|
_cache = result;
|
|
state = AsyncValue.data(result);
|
|
}, onError: (e, st) {
|
|
if (_cache != null) {
|
|
state = AsyncValue.data(_cache!);
|
|
} else {
|
|
state = AsyncValue.error(e, st);
|
|
}
|
|
});
|
|
}
|
|
|
|
Future<void> createPartner(Map<String, dynamic> data) async {
|
|
await ref.read(partnerRepositoryProvider).create(data);
|
|
reload();
|
|
}
|
|
|
|
Future<void> updatePartner(int id, Map<String, dynamic> data) async {
|
|
await ref.read(partnerRepositoryProvider).update(id, data);
|
|
reload();
|
|
}
|
|
|
|
Future<void> deletePartner(int id) async {
|
|
await ref.read(partnerRepositoryProvider).delete(id);
|
|
reload();
|
|
}
|
|
}
|