feat(client): 出入库列表状态筛选改多选并默认草稿+待审核(两端,原型同步)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
wangjia
2026-07-14 10:44:46 +08:00
parent e499bbc842
commit d4c5964932
26 changed files with 782 additions and 291 deletions
+2 -1
View File
@@ -38,7 +38,8 @@ final stockInSummary30Provider =
class StockInListNotifier extends AsyncNotifier<PageResult<StockInOrder>> {
int _page = 1;
int _pageSize = AppConstants.defaultPageSize;
String _status = '';
// 默认「草稿+待审核」(2026-07-14 用户拍板,状态筛选改多选后的默认态)。
String _status = 'draft,pending';
String? _startDate;
String? _endDate;
String _keyword = '';
+2 -1
View File
@@ -38,7 +38,8 @@ final stockOutSummary30Provider =
class StockOutListNotifier extends AsyncNotifier<PageResult<StockOutOrder>> {
int _page = 1;
int _pageSize = AppConstants.defaultPageSize;
String _status = '';
// 默认「草稿+待审核」(2026-07-14 用户拍板,状态筛选改多选后的默认态)。
String _status = 'draft,pending';
String? _startDate;
String? _endDate;
String _keyword = '';