feat: inventory report

This commit is contained in:
efrilm
2025-08-19 17:05:55 +07:00
parent 50934bfed9
commit 1aa65d1732
17 changed files with 1772 additions and 106 deletions
+8
View File
@@ -41,6 +41,8 @@ import 'package:apskel_owner_flutter/application/outlet/current_outlet_loader/cu
as _i337;
import 'package:apskel_owner_flutter/application/product/product_loader/product_loader_bloc.dart'
as _i458;
import 'package:apskel_owner_flutter/application/report/inventory_report/inventory_report_bloc.dart'
as _i346;
import 'package:apskel_owner_flutter/application/user/change_password_form/change_password_form_bloc.dart'
as _i1030;
import 'package:apskel_owner_flutter/application/user/user_edit_form/user_edit_form_bloc.dart'
@@ -263,6 +265,12 @@ extension GetItInjectableX on _i174.GetIt {
gh.factory<_i1030.ChangePasswordFormBloc>(
() => _i1030.ChangePasswordFormBloc(gh<_i635.IUserRepository>()),
);
gh.factory<_i346.InventoryReportBloc>(
() => _i346.InventoryReportBloc(
gh<_i477.IAnalyticRepository>(),
gh<_i197.IOutletRepository>(),
),
);
return this;
}
}