57 lines
1.5 KiB
Dart
57 lines
1.5 KiB
Dart
import 'package:rasadyar_chicken/presentation/routes/routes.dart';
|
|
import 'package:rasadyar_chicken/presentation/utils/nested_keys_utils.dart';
|
|
import 'package:rasadyar_core/core.dart';
|
|
|
|
class KillHouseActionLogic extends GetxController {
|
|
List<GlassMorphismCardItem> items = [
|
|
GlassMorphismCardItem(
|
|
title: "ثبت درخواست",
|
|
icon: Assets.vec.submitRequestSvg.path,
|
|
route: ChickenRoutes.submitRequestKillHouse,
|
|
navId: killHouseActionKey,
|
|
),
|
|
GlassMorphismCardItem(
|
|
title: "انبار و توزیع",
|
|
icon: Assets.vec.warehouseDistributionSvg.path,
|
|
route: ChickenRoutes.initWarehouseAndDistribution,
|
|
),
|
|
GlassMorphismCardItem(
|
|
title: "سفارشات دریافتی",
|
|
icon: Assets.vec.ordersReceivedSvg.path,
|
|
route: '',
|
|
),
|
|
GlassMorphismCardItem(
|
|
title: "خرید مستقیم",
|
|
icon: Assets.vec.directPurchaseSvg.path,
|
|
route: '',
|
|
),
|
|
GlassMorphismCardItem(
|
|
title: "تخصیص خودرو",
|
|
icon: Assets.vec.carAllocationSvg.path,
|
|
route: '',
|
|
),
|
|
GlassMorphismCardItem(
|
|
title: "ورود اطلاعات بار",
|
|
icon: Assets.vec.enterCargoInformationSvg.path,
|
|
route: '',
|
|
),
|
|
GlassMorphismCardItem(
|
|
title: "مدیریت بارها",
|
|
icon: Assets.vec.managementBarsSvg.path,
|
|
route: '',
|
|
),
|
|
];
|
|
|
|
@override
|
|
void onReady() {
|
|
// TODO: implement onReady
|
|
super.onReady();
|
|
}
|
|
|
|
@override
|
|
void onClose() {
|
|
// TODO: implement onClose
|
|
super.onClose();
|
|
}
|
|
}
|