Files
jiu/client/lib/providers/finance_provider.dart
T
wangjia 6238b86dcb feat(client): 登录/注册页照原型重建,ds 真相源组件族统一全部屏
- 登录/注册(login.html/register.html 1:1):两栏卡片+品牌渐变面板+主题小衣服
  pill(onSurface 变体)+记住我(记录并预填最近账号)+原型式 toast 校验;
  登录 fidelity 1.4–2.1% 三主题全绿;注册暂不入闸(少 门店编号/兑换券 字段,
  已记 CONTRACT,screens.mjs 留存根)
- ds 原子补齐:DsToast(.toast 单例)/DsCheck(.check/.agree)/DsButton lg 档/
  DsSelect 替换全部旧 DropdownButton/DsField label 在上/DsInput 后缀与密码形态
- 全屏统一:对话框按钮全 DsButton、盒式输入主题钉死(visualDensity.standard、
  h38、InputDecorationTheme 渗漏修复)、图标全 lucide、JetBrains Mono 三端同源、
  BrandMark 真相源 logo、只读模式写操作全量守卫(WriteGuard+DsToast)
- 出入库列表:版式对齐原型(卡片对齐+搜索框居中)、KPI 近30天滚动、结清后
  失效财务应收应付表;商品编辑抽屉介绍库改搜索下拉、图片双击全屏预览
- 删除旧 UI 死代码:DataTableCard/FormDialog/PageScaffold/SearchChip/
  SelectProductDialog/tabStateProvider
- golden/fidelity:stock-in/out 补注册(9%)、login 入册(8%)、goldens 全量重打;
  修复 pubspec flutter_web_plugins 非法声明(CI pub get 阻断)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01JJ1g8XV1YhhmHRzhwWEW7o
2026-07-03 09:58:14 +08:00

136 lines
3.9 KiB
Dart

import 'package:flutter_riverpod/flutter_riverpod.dart';
import '../core/api/api_client.dart';
import '../core/auth/auth_state.dart';
import '../core/config/app_constants.dart';
import '../core/models/page_result.dart';
import '../models/finance.dart';
import '../repositories/finance_repository.dart';
final financeRepositoryProvider = Provider<FinanceRepository>((ref) {
return FinanceRepository(ref.watch(apiClientProvider));
});
final financeListProvider =
AsyncNotifierProvider<FinanceListNotifier, PageResult<FinanceRecord>>(
FinanceListNotifier.new,
);
class FinanceListNotifier extends AsyncNotifier<PageResult<FinanceRecord>> {
int _page = 1;
int _pageSize = AppConstants.defaultPageSize;
String _type = '';
String _month = '';
String _startDate = '';
String _endDate = '';
@override
Future<PageResult<FinanceRecord>> build() {
ref.watch(authStateProvider.select((s) => s.user?.shopId));
return _fetch();
}
Future<PageResult<FinanceRecord>> _fetch() {
return ref.read(financeRepositoryProvider).listRecords(
type: _type.isEmpty ? null : _type,
month: _month.isEmpty ? null : _month,
startDate: _startDate.isEmpty ? null : _startDate,
endDate: _endDate.isEmpty ? null : _endDate,
page: _page,
pageSize: _pageSize,
);
}
void setType(String type) {
_type = type;
_page = 1;
reload();
}
void setMonth(String month) {
_month = month;
_startDate = '';
_endDate = '';
_page = 1;
reload();
}
/// 日期区间(本季/自定义时间范围);与 month 互斥。
void setRange(String startDate, String endDate) {
_startDate = startDate;
_endDate = endDate;
_month = '';
_page = 1;
reload();
}
void setPage(int page) {
_page = page;
reload();
}
void setPageSize(int pageSize) {
_pageSize = pageSize;
_page = 1;
reload();
}
void reload() {
// 保留上一次数据(isReloading)→ 屏幕渲染旧内容 + 半透明进度,不白屏。
state = const AsyncValue<PageResult<FinanceRecord>>.loading()
.copyWithPrevious(state);
_fetch().then(
(result) => state = AsyncValue.data(result),
onError: (e, st) => state =
AsyncValue<PageResult<FinanceRecord>>.error(e, st)
.copyWithPrevious(state),
);
}
}
/// 收支趋势(近 6 个自然月,柱状图数据源)。
final financeTrendProvider = FutureProvider<List<TrendPoint>>((ref) async {
ref.watch(authStateProvider.select((s) => s.user?.shopId));
return ref.read(financeRepositoryProvider).trend(months: 6);
});
/// 应收/应付按往来单位汇总行(合并 /finance/summary 的 recv/pay 两类)。
class PartnerFinanceRow {
final int? partnerId;
final String name;
final double recv;
final double pay;
final int openCount;
const PartnerFinanceRow(
{this.partnerId,
required this.name,
this.recv = 0,
this.pay = 0,
this.openCount = 0});
double get net => recv - pay;
}
final financePartnerRowsProvider =
FutureProvider<List<PartnerFinanceRow>>((ref) async {
ref.watch(authStateProvider.select((s) => s.user?.shopId));
final rows = await ref.read(financeRepositoryProvider).partnerSummary();
final map = <String, PartnerFinanceRow>{};
for (final r in rows) {
final key = '${r.partnerId ?? 0}|${r.partnerName}';
final cur = map[key] ??
PartnerFinanceRow(
partnerId: r.partnerId,
name: r.partnerName.isEmpty ? '(未指定单位)' : r.partnerName);
map[key] = PartnerFinanceRow(
partnerId: cur.partnerId,
name: cur.name,
recv: cur.recv + (r.type == 'receivable' ? r.totalAmount : 0),
pay: cur.pay + (r.type == 'payable' ? r.totalAmount : 0),
openCount: cur.openCount + r.recordCount,
);
}
final list = map.values.toList()
..sort((a, b) => (b.recv + b.pay).compareTo(a.recv + a.pay));
return list;
});