revert 4aaf8a6bf1db345351c44b5136e4ca9f67da1834

revert Merge branch 'feature/payment' of https://git.marcoaiot.com/admin/marco.pms.mobileapp into feature/payment
This commit is contained in:
manish.zure 2025-11-01 10:58:30 +00:00
parent 4aaf8a6bf1
commit b0b68d688e
3 changed files with 0 additions and 43 deletions

View File

@ -110,14 +110,4 @@ class ApiEndpoints {
static const String tenantSubscribe = '/Tenant/self/subscription';
static const String tenantRenewSubscription = '/Tenant/renew/subscription';
static const String getIndustries = '/market/industries';
// Payment Module API Endpoints
static const String createOrder = "/payment/create-order";
static const String verifyPayment = "/payment/verify-payment";
// Tenant endpoints
static const String createTenantSelf = '/Tenant/self/create';
static const String tenantSubscribe = '/Tenant/self/subscription';
static const String tenantRenewSubscription = '/Tenant/renew/subscription';
static const String getIndustries = '/market/industries';
}

View File

@ -142,13 +142,6 @@ class _WelcomeScreenState extends State<WelcomeScreen>
option: null,
),
const SizedBox(height: 16),
_buildActionButton(
context,
label: "Subscribe",
icon: LucideIcons.bell,
option: null,
),
const SizedBox(height: 16),
_buildActionButton(
context,
label: "Request a Demo",
@ -257,10 +250,6 @@ class _WelcomeScreenState extends State<WelcomeScreen>
shadowColor: Colors.black26,
),
onPressed: () {
if (label == "Subscribe") {
Get.toNamed('/subscription'); // Navigate to Subscription screen
return;
}
if (label == "Subscribe") {
Get.toNamed('/subscription'); // Navigate to Subscription screen
return;

View File

@ -132,12 +132,6 @@ class _UserProfileBarState extends State<UserProfileBar>
final TenantSwitchController tenantSwitchController =
Get.put(TenantSwitchController());
return Padding(
padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 6),
child: Obx(() {
if (tenantSwitchController.isLoading.value) {
return _loadingTenantContainer();
}
return Padding(
padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 6),
child: Obx(() {
@ -145,12 +139,9 @@ class _UserProfileBarState extends State<UserProfileBar>
return _loadingTenantContainer();
}
final tenants = tenantSwitchController.tenants;
if (tenants.isEmpty) return _noTenantContainer();
final tenants = tenantSwitchController.tenants;
if (tenants.isEmpty) return _noTenantContainer();
final selectedTenant = TenantService.currentTenant;
final selectedTenant = TenantService.currentTenant;
final sortedTenants = List.of(tenants);
@ -333,14 +324,6 @@ class _UserProfileBarState extends State<UserProfileBar>
textColor: Colors.redAccent,
),
SizedBox(height: spacingHeight),
_menuItemRow(
icon: LucideIcons.bell,
label: 'Subscribe',
onTap: _onSubscribeTap,
iconColor: Colors.redAccent,
textColor: Colors.redAccent,
),
SizedBox(height: spacingHeight),
_menuItemRow(
icon: LucideIcons.settings,
label: 'Settings',
@ -415,11 +398,6 @@ class _UserProfileBarState extends State<UserProfileBar>
}
void _onSubscribeTap() {
Get.toNamed("/subscription");
}
void _onMpinTap() {
final controller = Get.put(MPINController());
if (hasMpin) controller.setChangeMpinMode();