chore: release client-v1.0.71
Deploy Client / build-client-web (push) Successful in 47s
Deploy Client / build-macos (push) Successful in 2m11s
Deploy Client / build-android (push) Successful in 1m11s
Deploy Client / build-ios (push) Successful in 2m29s
Deploy Client / build-windows (push) Successful in 2m27s
Deploy Client / release-deploy-client (push) Successful in 1m27s

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01YZ4DskSRKsSiheQonFtQvx
This commit is contained in:
wangjia
2026-06-21 22:17:50 +08:00
parent 20f9e3a410
commit 51acee2705
11 changed files with 650 additions and 4 deletions
@@ -128,4 +128,10 @@ class StockInListNotifier extends AsyncNotifier<PageResult<StockInOrder>> {
await ref.read(stockInRepositoryProvider).withdraw(id);
reload();
}
Future<void> returnItems(int id, List<int> itemIds) async {
await ref.read(stockInRepositoryProvider).returnItems(id, itemIds);
reload();
ref.invalidate(inventoryListProvider);
}
}
@@ -128,4 +128,10 @@ class StockOutListNotifier extends AsyncNotifier<PageResult<StockOutOrder>> {
await ref.read(stockOutRepositoryProvider).withdraw(id);
reload();
}
Future<void> returnItems(int id, List<int> itemIds) async {
await ref.read(stockOutRepositoryProvider).returnItems(id, itemIds);
reload();
ref.invalidate(inventoryListProvider);
}
}