APK #1
This commit is contained in:
57
lib/api/services/limit_service.dart
Normal file
57
lib/api/services/limit_service.dart
Normal file
@@ -0,0 +1,57 @@
|
||||
// ignore_for_file: collection_methods_unrelated_type
|
||||
import 'dart:developer';
|
||||
import 'package:dio/dio.dart';
|
||||
|
||||
class Limit {
|
||||
final double dailyLimit;
|
||||
final double usedLimit;
|
||||
|
||||
Limit({
|
||||
required this.dailyLimit,
|
||||
required this.usedLimit,
|
||||
});
|
||||
|
||||
factory Limit.fromJson(Map<String, dynamic> json) {
|
||||
return Limit(
|
||||
dailyLimit: json['dailyLimit']!,
|
||||
usedLimit: json['usedLimit']!,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class LimitService {
|
||||
final Dio _dio;
|
||||
LimitService(this._dio);
|
||||
|
||||
Future<Limit> getLimit() async {
|
||||
try {
|
||||
final response = await _dio.get('/api/customer/daily-limit');
|
||||
if (response.statusCode == 200) {
|
||||
log('Response: ${response.data}');
|
||||
return Limit.fromJson(response.data);
|
||||
} else {
|
||||
throw Exception('Failed to load');
|
||||
}
|
||||
} on DioException catch (e) {
|
||||
throw Exception('Network error: ${e.message}');
|
||||
} catch (e) {
|
||||
throw Exception('Unexpected error: ${e.toString()}');
|
||||
}
|
||||
}
|
||||
|
||||
void editLimit( double newLimit) async {
|
||||
try {
|
||||
final response = await _dio.post('/api/customer/daily-limit',
|
||||
data: '{"amount": $newLimit}');
|
||||
if (response.statusCode == 200) {
|
||||
log('Response: ${response.data}');
|
||||
} else {
|
||||
throw Exception('Failed to load');
|
||||
}
|
||||
} on DioException catch (e) {
|
||||
throw Exception('Network error: ${e.message}');
|
||||
} catch (e) {
|
||||
throw Exception('Unexpected error: ${e.toString()}');
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -10,7 +10,7 @@ class UserService {
|
||||
|
||||
Future<List<User>> getUserDetails() async {
|
||||
try {
|
||||
final response = await _dio.get('/api/customer/details');
|
||||
final response = await _dio.get('/api/customer');
|
||||
if (response.statusCode == 200) {
|
||||
log('Response: ${response.data}');
|
||||
return (response.data as List)
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import 'package:kmobile/api/services/limit_service.dart';
|
||||
import 'package:kmobile/api/services/rtgs_service.dart';
|
||||
import 'package:kmobile/api/services/neft_service.dart';
|
||||
import 'package:kmobile/api/services/imps_service.dart';
|
||||
@@ -46,6 +47,7 @@ Future<void> setupDependencies() async {
|
||||
|
||||
getIt.registerSingleton<PaymentService>(PaymentService(getIt<Dio>()));
|
||||
getIt.registerSingleton<BeneficiaryService>(BeneficiaryService(getIt<Dio>()));
|
||||
getIt.registerSingleton<LimitService>(LimitService(getIt<Dio>()));
|
||||
getIt.registerSingleton<NeftService>(NeftService(getIt<Dio>()));
|
||||
getIt.registerSingleton<RtgsService>(RtgsService(getIt<Dio>()));
|
||||
getIt.registerSingleton<ImpsService>(ImpsService(getIt<Dio>()));
|
||||
@@ -69,12 +71,13 @@ Dio _createDioClient() {
|
||||
baseUrl:
|
||||
'http://lb-test-mobile-banking-app-192209417.ap-south-1.elb.amazonaws.com:8080', //test
|
||||
//'http://lb-kccb-mobile-banking-app-848675342.ap-south-1.elb.amazonaws.com', //prod
|
||||
//'https://kccbmbnk.net',
|
||||
//'https://kccbmbnk.net', //prod small
|
||||
connectTimeout: const Duration(seconds: 60),
|
||||
receiveTimeout: const Duration(seconds: 60),
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'Accept': 'application/json',
|
||||
'X-Login-Type': 'MB',
|
||||
},
|
||||
),
|
||||
);
|
||||
|
||||
202
lib/features/profile/daily_transaction_limit.dart
Normal file
202
lib/features/profile/daily_transaction_limit.dart
Normal file
@@ -0,0 +1,202 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:kmobile/api/services/limit_service.dart';
|
||||
import 'package:kmobile/app.dart';
|
||||
import 'package:kmobile/di/injection.dart';
|
||||
import 'package:kmobile/l10n/app_localizations.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
|
||||
class DailyLimitScreen extends StatefulWidget {
|
||||
const DailyLimitScreen({super.key});
|
||||
@override
|
||||
State<DailyLimitScreen> createState() => _DailyLimitScreenState();
|
||||
}
|
||||
|
||||
class _DailyLimitScreenState extends State<DailyLimitScreen> {
|
||||
double? _currentLimit;
|
||||
double? _spentAmount = 0.0;
|
||||
final _limitController = TextEditingController();
|
||||
var service = getIt<LimitService>();
|
||||
Limit? limit;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_loadlimits();
|
||||
}
|
||||
|
||||
Future<void> _loadlimits() async {
|
||||
final limit_data = await service.getLimit();
|
||||
setState(() {
|
||||
limit = limit_data;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_limitController.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
Future<void> _showAddOrEditLimitDialog() async {
|
||||
_limitController.text = _currentLimit?.toStringAsFixed(0) ?? '';
|
||||
final newLimit = await showDialog<double>(
|
||||
context: context,
|
||||
builder: (context) {
|
||||
final localizations = AppLocalizations.of(context);
|
||||
return AlertDialog(
|
||||
title: Text(
|
||||
_currentLimit == null
|
||||
? localizations.addLimit
|
||||
: localizations.editLimit,
|
||||
),
|
||||
content: TextField(
|
||||
controller: _limitController,
|
||||
autofocus: true,
|
||||
keyboardType: TextInputType.number,
|
||||
inputFormatters: [
|
||||
FilteringTextInputFormatter.allow(RegExp(r'^\d+')),
|
||||
],
|
||||
decoration: InputDecoration(
|
||||
labelText: localizations.limitAmount,
|
||||
prefixText: '₹',
|
||||
border: const OutlineInputBorder(),
|
||||
),
|
||||
),
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: () => Navigator.of(context).pop(),
|
||||
child: Text(localizations.cancel),
|
||||
),
|
||||
ElevatedButton(
|
||||
onPressed: () async {
|
||||
final value = double.tryParse(_limitController.text);
|
||||
if (value != null && value > 0) {
|
||||
setState(() {
|
||||
service.editLimit(value);
|
||||
});
|
||||
Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(
|
||||
builder: (context) => const NavigationScaffold(),
|
||||
),
|
||||
);
|
||||
}
|
||||
},
|
||||
child: Text(localizations.save),
|
||||
),
|
||||
],
|
||||
);
|
||||
},
|
||||
);
|
||||
if (newLimit != null) {
|
||||
setState(() {
|
||||
_currentLimit = newLimit;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
void _removeLimit() {
|
||||
setState(() {
|
||||
_currentLimit = null;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
_currentLimit = limit?.dailyLimit;
|
||||
_spentAmount = limit?.usedLimit;
|
||||
final localizations = AppLocalizations.of(context);
|
||||
final theme = Theme.of(context);
|
||||
final formatCurrency = NumberFormat.currency(locale: 'en_IN', symbol: '₹');
|
||||
final remainingLimit = _currentLimit != null ? _currentLimit! - _spentAmount! : 0.0;
|
||||
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text(localizations.dailylimit),
|
||||
),
|
||||
body: Center(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(16.0),
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
children: [
|
||||
Text(
|
||||
localizations.currentDailyLimit,
|
||||
style: theme.textTheme.headlineSmall?.copyWith(
|
||||
color: theme.colorScheme.onSurface.withOpacity(0.7),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
Text(
|
||||
_currentLimit == null
|
||||
? localizations.noLimitSet
|
||||
: formatCurrency.format(_currentLimit),
|
||||
style: theme.textTheme.headlineMedium?.copyWith(
|
||||
fontWeight: FontWeight.bold,
|
||||
color: _currentLimit == null
|
||||
? theme.colorScheme.secondary
|
||||
: theme.colorScheme.primary,
|
||||
),
|
||||
),
|
||||
if (_currentLimit != null) ...[
|
||||
const SizedBox(height: 24),
|
||||
Text(
|
||||
"Remaining Limit Today", // This should be localized
|
||||
style: theme.textTheme.titleMedium,
|
||||
),
|
||||
const SizedBox(height: 4),
|
||||
Text(
|
||||
formatCurrency.format(remainingLimit),
|
||||
style: theme.textTheme.headlineSmall?.copyWith(
|
||||
fontWeight: FontWeight.bold,
|
||||
color: remainingLimit > 0
|
||||
? Colors.green
|
||||
: theme.colorScheme.error,
|
||||
),
|
||||
),
|
||||
],
|
||||
const SizedBox(height: 48),
|
||||
if (_currentLimit == null)
|
||||
ElevatedButton.icon(
|
||||
onPressed: _showAddOrEditLimitDialog,
|
||||
icon: const Icon(Icons.add_circle_outline),
|
||||
label: Text(localizations.addLimit),
|
||||
style: ElevatedButton.styleFrom(
|
||||
padding: const EdgeInsets.symmetric(
|
||||
horizontal: 24, vertical: 12),
|
||||
textStyle: theme.textTheme.titleMedium,
|
||||
),
|
||||
)
|
||||
else
|
||||
Column(
|
||||
children: [
|
||||
ElevatedButton.icon(
|
||||
onPressed: _showAddOrEditLimitDialog,
|
||||
icon: const Icon(Icons.edit_outlined),
|
||||
label: Text(localizations.editLimit),
|
||||
style: ElevatedButton.styleFrom(
|
||||
padding: const EdgeInsets.symmetric(
|
||||
horizontal: 24, vertical: 12),
|
||||
textStyle: theme.textTheme.titleMedium,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
// TextButton.icon(
|
||||
// onPressed: _removeLimit,
|
||||
// icon: const Icon(Icons.remove_circle_outline),
|
||||
// label: Text(localizations.removeLimit),
|
||||
// style: TextButton.styleFrom(
|
||||
// foregroundColor: theme.colorScheme.error,
|
||||
// ),
|
||||
// ),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -3,6 +3,7 @@ import 'package:flutter/material.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:kmobile/data/repositories/auth_repository.dart';
|
||||
import 'package:kmobile/features/profile/change_password/change_password_screen.dart';
|
||||
import 'package:kmobile/features/profile/daily_transaction_limit.dart';
|
||||
import 'package:kmobile/features/profile/logout_dialog.dart';
|
||||
import 'package:kmobile/security/secure_storage.dart';
|
||||
import 'package:local_auth/local_auth.dart';
|
||||
@@ -155,6 +156,17 @@ class _ProfileScreenState extends State<ProfileScreen> {
|
||||
);
|
||||
},
|
||||
),
|
||||
ListTile(
|
||||
leading: const Icon(Icons.currency_rupee),
|
||||
title: Text(AppLocalizations.of(context).dailylimit),
|
||||
onTap: () {
|
||||
Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(
|
||||
builder: (context) => const DailyLimitScreen()),
|
||||
);
|
||||
},
|
||||
),
|
||||
SwitchListTile(
|
||||
title: Text(AppLocalizations.of(context).enableFingerprintLogin),
|
||||
value: _isBiometricEnabled,
|
||||
|
||||
@@ -1,161 +0,0 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:kmobile/l10n/app_localizations.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
|
||||
class DailyLimitScreen extends StatefulWidget {
|
||||
const DailyLimitScreen({super.key});
|
||||
@override
|
||||
State<DailyLimitScreen> createState() => _DailyLimitScreenState();
|
||||
}
|
||||
|
||||
class _DailyLimitScreenState extends State<DailyLimitScreen> {
|
||||
double? _currentLimit;
|
||||
final _limitController = TextEditingController();
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
// Now just taking null, but for real time limit will be fetched using API call
|
||||
_currentLimit = null;
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_limitController.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
Future<void> _showAddOrEditLimitDialog() async {
|
||||
_limitController.text = _currentLimit?.toStringAsFixed(0) ?? '';
|
||||
final newLimit = await showDialog<double>(
|
||||
context: context,
|
||||
builder: (context) {
|
||||
final localizations = AppLocalizations.of(context);
|
||||
return AlertDialog(
|
||||
title: Text(
|
||||
_currentLimit == null
|
||||
? localizations.addLimit
|
||||
: localizations.editLimit,
|
||||
),
|
||||
content: TextField(
|
||||
controller: _limitController,
|
||||
autofocus: true,
|
||||
keyboardType: TextInputType.number,
|
||||
inputFormatters: [
|
||||
FilteringTextInputFormatter.allow(RegExp(r'^\d+')),
|
||||
],
|
||||
decoration: InputDecoration(
|
||||
labelText: localizations.limitAmount,
|
||||
prefixText: '₹',
|
||||
border: const OutlineInputBorder(),
|
||||
),
|
||||
),
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: () => Navigator.of(context).pop(),
|
||||
child: Text(localizations.cancel),
|
||||
),
|
||||
ElevatedButton(
|
||||
onPressed: () {
|
||||
final value = double.tryParse(_limitController.text);
|
||||
if (value != null && value > 0) {
|
||||
Navigator.of(context).pop(value);
|
||||
}
|
||||
},
|
||||
child: Text(localizations.save),
|
||||
),
|
||||
],
|
||||
);
|
||||
},
|
||||
);
|
||||
if (newLimit != null) {
|
||||
setState(() {
|
||||
_currentLimit = newLimit;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
void _removeLimit() {
|
||||
setState(() {
|
||||
_currentLimit = null;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final localizations = AppLocalizations.of(context);
|
||||
final theme = Theme.of(context);
|
||||
final formatCurrency = NumberFormat.currency(locale: 'en_IN', symbol: '₹');
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text(localizations.dailylimit),
|
||||
),
|
||||
body: Center(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(16.0),
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
children: [
|
||||
Text(
|
||||
localizations.currentDailyLimit,
|
||||
style: theme.textTheme.headlineSmall?.copyWith(
|
||||
color: theme.colorScheme.onSurface.withOpacity(0.7),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
Text(
|
||||
_currentLimit == null
|
||||
? localizations.noLimitSet
|
||||
: formatCurrency.format(_currentLimit),
|
||||
style: theme.textTheme.headlineMedium?.copyWith(
|
||||
fontWeight: FontWeight.bold,
|
||||
color: _currentLimit == null
|
||||
? theme.colorScheme.secondary
|
||||
: theme.colorScheme.primary,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 48),
|
||||
if (_currentLimit == null)
|
||||
ElevatedButton.icon(
|
||||
onPressed: _showAddOrEditLimitDialog,
|
||||
icon: const Icon(Icons.add_circle_outline),
|
||||
label: Text(localizations.addLimit),
|
||||
style: ElevatedButton.styleFrom(
|
||||
padding: const EdgeInsets.symmetric(
|
||||
horizontal: 24, vertical: 12),
|
||||
textStyle: theme.textTheme.titleMedium,
|
||||
),
|
||||
)
|
||||
else
|
||||
Column(
|
||||
children: [
|
||||
ElevatedButton.icon(
|
||||
onPressed: _showAddOrEditLimitDialog,
|
||||
icon: const Icon(Icons.edit_outlined),
|
||||
label: Text(localizations.editLimit),
|
||||
style: ElevatedButton.styleFrom(
|
||||
padding: const EdgeInsets.symmetric(
|
||||
horizontal: 24, vertical: 12),
|
||||
textStyle: theme.textTheme.titleMedium,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
TextButton.icon(
|
||||
onPressed: _removeLimit,
|
||||
icon: const Icon(Icons.remove_circle_outline),
|
||||
label: Text(localizations.removeLimit),
|
||||
style: TextButton.styleFrom(
|
||||
foregroundColor: theme.colorScheme.error,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
import 'package:kmobile/features/service/screens/branch_locator_screen.dart';
|
||||
import 'package:kmobile/features/service/screens/daily_transaction_limit.dart';
|
||||
|
||||
import '../../../l10n/app_localizations.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:material_symbols_icons/material_symbols_icons.dart';
|
||||
@@ -40,18 +40,6 @@ class _ServiceScreen extends State<ServiceScreen> {
|
||||
disabled: true,
|
||||
),
|
||||
const Divider(height: 1),
|
||||
ServiceManagementTile(
|
||||
icon: Symbols.currency_rupee,
|
||||
label: AppLocalizations.of(context).dailylimit,
|
||||
onTap: () {
|
||||
Navigator.of(context).push(
|
||||
MaterialPageRoute(
|
||||
builder: (context) => const DailyLimitScreen()),
|
||||
);
|
||||
},
|
||||
disabled: true,
|
||||
),
|
||||
const Divider(height: 1),
|
||||
ServiceManagementTile(
|
||||
icon: Symbols.captive_portal,
|
||||
label: AppLocalizations.of(context).quickLinks,
|
||||
|
||||
Reference in New Issue
Block a user