mmmh
All checks were successful
Build and Release FLUX (Multi-Platform) / build-android (push) Successful in 2m11s
Build and Release FLUX (Multi-Platform) / build-web (push) Successful in 1m1s
Build and Release FLUX (Multi-Platform) / build-windows (push) Successful in 8m5s

This commit is contained in:
2026-06-04 12:34:38 +02:00
parent 01515910b6
commit 4efc3ce182
14 changed files with 517 additions and 426 deletions

View File

@@ -51,17 +51,17 @@ class DashboardStoreOperationListCubit
void _loadOperationsSilently() async {
try {
final operations = await _repository.fetchOperations(
final paginatedData = await _repository.fetchPaginatedOperations(
companyId: companyId!,
storeId: storeId!,
limit: 10,
offset: 0,
page: 1,
itemsPerPage: 20,
);
if (isClosed) return;
emit(
state.copyWith(
status: DashboardStoreOperationListStatus.success,
operations: operations,
operations: paginatedData.operations,
error: null,
),
);