2025-12-08 16:10:34 +03:30
|
|
|
import 'package:rasadyar_chicken/features/common/presentation/routes/routes.dart';
|
|
|
|
|
|
2025-06-03 23:26:38 +03:30
|
|
|
sealed class ChickenRoutes {
|
|
|
|
|
ChickenRoutes._();
|
2025-06-16 10:55:33 +03:30
|
|
|
|
2025-07-12 17:06:29 +03:30
|
|
|
static const _base = '/chicken';
|
2025-12-08 16:10:34 +03:30
|
|
|
static const auth = CommonRoutes.auth;
|
|
|
|
|
|
|
|
|
|
|
2025-07-13 16:17:17 +03:30
|
|
|
|
|
|
|
|
|
2025-09-16 15:47:35 +03:30
|
|
|
|
2025-11-18 08:10:19 +03:30
|
|
|
//endregion
|
2025-09-16 15:47:35 +03:30
|
|
|
|
2025-11-18 08:10:19 +03:30
|
|
|
//region poultry Farm Inspection
|
|
|
|
|
static const _poultryFarmInspection = '$_base/poultryFarmInspection';
|
|
|
|
|
static const poultryFarmInspectionHome = '$_poultryFarmInspection/Home';
|
2025-09-16 15:47:35 +03:30
|
|
|
|
2025-09-02 14:40:55 +03:30
|
|
|
//endregion
|
2025-11-26 16:23:18 +03:30
|
|
|
|
|
|
|
|
//region KillHouse Routes
|
|
|
|
|
|
|
|
|
|
static const _killHouse = '$_base/killHouse';
|
|
|
|
|
static const initKillHouse = '$_killHouse/home';
|
|
|
|
|
static const actionKillHouse = '$_killHouse/action';
|
2025-12-01 09:42:26 +03:30
|
|
|
static const submitRequestKillHouse = '$actionKillHouse/submitRequest';
|
2025-11-26 16:23:18 +03:30
|
|
|
|
2025-12-01 15:25:19 +03:30
|
|
|
//region Warehouse and Distribution Routes
|
|
|
|
|
static const _warehouseAndDistribution = '$_killHouse/warehouseAndDistribution';
|
|
|
|
|
static const initWarehouseAndDistribution = '$_warehouseAndDistribution/';
|
|
|
|
|
static const homeWarehouseAndDistribution = '$_warehouseAndDistribution/home';
|
|
|
|
|
static const buyWarehouseAndDistribution = '$_warehouseAndDistribution/buy';
|
|
|
|
|
static const saleWarehouseAndDistribution = '$_warehouseAndDistribution/sale';
|
|
|
|
|
static const segmentationWarehouseAndDistribution = '$_warehouseAndDistribution/segmentation';
|
|
|
|
|
|
|
|
|
|
//buys
|
|
|
|
|
static const buysOutOfProvinceWarehouseAndDistribution = '$buyWarehouseAndDistribution/buyOutOfProvince';
|
|
|
|
|
static const buysInProvinceWarehouseAndDistribution = '$buyWarehouseAndDistribution/buyInProvince';
|
|
|
|
|
|
|
|
|
|
//sales
|
|
|
|
|
static const salesInProvinceWarehouseAndDistribution = '$saleWarehouseAndDistribution/SalesInProvince';
|
|
|
|
|
static const salesOutOfProvinceWarehouseAndDistribution = '$saleWarehouseAndDistribution/saleOutOfProvince';
|
|
|
|
|
static const salesOutOfProvinceBuyerWarehouseAndDistribution = '$saleWarehouseAndDistribution/saleOutOfProvinceBuyer';
|
|
|
|
|
|
|
|
|
|
//endregion
|
|
|
|
|
|
2025-11-26 16:23:18 +03:30
|
|
|
//endregion
|
2025-06-03 23:26:38 +03:30
|
|
|
}
|