import 'package:flutter/material.dart'; import 'package:flutter_svg/svg.dart'; import 'package:get/get.dart'; import 'package:get/get_core/src/get_main.dart'; import 'package:google_fonts/google_fonts.dart'; import 'package:intl/intl.dart'; import '../../controller/get_dispatch_controller.dart'; import '../../controller/get_single_invoice_controller.dart'; import '../../controller/rd_get_order_controller.dart'; import '../../controller/rd_processing_invoice_controller.dart'; import '../../controller/rd_processing_order_controller.dart'; import '../../models/get_invoice_model.dart'; import '../../models/rd_processing_invoice_model.dart'; import '../../utils/show_snackbar.dart'; class RdOrderProcessingDetailScreen extends StatefulWidget { InvoiceResponseModel? placedOrderList; GetInvoiceModel? placeInvoiceList; RdOrderProcessingDetailScreen({super.key ,this.placedOrderList,this.placeInvoiceList}); @override State createState() => _RdOrderProcessingDetailScreenState(); } class _RdOrderProcessingDetailScreenState extends State { final GetRDProcessingInvoiceController _getRdProductController = Get.put(GetRDProcessingInvoiceController()); final GetSingleInvoiceController _getSingleInvoiceController = Get.put(GetSingleInvoiceController()); final RDOrderPlacedController controller = Get.put(RDOrderPlacedController()); final GetDispatchController _getDispatchController = Get.put(GetDispatchController()); final List statusOptions = [ "new", "pending", "processing", "dispatched", "cancelled", "delivered", ]; String selectedStatus = "processing"; String _groupValue = "cheque"; // Function to format date from the API to a more readable format List _statusList = ["processing","dispatch"]; // String formatDate(String apiDate) { // // Parse the API date string into a DateTime object // DateTime parsedDate = DateTime.parse(apiDate).toLocal(); // Convert to local time // // // Format the date and time according to your specified format // String formattedDate = DateFormat('EEE MMM dd yyyy, hh:mm a').format(parsedDate); // // return formattedDate; // Return the formatted date string // } // Function to capitalize the first letter of a string String capitalizeFirstLetter(String text) { if (text.isEmpty) return text; return text[0].toUpperCase() + text.substring(1).toLowerCase(); } getOrder1(){ _getSingleInvoiceController.fetchInvoice(widget.placedOrderList!.id); print("dfdfdfg"''); } void _showDispatchDetailsDialog() { // Only show the dialog if the selected status is "dispatch" if (selectedStatus != "dispatch") { // You can show a Snackbar or a simple AlertDialog if needed ScaffoldMessenger.of(context).showSnackBar( SnackBar(content: Text('Dispatch option is only available when the status is "dispatch".')), ); return; // Exit the function if the condition is not met } final TextEditingController _courierNameController = TextEditingController(); final TextEditingController _courierTrackingIdController = TextEditingController(); showDialog( context: context, builder: (context) { return AlertDialog( title: Text('Dispatch Details'), content: Column( mainAxisSize: MainAxisSize.min, // Shrink to fit the content children: [ TextField( controller: _courierNameController, decoration: InputDecoration( labelText: 'Courier Name', ), ), TextField( controller: _courierTrackingIdController, decoration: InputDecoration( labelText: 'Courier Tracking ID', ), ), ], ), actions: [ TextButton( onPressed: () { Navigator.of(context).pop(); // Close the dialog }, child: Text('Cancel'), ), TextButton( onPressed: () { String courierName = _courierNameController.text; String courierTrackingId = _courierTrackingIdController.text; // Call the API to submit data _getDispatchController.RDProcessingToDispatchProduct(widget.placedOrderList!.id, courierName, courierTrackingId); showSnackbar("Order Status updated Order Dispatched"); Navigator.of(context).pop(); // Close the dialog after submission }, child: Text('Submit'), ), ], ); }, ); } @override void initState() { // TODO: implement initState super.initState(); getOrder1(); } @override Widget build(BuildContext context) { return Scaffold( extendBodyBehindAppBar: true, appBar: AppBar( backgroundColor: Colors.transparent, elevation: 0, leading: GestureDetector( onTap: () {}, child: Padding( padding: const EdgeInsets.all(16.0), child: SvgPicture.asset( 'assets/svg/menu.svg', ), ), ), actions: [ GestureDetector( onTap: () => Get.back(), child: Padding( padding: const EdgeInsets.all(8.0), child: SvgPicture.asset( 'assets/svg/back_arrow.svg', ), ), ), ], title: const Text( "Processing Order Detail", ), ), body: Stack( fit: StackFit.expand, children: [ Image.asset( 'assets/images/image_1.png', fit: BoxFit.cover, ), SafeArea( child: SingleChildScrollView( child: Column( mainAxisSize: MainAxisSize.min, mainAxisAlignment: MainAxisAlignment.start, children: [ SizedBox( height: Get.height * 0.02, ), Card( margin: const EdgeInsets.symmetric(horizontal: 18), shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(19), side: const BorderSide(color: Color(0xFFFDFDFD)), ), color: const Color(0xFFB4D1E5).withOpacity(0.9), child: Padding( padding: const EdgeInsets.all(12.0), child: Column( mainAxisSize: MainAxisSize.min, children: [ Card( child: Column( children: [ SizedBox( width: Get.width, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Text( "Invoices", style: GoogleFonts.roboto( fontSize: Get.width * 0.05, fontWeight: FontWeight.bold, ), ), ), ), SizedBox( width: Get.width, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Text( "Invoice ID:", style: GoogleFonts.roboto( fontSize: Get.width * 0.04, fontWeight: FontWeight.bold, ), ), Text(widget.placedOrderList!.invoiceId), // Text(widget.placedOrderList!.uniqueId), ], ), ), ), SizedBox( width: Get.width, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( "Items: ", style: GoogleFonts.roboto( fontSize: Get.width * 0.04, fontWeight: FontWeight.bold, ), ), SizedBox(height: 10), // Add spacing between the title and the list of items Column( children: widget.placedOrderList!.items.map((item) { return Padding( padding: const EdgeInsets.symmetric(vertical: 4.0), // Add some spacing between items child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Expanded( child: Text( "${item.name.toString()} (${item.sku.toString()})", style: GoogleFonts.roboto( fontSize: Get.width * 0.03, ), overflow: TextOverflow.ellipsis, // Handle long text ), ), Text("x ${item.processQuantity.toString()}"), ], ), ); }).toList(), ), ], ), ), ), SizedBox( width: Get.width, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Text( "Sub Total : ", style: GoogleFonts.roboto( fontSize: Get.width * 0.04, fontWeight: FontWeight.bold, ), ), Text("₹ ${widget.placedOrderList!.subtotal}"), ], ), ), ), SizedBox( width: Get.width, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Text( "GST : ", style: GoogleFonts.roboto( fontSize: Get.width * 0.04, fontWeight: FontWeight.bold, ), ), Text("₹ ${widget.placedOrderList!.gstTotal}"), ], ), ), ), SizedBox( width: Get.width, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Text( "Invoice Amount: ", style: GoogleFonts.roboto( fontSize: Get.width * 0.04, fontWeight: FontWeight.bold, ), ), Text("₹ ${widget.placedOrderList!.invoiceAmount}"), ], ), ), ), SizedBox( width: Get.width, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Text( "Courier Status : ", style: GoogleFonts.roboto( fontSize: Get.width * 0.04, fontWeight: FontWeight.bold, ), ), ElevatedButton( onPressed: (){}, // Get.to(() => // RdOrderDetailScreen( // placedOrderList: uniqueOrders[index])), // Navigate to detail screen style: ElevatedButton.styleFrom( foregroundColor: Colors.white, backgroundColor: Colors.orange, shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(10)), ), child: Text(widget.placedOrderList!.courierStatus, style: GoogleFonts.roboto(fontSize: 14, fontWeight: FontWeight.w400)), ), //Text("₹ ${widget.placedOrderList!.gstTotal}"), ], ), ), ), ], ), ), const SizedBox(height: 8), const SizedBox(height: 8), const SizedBox(height: 8), SizedBox( height: Get.height* 0.19, child: Card( child: Column( children: [ SizedBox( width: Get.width, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Text( "Customer Details", style: GoogleFonts.roboto( fontSize: Get.width * 0.05, fontWeight: FontWeight.w500, ), ), ), ), SizedBox( width: Get.width, //height: Get.height*0.09, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Row( children: [ Text( "Name: ", style: GoogleFonts.roboto( fontSize: Get.width * 0.04, fontWeight: FontWeight.bold, ), ), Text("${"VAIBHAV"}",maxLines: 4, overflow:TextOverflow.ellipsis,) , ], ) ), ), SizedBox( width: Get.width, // height: Get.height*0.09, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Row( children: [ Text( "Email: ", style: GoogleFonts.roboto( fontSize: Get.width * 0.04, fontWeight: FontWeight.bold, ), ), Text("${"vaibhav.gurjar20001@gmail.com"}",maxLines: 4, overflow:TextOverflow.ellipsis,) , ], ) ), ), SizedBox( width: Get.width, // height: Get.height*0.09, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Row( children: [ Text( "Mobile Number: ", style: GoogleFonts.roboto( fontSize: Get.width * 0.04, fontWeight: FontWeight.bold, ), ), Text("${"7779797976"}",maxLines: 4, overflow:TextOverflow.ellipsis,) , ], ) ), ) ], ), ), ), const SizedBox(height: 8), Card( child: Column( children: [ SizedBox( width: Get.width, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Text( "Billing Information", style: GoogleFonts.roboto( fontSize: Get.width * 0.05, fontWeight: FontWeight.w500, ), ), ), ), SizedBox( width: Get.width, height: Get.height*0.06, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Wrap( crossAxisAlignment: WrapCrossAlignment.start, children: [ Text( "Address: ", style: GoogleFonts.roboto( fontSize: Get.width * 0.04, fontWeight: FontWeight.bold, ), ), Text("${"456, Park Street, Kolkata, West Bengal - 700016"}",maxLines: 4, overflow:TextOverflow.ellipsis,) ], ), ), ), ], ), ), const SizedBox(height: 8), // Card for displaying shipping information Card( child: Column( children: [ SizedBox( width: Get.width, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Text( "Shipping Information", style: GoogleFonts.roboto( fontSize: Get.width * 0.05, fontWeight: FontWeight.w500, ), ), ), ), SizedBox( width: Get.width, height: Get.height*0.06, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Wrap( crossAxisAlignment: WrapCrossAlignment.start, children: [ Text( "Address: ", style: GoogleFonts.roboto( fontSize: Get.width * 0.04, fontWeight: FontWeight.bold, ), ), Text("${"456, Park Street, Kolkata, West Bengal - 700016"}",maxLines: 4, overflow:TextOverflow.ellipsis,) ], ), ), ), ], ), ), const SizedBox(height: 8), Card( child: Column( children: [ SizedBox( width: Get.width, height: Get.height*0.05, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Row( children: [ Text( "Payment Mode : ", style: GoogleFonts.roboto( fontSize: Get.width * 0.04, fontWeight: FontWeight.w500, ), ), Text(capitalizeFirstLetter("online-transfer")), // Text("${widget.placedOrderList!.paymentMode}",maxLines: 4, // overflow:TextOverflow.ellipsis,) ], ), ), ), ], ), ), const SizedBox(height: 8), Card( child: Column( children: [ SizedBox( width: Get.width, height: Get.height*0.05, child: Padding( padding: const EdgeInsets.fromLTRB(8, 8, 8, 0), child: Row( children: [ Text( "Order Status :", style: GoogleFonts.roboto( fontSize: Get.width * 0.04, fontWeight: FontWeight.w500, ), ), SizedBox(width: Get.width*0.01,), //Text(capitalizeFirstLetter(widget.placedOrderList!.status)), Text("${widget.placedOrderList!.courierStatus}",maxLines: 4, overflow:TextOverflow.ellipsis,) ], ), ), ), ], ), ), const SizedBox(height: 8), SizedBox( height: Get.height * 0.05, child: Row( crossAxisAlignment: CrossAxisAlignment.center, children: [ const Text( "Status: ", style: TextStyle(fontWeight: FontWeight.bold), ), SizedBox(width: 10), // Space between label and dropdown Expanded( child: DropdownButtonFormField( value: selectedStatus, decoration: InputDecoration( filled: true, fillColor: Colors.white, // White background contentPadding: EdgeInsets.symmetric( vertical: 10, horizontal: 12), border: OutlineInputBorder( borderRadius: BorderRadius.circular(10), borderSide: BorderSide( color: Colors.grey, width: 1, ), ), ), items: _statusList.map((String status) { return DropdownMenuItem( value: status, child: Text(capitalizeFirstLetter(status)), ); }).toList(), onChanged: (newValue) { setState(() { selectedStatus = newValue!; }); }, ), ), ], ), ), SizedBox( width: Get.width * 0.4, child: Padding( padding: const EdgeInsets.all(8.0), child: ElevatedButton( onPressed: (){ //_getDispatchController.RDProcessingToDispatchProduct(widget.placedOrderList!.invoiceId, widget.placedOrderList!., couriertrackingId) _showDispatchDetailsDialog(); }, // Get.to(() => // RdOrderDetailScreen( // placedOrderList: uniqueOrders[index])), // Navigate to detail screen style: ElevatedButton.styleFrom( foregroundColor: Colors.white, backgroundColor: const Color(0xFF004791), shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(10)), ), child: Text("Update Status", style: GoogleFonts.roboto(fontSize: 14, fontWeight: FontWeight.w400)), ), ), ) ], ), ), ), SizedBox(height: Get.height * 0.04), ], ), ), ), ], ), ); } }