You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
899 lines
38 KiB
899 lines
38 KiB
1 year ago
|
|
||
|
import 'dart:convert';
|
||
|
|
||
|
import 'package:flutter/material.dart';
|
||
|
import 'package:healthcare_pharmacy/models/offersview_model.dart';
|
||
|
import 'package:healthcare_pharmacy/offers.dart';
|
||
|
import 'package:healthcare_pharmacy/settings.dart';
|
||
|
import 'package:intl/intl.dart';
|
||
|
import 'package:flutter_cupertino_datetime_picker/flutter_cupertino_datetime_picker.dart';
|
||
|
|
||
|
|
||
|
class OffersData extends StatefulWidget {
|
||
|
const OffersData({Key? key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
State<OffersData> createState() => _OffersDataState();
|
||
|
}
|
||
|
|
||
|
class _OffersDataState extends State<OffersData> with TickerProviderStateMixin {
|
||
|
bool isOfferDataLoading=false;
|
||
|
bool isSereverIssue = false;
|
||
|
bool isSereverIssueConnected = false;
|
||
|
bool isSereverIssuePending = false;
|
||
|
var startdate;
|
||
|
var enddate;
|
||
|
TextEditingController updateOfferNameController = TextEditingController();
|
||
|
TextEditingController updateOfferCodeController = TextEditingController();
|
||
|
TextEditingController updateOfferDescriptionController = TextEditingController();
|
||
|
TextEditingController updateDiscountController = TextEditingController();
|
||
|
TextEditingController updateOfferStartDateController = TextEditingController();
|
||
|
TextEditingController updateOfferEndDateController = TextEditingController();
|
||
|
List<GetOffersDetailsModel> activeOffersList = [];
|
||
|
List<GetOffersDetailsModel> inactiveOffersList = [];
|
||
|
|
||
|
|
||
|
late TabController _controller;
|
||
|
bool isActiveDataLoading=false;
|
||
|
bool isinactiveDataLoading=false;
|
||
|
|
||
|
|
||
|
|
||
|
final List<Tab> topTabs = <Tab>[
|
||
|
Tab(
|
||
|
child: Column(
|
||
|
children: [Text('Active Offers')],
|
||
|
),
|
||
|
),
|
||
|
Tab(
|
||
|
child: Column(
|
||
|
children: [Text('InActive Offers')],
|
||
|
),
|
||
|
),
|
||
|
|
||
|
];
|
||
|
|
||
|
|
||
|
|
||
|
Future<void> getActiveOffersViewData() async {
|
||
|
isActiveDataLoading = true;
|
||
|
try {
|
||
|
var response = await AppSettings.getOffers();
|
||
|
setState(() {
|
||
|
activeOffersList =
|
||
|
((jsonDecode(response)['data']) as List).map((dynamic model) {
|
||
|
return GetOffersDetailsModel.fromJson(model);
|
||
|
}).toList();
|
||
|
isActiveDataLoading = false;
|
||
|
});
|
||
|
|
||
|
|
||
|
} catch (e) {
|
||
|
setState(() {
|
||
|
isActiveDataLoading = false;
|
||
|
isSereverIssueConnected = true;
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
Future<void> getInactiveOffersViewData() async {
|
||
|
isinactiveDataLoading = true;
|
||
|
try {
|
||
|
var response = await AppSettings.getinactiveOffers();
|
||
|
setState(() {
|
||
|
inactiveOffersList =
|
||
|
((jsonDecode(response)['data']) as List).map((dynamic model) {
|
||
|
return GetOffersDetailsModel.fromJson(model);
|
||
|
}).toList();
|
||
|
isinactiveDataLoading = false;
|
||
|
});
|
||
|
|
||
|
|
||
|
} catch (e) {
|
||
|
setState(() {
|
||
|
isinactiveDataLoading = false;
|
||
|
isSereverIssueConnected = true;
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
showUpdateOfferDialog(var object) async {
|
||
|
updateOfferNameController.text = object.offer_name;
|
||
|
updateOfferCodeController.text = object.offer_code;
|
||
|
updateOfferDescriptionController.text = object.description;
|
||
|
updateDiscountController.text = object.discount_percentage;
|
||
|
updateOfferStartDateController.text=object.starting_date;
|
||
|
updateOfferEndDateController.text=object.ending_date;
|
||
|
return showDialog(
|
||
|
context: context,
|
||
|
barrierDismissible: false,
|
||
|
builder: (BuildContext context) {
|
||
|
return StatefulBuilder(
|
||
|
builder: (BuildContext context, StateSetter setState) {
|
||
|
return AlertDialog(
|
||
|
title: const Text('Update Offer'),
|
||
|
content: SingleChildScrollView(
|
||
|
child: ListBody(
|
||
|
children: <Widget>[
|
||
|
Container(
|
||
|
padding: const EdgeInsets.fromLTRB(0, 0, 0, 0),
|
||
|
child: TextFormField(
|
||
|
cursorColor: greyColor,
|
||
|
controller: updateOfferNameController,
|
||
|
textCapitalization: TextCapitalization.characters,
|
||
|
decoration: const InputDecoration(
|
||
|
prefixIcon: Icon(
|
||
|
Icons.person,
|
||
|
color: primaryColor,
|
||
|
),
|
||
|
border: OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: greyColor)),
|
||
|
focusedBorder: OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: greyColor),
|
||
|
),
|
||
|
enabledBorder: OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: greyColor),
|
||
|
),
|
||
|
labelText: 'Enter offer name',
|
||
|
labelStyle: TextStyle(
|
||
|
color: greyColor, //<-- SEE HERE
|
||
|
),
|
||
|
),
|
||
|
), //tanker name
|
||
|
),
|
||
|
const SizedBox(
|
||
|
height: 20,
|
||
|
),
|
||
|
|
||
|
Container(
|
||
|
//padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
|
||
|
child: TextFormField(
|
||
|
cursorColor: greyColor,
|
||
|
controller: updateOfferCodeController,
|
||
|
textCapitalization: TextCapitalization.characters,
|
||
|
decoration: const InputDecoration(
|
||
|
prefixIcon: Icon(
|
||
|
Icons.numbers,
|
||
|
color: primaryColor,
|
||
|
),
|
||
|
border: OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: greyColor)),
|
||
|
focusedBorder: OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: greyColor),
|
||
|
),
|
||
|
enabledBorder: OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: greyColor),
|
||
|
),
|
||
|
labelText: 'Enter Offer Code',
|
||
|
labelStyle: TextStyle(
|
||
|
color: greyColor, //<-- SEE HERE
|
||
|
),
|
||
|
),
|
||
|
), //tanker name
|
||
|
),
|
||
|
const SizedBox(
|
||
|
height: 20,
|
||
|
),
|
||
|
Container(
|
||
|
//padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
|
||
|
child: TextFormField(
|
||
|
cursorColor: greyColor,
|
||
|
controller: updateOfferDescriptionController,
|
||
|
textCapitalization: TextCapitalization.characters,
|
||
|
decoration: const InputDecoration(
|
||
|
prefixIcon: Icon(
|
||
|
Icons.description,
|
||
|
color: primaryColor,
|
||
|
),
|
||
|
border: OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: greyColor)),
|
||
|
focusedBorder: OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: greyColor),
|
||
|
),
|
||
|
enabledBorder: OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: greyColor),
|
||
|
),
|
||
|
labelText: 'Enter Offer Description',
|
||
|
labelStyle: TextStyle(
|
||
|
color: greyColor, //<-- SEE HERE
|
||
|
),
|
||
|
),
|
||
|
), //tanker name
|
||
|
),
|
||
|
const SizedBox(
|
||
|
height: 20,
|
||
|
),
|
||
|
Container(
|
||
|
//padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
|
||
|
child: TextFormField(
|
||
|
cursorColor: greyColor,
|
||
|
maxLength: 2,
|
||
|
controller: updateDiscountController,
|
||
|
textCapitalization: TextCapitalization.characters,
|
||
|
decoration: const InputDecoration(
|
||
|
prefixIcon: Icon(
|
||
|
Icons.percent_outlined,
|
||
|
color: primaryColor,
|
||
|
),
|
||
|
border: OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: greyColor)),
|
||
|
focusedBorder: OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: greyColor),
|
||
|
),
|
||
|
enabledBorder: OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: greyColor),
|
||
|
),
|
||
|
labelText: 'Enter Offer Discount',
|
||
|
labelStyle: TextStyle(
|
||
|
color: greyColor, //<-- SEE HERE
|
||
|
),
|
||
|
),
|
||
|
), //tanker name
|
||
|
),
|
||
|
const SizedBox(
|
||
|
height: 20,
|
||
|
),
|
||
|
Container(
|
||
|
child: TextFormField(
|
||
|
readOnly: true,
|
||
|
cursorColor: greyColor,
|
||
|
controller: updateOfferStartDateController,
|
||
|
decoration: InputDecoration(
|
||
|
labelText: 'Select Start Date',
|
||
|
prefixIcon: IconButton(
|
||
|
icon: Icon(
|
||
|
Icons.date_range,
|
||
|
color: primaryColor,
|
||
|
),
|
||
|
onPressed: () async {
|
||
|
DatePicker.showDatePicker(
|
||
|
context,
|
||
|
dateFormat: 'dd MMMM yyyy HH:mm',
|
||
|
initialDateTime: DateTime.now(),
|
||
|
minDateTime:DateTime.now(),
|
||
|
maxDateTime: DateTime.now().add(Duration(days: 15)),
|
||
|
onMonthChangeStartWithFirstDate: true,
|
||
|
pickerMode: DateTimePickerMode.datetime,
|
||
|
pickerTheme: DateTimePickerTheme(
|
||
|
// backgroundColor: Colors.white,
|
||
|
cancelTextStyle: labelTextStyle(),
|
||
|
confirmTextStyle: labelTextStyle(),
|
||
|
// showTitle: true,
|
||
|
//title: Text('Pick date and time'),
|
||
|
itemTextStyle: valuesTextStyle(),
|
||
|
),
|
||
|
onConfirm: (dateTime, List<int> index)async {
|
||
|
DateTime selectdate = dateTime;
|
||
|
setState(() {
|
||
|
startdate = DateFormat('dd-MMM-yyyy - HH:mm').format(selectdate);
|
||
|
});
|
||
|
|
||
|
if(startdate!=''){
|
||
|
setState(() {
|
||
|
updateOfferStartDateController.text=startdate.toString();
|
||
|
});
|
||
|
}
|
||
|
else {
|
||
|
AppSettings.longFailedToast('please select date');
|
||
|
}
|
||
|
},
|
||
|
);
|
||
|
},
|
||
|
),
|
||
|
|
||
|
labelStyle: const TextStyle(
|
||
|
color: greyColor, //<-- SEE HERE
|
||
|
),
|
||
|
border: const OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: primaryColor)),
|
||
|
focusedBorder: const OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: primaryColor),
|
||
|
),
|
||
|
enabledBorder: const OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: primaryColor),
|
||
|
),
|
||
|
|
||
|
),
|
||
|
|
||
|
),
|
||
|
),
|
||
|
|
||
|
const SizedBox(
|
||
|
height: 20,
|
||
|
),
|
||
|
Container(
|
||
|
child: TextFormField(
|
||
|
readOnly: true,
|
||
|
cursorColor: greyColor,
|
||
|
controller: updateOfferEndDateController,
|
||
|
decoration: InputDecoration(
|
||
|
labelText: 'Select End Date',
|
||
|
prefixIcon: IconButton(
|
||
|
icon: Icon(
|
||
|
Icons.date_range,
|
||
|
color: primaryColor,
|
||
|
),
|
||
|
onPressed: () async {
|
||
|
DatePicker.showDatePicker(
|
||
|
context,
|
||
|
dateFormat: 'dd MMMM yyyy HH:mm',
|
||
|
initialDateTime: DateTime.now(),
|
||
|
minDateTime:DateTime.now(),
|
||
|
maxDateTime: DateTime.now().add(Duration(days: 15)),
|
||
|
onMonthChangeStartWithFirstDate: true,
|
||
|
pickerMode: DateTimePickerMode.datetime,
|
||
|
pickerTheme: DateTimePickerTheme(
|
||
|
// backgroundColor: Colors.white,
|
||
|
cancelTextStyle: labelTextStyle(),
|
||
|
confirmTextStyle: labelTextStyle(),
|
||
|
// showTitle: true,
|
||
|
//title: Text('Pick date and time'),
|
||
|
itemTextStyle: valuesTextStyle(),
|
||
|
),
|
||
|
onConfirm: (dateTime, List<int> index)async {
|
||
|
DateTime selectdate = dateTime;
|
||
|
setState(() {
|
||
|
enddate = DateFormat('dd-MMM-yyyy - HH:mm').format(selectdate);
|
||
|
});
|
||
|
|
||
|
if(enddate!=''){
|
||
|
setState(() {
|
||
|
updateOfferEndDateController.text=enddate.toString();
|
||
|
});
|
||
|
}
|
||
|
else {
|
||
|
AppSettings.longFailedToast('please select date');
|
||
|
}
|
||
|
},
|
||
|
);
|
||
|
},
|
||
|
),
|
||
|
|
||
|
labelStyle: const TextStyle(
|
||
|
color: greyColor, //<-- SEE HERE
|
||
|
),
|
||
|
border: const OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: primaryColor)),
|
||
|
focusedBorder: const OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: primaryColor),
|
||
|
),
|
||
|
enabledBorder: const OutlineInputBorder(
|
||
|
borderSide: BorderSide(color: primaryColor),
|
||
|
),
|
||
|
),
|
||
|
|
||
|
),
|
||
|
),//address description
|
||
|
|
||
|
const SizedBox(
|
||
|
height: 30,
|
||
|
),
|
||
|
|
||
|
],
|
||
|
),
|
||
|
),
|
||
|
actions: <Widget>[
|
||
|
TextButton(
|
||
|
child: Text('cancel', style: textButtonStyle()),
|
||
|
onPressed: () {
|
||
|
Navigator.of(context).pop();
|
||
|
},
|
||
|
),
|
||
|
TextButton(
|
||
|
child: Text('Update', style: textButtonStyle()),
|
||
|
onPressed: () async {
|
||
|
if (updateOfferNameController.text != '' ) {
|
||
|
AppSettings.preLoaderDialog(context);
|
||
|
var payload = new Map<String, dynamic>();
|
||
|
|
||
|
payload["offer_name"] = updateOfferNameController.text.toString();
|
||
|
payload["offer_code"] = updateOfferCodeController.text.toString();
|
||
|
payload["description"] = updateOfferDescriptionController.text.toString();
|
||
|
payload["discount_percentage"] = updateDiscountController.text.toString();
|
||
|
payload["starting_date"] = updateOfferStartDateController.text.toString();
|
||
|
payload["ending_date"] = updateOfferEndDateController.text.toString();
|
||
|
payload["offer_status"] ="active";
|
||
|
|
||
|
bool offerStatus = await AppSettings.updateOffers(object.offer_code, payload);
|
||
|
try {
|
||
|
if (offerStatus) {
|
||
|
Navigator.of(context, rootNavigator: true).pop();
|
||
|
AppSettings.longSuccessToast(
|
||
|
"Offer Updated Successfully");
|
||
|
updateOfferNameController.text = '';
|
||
|
updateOfferCodeController.text = '';
|
||
|
updateOfferDescriptionController.text = '';
|
||
|
updateDiscountController.text = '';
|
||
|
updateOfferStartDateController.text = '';
|
||
|
updateOfferEndDateController.text = '';
|
||
|
|
||
|
Navigator.of(context).pop();
|
||
|
await getActiveOffersViewData();
|
||
|
} else {
|
||
|
Navigator.of(context, rootNavigator: true).pop();
|
||
|
AppSettings.longFailedStyledToast(
|
||
|
"Offer upadtion failed", context);
|
||
|
Navigator.of(context).pop();
|
||
|
}
|
||
|
} catch (exception) {
|
||
|
Navigator.of(context).pop();
|
||
|
print(exception);
|
||
|
}
|
||
|
} else {
|
||
|
AppSettings.longFailedStyledToast("enter details", context);
|
||
|
}
|
||
|
},
|
||
|
),
|
||
|
],
|
||
|
);
|
||
|
});
|
||
|
},
|
||
|
);
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
void initState() {
|
||
|
// TODO: implement initState
|
||
|
_controller = TabController(vsync: this, length: 2);
|
||
|
getActiveOffersViewData();
|
||
|
getInactiveOffersViewData();
|
||
|
super.initState();
|
||
|
}
|
||
|
Widget renderzActiveUi(){
|
||
|
if(activeOffersList.length!=0){
|
||
|
|
||
|
return Column(
|
||
|
crossAxisAlignment: CrossAxisAlignment.end,
|
||
|
children: [
|
||
|
Expanded(child:ListView.builder(
|
||
|
padding: EdgeInsets.all(0),
|
||
|
itemCount: activeOffersList.length,
|
||
|
itemBuilder: (BuildContext context, int index) {
|
||
|
return Card(
|
||
|
|
||
|
color: activeOffersList[index].cardColor,
|
||
|
child: Padding(
|
||
|
padding:EdgeInsets.all(8) ,
|
||
|
child: Row(
|
||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||
|
children: [
|
||
|
|
||
|
Container(
|
||
|
//width: MediaQuery.of(context).size.width * .55,
|
||
|
child: Column(
|
||
|
children: [
|
||
|
Row(
|
||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||
|
children: [
|
||
|
Column(
|
||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||
|
children: [
|
||
|
Text('OfferName :',style: labelTextStyle()),
|
||
|
Text('OfferCode :',style: labelTextStyle()),
|
||
|
Text('OfferDes :' ,style: labelTextStyle()),
|
||
|
Text('OfferDis(%) :' ,style: labelTextStyle()),
|
||
|
Text('StartDate :',style: labelTextStyle()),
|
||
|
Text('EndDate :' ,style: labelTextStyle()),
|
||
|
|
||
|
],
|
||
|
),
|
||
|
SizedBox(width: 5,),
|
||
|
Column(
|
||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||
|
children: [
|
||
|
Text(activeOffersList[index].offer_name,style: valuesTextStyle()),
|
||
|
Text(activeOffersList[index].offer_code,style: valuesTextStyle()),
|
||
|
Text(activeOffersList[index].description,style: valuesTextStyle()),
|
||
|
Text(activeOffersList[index].discount_percentage,style: valuesTextStyle()),
|
||
|
Text(activeOffersList[index].starting_date,style: valuesTextStyle()),
|
||
|
Text(activeOffersList[index].ending_date,style: valuesTextStyle())
|
||
|
|
||
|
],
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
),
|
||
|
|
||
|
Expanded(child:IconButton(
|
||
|
icon: const Icon(Icons.edit,color: primaryColor,),
|
||
|
onPressed: () {
|
||
|
showUpdateOfferDialog(activeOffersList[index]);
|
||
|
},
|
||
|
),),
|
||
|
Expanded(child:IconButton(
|
||
|
icon: const Icon(Icons.hide_source_rounded,color: primaryColor,),
|
||
|
|
||
|
onPressed: () async{
|
||
|
showDialog(
|
||
|
//if set to true allow to close popup by tapping out of the popup
|
||
|
//barrierDismissible: false,
|
||
|
context: context,
|
||
|
builder: (BuildContext context) => AlertDialog(
|
||
|
title: const Text('Do you want In_Active Offer??',
|
||
|
style: TextStyle(
|
||
|
color: primaryColor,
|
||
|
fontSize: 16,
|
||
|
)),
|
||
|
actionsAlignment: MainAxisAlignment.spaceBetween,
|
||
|
actions: [
|
||
|
TextButton(
|
||
|
onPressed: ()async {
|
||
|
bool deleteOfferStatus = await AppSettings.deleteOffers(activeOffersList[index].offer_code);
|
||
|
if(deleteOfferStatus){
|
||
|
getActiveOffersViewData();
|
||
|
AppSettings.longSuccessToast('Offer In_Active Successfully!!');
|
||
|
getInactiveOffersViewData();
|
||
|
Navigator.of(context).pop(true);
|
||
|
}
|
||
|
else{
|
||
|
AppSettings.longFailedToast('Offer In_Active failed');
|
||
|
}
|
||
|
},
|
||
|
child: const Text('Yes',
|
||
|
style: TextStyle(
|
||
|
color: primaryColor,
|
||
|
fontSize: 18,
|
||
|
)),
|
||
|
),
|
||
|
TextButton(
|
||
|
onPressed: () {
|
||
|
Navigator.of(context).pop(true);
|
||
|
},
|
||
|
child: const Text('No',
|
||
|
style: TextStyle(
|
||
|
color: primaryColor,
|
||
|
fontSize: 18,
|
||
|
)),
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
);
|
||
|
|
||
|
|
||
|
|
||
|
},
|
||
|
),)
|
||
|
|
||
|
],
|
||
|
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
}) ),
|
||
|
Padding(
|
||
|
padding: EdgeInsets.fromLTRB(8, 8, 8, 8),
|
||
|
child: CircleAvatar(
|
||
|
backgroundColor: primaryColor,
|
||
|
radius: 40,
|
||
|
child: Column(
|
||
|
mainAxisSize: MainAxisSize.min,
|
||
|
children: <Widget>[
|
||
|
IconButton(
|
||
|
iconSize: 40,
|
||
|
icon: const Icon(
|
||
|
Icons.add,
|
||
|
color: Colors.white,
|
||
|
),
|
||
|
onPressed: () async{
|
||
|
Navigator.pop(context);
|
||
|
await Navigator.push(
|
||
|
context,
|
||
|
MaterialPageRoute(
|
||
|
builder: (context) => offers()),
|
||
|
);
|
||
|
//showBoreAddingDialog();
|
||
|
},
|
||
|
),
|
||
|
/* Padding(
|
||
|
padding: EdgeInsets.fromLTRB(5, 0, 5, 5),
|
||
|
child: Text(
|
||
|
'Add Tanks ',
|
||
|
style: TextStyle(color: Colors.white),
|
||
|
),
|
||
|
)*/
|
||
|
],
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
]);
|
||
|
}
|
||
|
else{
|
||
|
return Center(
|
||
|
child: Padding(
|
||
|
padding: EdgeInsets.fromLTRB(0, 40, 0, 0),
|
||
|
child: Column(
|
||
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||
|
children: [
|
||
|
SizedBox(height: MediaQuery.of(context).size.height * .25,),
|
||
|
Text('Click below icon to add new Offer'),
|
||
|
SizedBox(
|
||
|
height: 20,
|
||
|
),
|
||
|
CircleAvatar(
|
||
|
backgroundColor: primaryColor,
|
||
|
radius: 40,
|
||
|
child: IconButton(
|
||
|
iconSize: 40,
|
||
|
icon: const Icon(
|
||
|
Icons.add,
|
||
|
color: Colors.white,
|
||
|
),
|
||
|
onPressed: () async {
|
||
|
Navigator.pop(context);
|
||
|
await Navigator.push(
|
||
|
context,
|
||
|
MaterialPageRoute(
|
||
|
builder: (context) => offers()),
|
||
|
);
|
||
|
},
|
||
|
),
|
||
|
)
|
||
|
],
|
||
|
),
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Widget renderzInactiveUi(){
|
||
|
if(inactiveOffersList.length!=0){
|
||
|
|
||
|
return Column(
|
||
|
crossAxisAlignment: CrossAxisAlignment.end,
|
||
|
children: [
|
||
|
Expanded(child:ListView.builder(
|
||
|
padding: EdgeInsets.all(0),
|
||
|
itemCount: inactiveOffersList.length,
|
||
|
itemBuilder: (BuildContext context, int index) {
|
||
|
return Card(
|
||
|
|
||
|
color: inactiveOffersList[index].cardColor,
|
||
|
child: Padding(
|
||
|
padding:EdgeInsets.all(8) ,
|
||
|
child: Row(
|
||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||
|
children: [
|
||
|
|
||
|
Container(
|
||
|
//width: MediaQuery.of(context).size.width * .55,
|
||
|
child: Column(
|
||
|
children: [
|
||
|
Row(
|
||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||
|
children: [
|
||
|
Column(
|
||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||
|
children: [
|
||
|
Text('OfferName :',style: labelTextStyle()),
|
||
|
Text('OfferCode :',style: labelTextStyle()),
|
||
|
Text('OfferDes :' ,style: labelTextStyle()),
|
||
|
Text('OfferDis(%) :' ,style: labelTextStyle()),
|
||
|
Text('StartDate :',style: labelTextStyle()),
|
||
|
Text('EndDate :' ,style: labelTextStyle()),
|
||
|
|
||
|
],
|
||
|
),
|
||
|
SizedBox(width: 5,),
|
||
|
Column(
|
||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||
|
children: [
|
||
|
Text(inactiveOffersList[index].offer_name,style: valuesTextStyle()),
|
||
|
Text(inactiveOffersList[index].offer_code,style: valuesTextStyle()),
|
||
|
Text(inactiveOffersList[index].description,style: valuesTextStyle()),
|
||
|
Text(inactiveOffersList[index].discount_percentage,style: valuesTextStyle()),
|
||
|
Text(inactiveOffersList[index].starting_date,style: valuesTextStyle()),
|
||
|
Text(inactiveOffersList[index].ending_date,style: valuesTextStyle())
|
||
|
|
||
|
],
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
),
|
||
|
|
||
|
Expanded(child:TextButton(
|
||
|
onPressed: () {
|
||
|
showDialog(
|
||
|
//if set to true allow to close popup by tapping out of the popup
|
||
|
//barrierDismissible: false,
|
||
|
context: context,
|
||
|
builder: (BuildContext context) => AlertDialog(
|
||
|
title: const Text('Do you want to Re_Active offer ??',
|
||
|
style: TextStyle(
|
||
|
color: primaryColor,
|
||
|
fontSize: 16,
|
||
|
)),
|
||
|
actionsAlignment: MainAxisAlignment.spaceBetween,
|
||
|
actions: [
|
||
|
TextButton(
|
||
|
onPressed: ()async {
|
||
|
bool deleteTankStatus = await AppSettings.reactiveOffers(inactiveOffersList[index].offer_code);
|
||
|
|
||
|
if(deleteTankStatus){
|
||
|
getInactiveOffersViewData();
|
||
|
AppSettings.longSuccessToast('offer Re_Active successfully');
|
||
|
getActiveOffersViewData();
|
||
|
Navigator.of(context).pop(true);
|
||
|
|
||
|
}
|
||
|
else{
|
||
|
AppSettings.longFailedToast('offer Re_Active failed');
|
||
|
}
|
||
|
},
|
||
|
child: const Text('Yes',
|
||
|
style: TextStyle(
|
||
|
color: primaryColor,
|
||
|
fontSize: 18,
|
||
|
)),
|
||
|
),
|
||
|
TextButton(
|
||
|
onPressed: () {
|
||
|
Navigator.of(context).pop(true);
|
||
|
},
|
||
|
child: const Text('No',
|
||
|
style: TextStyle(
|
||
|
color: primaryColor,
|
||
|
fontSize: 18,
|
||
|
)),
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
);
|
||
|
},
|
||
|
child: const Text(
|
||
|
'RE_ACTIVE',
|
||
|
style: TextStyle(
|
||
|
color: primaryColor,
|
||
|
fontSize: 15,
|
||
|
fontWeight: FontWeight.bold
|
||
|
/* decoration: TextDecoration.underline,*/
|
||
|
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
|
||
|
),
|
||
|
|
||
|
],
|
||
|
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
}) ),
|
||
|
Padding(
|
||
|
padding: EdgeInsets.fromLTRB(8, 8, 8, 8),
|
||
|
child: CircleAvatar(
|
||
|
backgroundColor: primaryColor,
|
||
|
radius: 40,
|
||
|
child: Column(
|
||
|
mainAxisSize: MainAxisSize.min,
|
||
|
children: <Widget>[
|
||
|
IconButton(
|
||
|
iconSize: 40,
|
||
|
icon: const Icon(
|
||
|
Icons.add,
|
||
|
color: Colors.white,
|
||
|
),
|
||
|
onPressed: () async{
|
||
|
Navigator.pop(context);
|
||
|
await Navigator.push(
|
||
|
context,
|
||
|
MaterialPageRoute(
|
||
|
builder: (context) => offers()),
|
||
|
);
|
||
|
//showBoreAddingDialog();
|
||
|
},
|
||
|
),
|
||
|
/* Padding(
|
||
|
padding: EdgeInsets.fromLTRB(5, 0, 5, 5),
|
||
|
child: Text(
|
||
|
'Add Tanks ',
|
||
|
style: TextStyle(color: Colors.white),
|
||
|
),
|
||
|
)*/
|
||
|
],
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
]);
|
||
|
}
|
||
|
else{
|
||
|
return Center(
|
||
|
child: Padding(
|
||
|
padding: EdgeInsets.fromLTRB(0, 40, 0, 0),
|
||
|
child: Column(
|
||
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||
|
children: [
|
||
|
SizedBox(height: MediaQuery.of(context).size.height * .25,),
|
||
|
Text('Click below icon to add new Offer'),
|
||
|
SizedBox(
|
||
|
height: 20,
|
||
|
),
|
||
|
CircleAvatar(
|
||
|
backgroundColor: primaryColor,
|
||
|
radius: 40,
|
||
|
child: IconButton(
|
||
|
iconSize: 40,
|
||
|
icon: const Icon(
|
||
|
Icons.add,
|
||
|
color: Colors.white,
|
||
|
),
|
||
|
onPressed: () async {
|
||
|
Navigator.pop(context);
|
||
|
await Navigator.push(
|
||
|
context,
|
||
|
MaterialPageRoute(
|
||
|
builder: (context) => offers()),
|
||
|
);
|
||
|
},
|
||
|
),
|
||
|
)
|
||
|
],
|
||
|
),
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Scaffold(
|
||
|
appBar: AppBar(
|
||
|
title: Text('Offers'),
|
||
|
backgroundColor: primaryColor,
|
||
|
bottom: TabBar(
|
||
|
controller: _controller,
|
||
|
tabs: topTabs,
|
||
|
indicatorColor: Colors.blue,
|
||
|
unselectedLabelColor: Colors.white60,
|
||
|
indicatorWeight: 2,
|
||
|
),),
|
||
|
/* body: */
|
||
|
body: TabBarView(controller: _controller, children: [
|
||
|
/*Container(
|
||
|
// color: Colors.lightGreenAccent,
|
||
|
child: isTankerDataLoading?Center(
|
||
|
child: CircularProgressIndicator(
|
||
|
color: primaryColor,
|
||
|
strokeWidth: 5.0,
|
||
|
),
|
||
|
):_tanker(),
|
||
|
),*/
|
||
|
Container(
|
||
|
//color: Colors.lightBlueAccent,
|
||
|
child: isActiveDataLoading?Center(
|
||
|
child: CircularProgressIndicator(
|
||
|
color: primaryColor,
|
||
|
strokeWidth: 5.0,
|
||
|
),
|
||
|
):renderzActiveUi(),
|
||
|
),
|
||
|
Container(
|
||
|
//color: Colors.lightBlueAccent,
|
||
|
child: isinactiveDataLoading?Center(
|
||
|
child: CircularProgressIndicator(
|
||
|
color: primaryColor,
|
||
|
strokeWidth: 5.0,
|
||
|
),
|
||
|
):renderzInactiveUi(),
|
||
|
),
|
||
|
|
||
|
|
||
|
]),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|