1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381 |
- import 'dart:async';
- import 'dart:io';
- import 'package:flutter/foundation.dart';
- import 'package:flutter/material.dart';
- import 'package:intl/intl.dart';
- import 'package:provider/provider.dart';
- import '../pedido/pedido_ticket.dart';
- import '../../themes/themes.dart';
- import '../../models/models.dart';
- import '../../viewmodels/viewmodels.dart';
- import 'package:collection/collection.dart';
- import 'package:flutter/services.dart';
- import '../../widgets/widgets.dart';
- class PedidoForm extends StatefulWidget {
- @override
- _PedidoFormState createState() => _PedidoFormState();
- }
- class _PedidoFormState extends State<PedidoForm> {
- final _busqueda = TextEditingController(text: '');
- final TextEditingController _descuentoController = TextEditingController();
- CategoriaProductoViewModel cvm = CategoriaProductoViewModel();
- ProductoViewModel pvm = ProductoViewModel();
- PedidoViewModel pedvm = PedidoViewModel();
- bool _isLoading = false;
- CategoriaProducto? categoriaSeleccionada;
- List<CategoriaProducto> categorias = [];
- List<Producto> productos = [];
- List<ItemCarrito> carrito = [];
- Producto? _productoActual;
- bool _estadoBusqueda = false;
- Pedido? pedidoActual;
- ScrollController _listViewController = ScrollController();
- ScrollController _categoryScrollController = ScrollController();
- final _searchController = TextEditingController();
- final NumberFormat _numberFormat = NumberFormat.decimalPattern('es_MX');
- int? selectedDescuento = 0;
- double subtotal = 0;
- double precioDescuento = 0;
- double totalPedido = 0;
- bool efectivoSeleccionado = false;
- bool tarjetaSeleccionada = false;
- bool transferenciaSeleccionada = false;
- TextEditingController efectivoController = TextEditingController();
- TextEditingController tarjetaController = TextEditingController();
- TextEditingController transferenciaController = TextEditingController();
- double cambio = 0.0;
- double calcularTotalPedido() {
- double total = 0;
- for (var item in carrito) {
- total += item.producto.precio! * item.cantidad;
- item.selectedToppings.forEach((categoryId, selectedToppingIds) {
- for (int toppingId in selectedToppingIds) {
- Producto? topping = item.selectableToppings[categoryId]?.firstWhere(
- (topping) => topping.id == toppingId,
- orElse: () => Producto(precio: 0));
- if (topping != null) {
- total += (topping.precio ?? 0.0) * item.cantidad;
- }
- }
- });
- }
- return total;
- }
- double aplicarDescuento(double total, int? descuento) {
- if (descuento != null && descuento > 0) {
- double totalPedido = total * (1 - descuento / 100);
- // print(
- // 'Total con descuento: $totalPedido (Descuento aplicado: $descuento%)');
- return totalPedido;
- }
- // print('Sin descuento, total: $total');
- return total;
- }
- @override
- void initState() {
- super.initState();
- cargarCategoriasIniciales().then((_) {
- if (categorias.isNotEmpty) {
- categoriaSeleccionada = categorias.first;
- cargarProductosPorCategoria(categoriaSeleccionada!.id);
- }
- });
- Provider.of<DescuentoViewModel>(context, listen: false).cargarDescuentos();
- }
- void _onSearchChanged(String value) {
- if (value.isEmpty) {
- // Si no hay valor de búsqueda, cargar los productos iniciales y restaurar la categoría seleccionada.
- cargarProductosPorCategoria(
- categoriaSeleccionada?.id ?? categorias.first.id);
- } else {
- // Realiza la búsqueda y desactiva la categoría seleccionada para mostrar productos de todas las categorías.
- setState(() {
- _estadoBusqueda = true; // Indicamos que hay una búsqueda activa
- categoriaSeleccionada = null; // Ignoramos la categoría seleccionada
- });
- Provider.of<ProductoViewModel>(context, listen: false)
- .fetchLocalByName(nombre: value);
- }
- }
- void _recalcularTotal() {
- subtotal = calcularTotalPedido();
- // print('Subtotal: $subtotal');
- // print('Descuento seleccionado: $selectedDescuento%');
- precioDescuento = subtotal * (selectedDescuento! / 100);
- totalPedido = subtotal - precioDescuento;
- setState(() {
- pedidoActual = pedidoActual ?? Pedido();
- pedidoActual!.totalPedido = totalPedido;
- pedidoActual!.descuento = selectedDescuento;
- });
- // print('Precio descuento: $precioDescuento');
- // print('Total con descuento aplicado: $totalPedido');
- }
- void _finalizeOrder() async {
- if (carrito.isEmpty) {
- showDialog(
- context: context,
- builder: (BuildContext context) {
- return AlertDialog(
- title: const Text('Pedido vacío',
- style: TextStyle(fontWeight: FontWeight.w500, fontSize: 22)),
- content: const Text(
- 'No puedes finalizar un pedido sin productos. Por favor, agrega al menos un producto.',
- style: TextStyle(fontWeight: FontWeight.w500, fontSize: 18)),
- shape:
- RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)),
- actions: <Widget>[
- TextButton(
- style: TextButton.styleFrom(
- padding: EdgeInsets.fromLTRB(30, 20, 30, 20),
- foregroundColor: AppTheme.quaternary,
- backgroundColor: AppTheme.tertiary),
- onPressed: () {
- Navigator.of(context).pop();
- },
- child: const Text('Aceptar', style: TextStyle(fontSize: 18)),
- ),
- ],
- );
- },
- );
- return;
- }
- await _promptForCustomerName();
- }
- Future<void> _promptForCustomerName() async {
- TextEditingController nombreController = TextEditingController();
- TextEditingController comentarioController = TextEditingController();
- String errorMessage = '';
- double faltante = totalPedido;
- bool totalCompletado = false;
- bool efectivoCompleto = false;
- bool tarjetaCompleto = false;
- bool transferenciaCompleto = false;
- void _calcularCambio(StateSetter setState) {
- double totalPagado = (double.tryParse(efectivoController.text) ?? 0) +
- (double.tryParse(tarjetaController.text) ?? 0) +
- (double.tryParse(transferenciaController.text) ?? 0);
- setState(() {
- cambio = totalPagado - totalPedido;
- if (cambio < 0) {
- faltante = totalPedido - totalPagado;
- cambio = 0;
- totalCompletado = false;
- } else {
- faltante = 0;
- totalCompletado = true;
- }
- // Si el total ha sido alcanzado o excedido, desactivar otros métodos de pago
- if (totalPagado >= totalPedido) {
- if (!efectivoSeleccionado) efectivoSeleccionado = false;
- if (!tarjetaSeleccionada) tarjetaSeleccionada = false;
- if (!transferenciaSeleccionada) transferenciaSeleccionada = false;
- }
- });
- }
- void _validarCantidad(
- StateSetter setState, TextEditingController controller) {
- double cantidad = double.tryParse(controller.text) ?? 0;
- if (cantidad > totalPedido) {
- setState(() {
- controller.text = totalPedido.toStringAsFixed(2);
- });
- }
- _calcularCambio(setState);
- }
- bool _isPaymentOptionEnabled(bool isSelected) {
- return !totalCompletado || isSelected;
- }
- bool? shouldSave = await showDialog<bool>(
- context: context,
- builder: (BuildContext context) {
- return StatefulBuilder(
- builder: (context, setState) {
- return RawKeyboardListener(
- focusNode: FocusNode(),
- onKey: (RawKeyEvent event) {
- if (event.isKeyPressed(LogicalKeyboardKey.enter) &&
- totalCompletado) {
- Navigator.of(context).pop(true);
- }
- },
- child: AlertDialog(
- actionsPadding: EdgeInsets.fromLTRB(50, 10, 50, 30),
- title: const Text(
- 'Finalizar Pedido',
- style: TextStyle(fontSize: 22, fontWeight: FontWeight.w500),
- ),
- content: Container(
- height: 600,
- child: Column(
- children: [
- Expanded(
- child: SingleChildScrollView(
- child: Column(
- children: [
- AppTextField(
- controller: nombreController,
- etiqueta: 'Nombre',
- hintText: "Nombre del Cliente",
- ),
- const SizedBox(height: 10),
- AppTextField(
- controller: comentarioController,
- etiqueta: 'Comentarios (opcional)',
- hintText: 'Comentarios',
- maxLines: 2,
- ),
- const SizedBox(height: 10),
- Align(
- alignment: Alignment.center,
- child: Text(
- 'Métodos de pago',
- style: TextStyle(
- fontWeight: FontWeight.bold,
- fontSize: 20),
- ),
- ),
- const SizedBox(height: 10),
- // Efectivo
- GestureDetector(
- onTap: () {
- if (_isPaymentOptionEnabled(
- efectivoSeleccionado)) {
- setState(() {
- efectivoSeleccionado =
- !efectivoSeleccionado;
- if (!efectivoSeleccionado) {
- efectivoCompleto = false;
- efectivoController.clear();
- _calcularCambio(setState);
- } else if (efectivoCompleto) {
- efectivoController.text =
- totalPedido.toStringAsFixed(2);
- _calcularCambio(setState);
- }
- });
- }
- },
- child: Row(
- mainAxisAlignment:
- MainAxisAlignment.spaceBetween,
- crossAxisAlignment:
- CrossAxisAlignment.center,
- children: [
- Row(
- children: [
- Checkbox(
- activeColor: AppTheme.primary,
- value: efectivoSeleccionado,
- onChanged: _isPaymentOptionEnabled(
- efectivoSeleccionado)
- ? (bool? value) {
- setState(() {
- efectivoSeleccionado =
- value ?? false;
- if (!efectivoSeleccionado) {
- efectivoCompleto =
- false;
- efectivoController
- .clear();
- _calcularCambio(
- setState);
- } else if (efectivoCompleto) {
- efectivoController
- .text =
- totalPedido
- .toStringAsFixed(
- 2);
- _calcularCambio(
- setState);
- }
- });
- }
- : null,
- ),
- const Text(
- "Efectivo",
- style: TextStyle(
- fontSize: 18,
- fontWeight: FontWeight.bold),
- ),
- ],
- ),
- if (efectivoSeleccionado)
- SizedBox(
- width: 180,
- child: Row(
- crossAxisAlignment:
- CrossAxisAlignment.start,
- children: [
- Column(
- children: [
- const Text('Exacto',
- style: TextStyle(
- fontSize: 18,
- fontWeight:
- FontWeight.bold,
- color: Colors.black)),
- const SizedBox(
- height: 17,
- ),
- Checkbox(
- activeColor:
- AppTheme.primary,
- value: efectivoCompleto,
- onChanged:
- efectivoSeleccionado
- ? (bool? value) {
- setState(() {
- efectivoCompleto =
- value ??
- false;
- if (efectivoCompleto) {
- efectivoController
- .text =
- totalPedido
- .toStringAsFixed(2);
- _calcularCambio(
- setState);
- } else {
- efectivoController
- .clear();
- _calcularCambio(
- setState);
- }
- });
- }
- : null,
- ),
- ],
- ),
- const SizedBox(
- width: 5,
- ),
- Expanded(
- child: AppTextField(
- controller:
- efectivoController,
- etiqueta: 'Cantidad',
- hintText: '0.00',
- keyboardType:
- TextInputType.number,
- onChanged: (value) =>
- _calcularCambio(setState),
- ),
- ),
- ],
- ),
- ),
- ],
- ),
- ),
- const SizedBox(height: 10),
- // Tarjeta
- GestureDetector(
- onTap: () {
- if (_isPaymentOptionEnabled(
- tarjetaSeleccionada)) {
- setState(() {
- tarjetaSeleccionada =
- !tarjetaSeleccionada;
- if (!tarjetaSeleccionada) {
- tarjetaController.clear();
- _calcularCambio(setState);
- }
- });
- }
- },
- child: Row(
- mainAxisAlignment:
- MainAxisAlignment.spaceBetween,
- crossAxisAlignment:
- CrossAxisAlignment.center,
- children: [
- Row(
- children: [
- Checkbox(
- activeColor: AppTheme.primary,
- value: tarjetaSeleccionada,
- onChanged: _isPaymentOptionEnabled(
- tarjetaSeleccionada)
- ? (bool? value) {
- setState(() {
- tarjetaSeleccionada =
- value ?? false;
- if (!tarjetaSeleccionada) {
- tarjetaController
- .clear();
- _calcularCambio(
- setState);
- }
- });
- }
- : null,
- ),
- const Text(
- "Tarjeta",
- style: TextStyle(
- fontSize: 18,
- fontWeight: FontWeight.bold),
- ),
- ],
- ),
- if (tarjetaSeleccionada)
- SizedBox(
- width: 180,
- child: Row(
- crossAxisAlignment:
- CrossAxisAlignment.start,
- children: [
- Column(
- children: [
- const Text('Exacto',
- style: TextStyle(
- fontSize: 18,
- fontWeight:
- FontWeight.bold,
- color: Colors.black)),
- const SizedBox(
- height: 17,
- ),
- Checkbox(
- activeColor:
- AppTheme.primary,
- value: tarjetaCompleto,
- onChanged:
- tarjetaSeleccionada
- ? (bool? value) {
- setState(() {
- tarjetaCompleto =
- value ??
- false;
- if (tarjetaCompleto) {
- tarjetaController
- .text =
- totalPedido
- .toStringAsFixed(2);
- _calcularCambio(
- setState);
- } else {
- tarjetaController
- .clear();
- _calcularCambio(
- setState);
- }
- });
- }
- : null,
- ),
- ],
- ),
- const SizedBox(
- width: 5,
- ),
- Expanded(
- child: AppTextField(
- controller: tarjetaController,
- etiqueta: 'Cantidad',
- hintText: '0.00',
- keyboardType:
- TextInputType.number,
- onChanged: (value) {
- _validarCantidad(setState,
- tarjetaController);
- },
- ),
- ),
- ],
- ),
- ),
- ],
- ),
- ),
- const SizedBox(height: 10),
- // Transferencia
- GestureDetector(
- onTap: () {
- if (_isPaymentOptionEnabled(
- transferenciaSeleccionada)) {
- setState(() {
- transferenciaSeleccionada =
- !transferenciaSeleccionada;
- if (!transferenciaSeleccionada) {
- transferenciaController.clear();
- _calcularCambio(setState);
- }
- });
- }
- },
- child: Row(
- mainAxisAlignment:
- MainAxisAlignment.spaceBetween,
- crossAxisAlignment:
- CrossAxisAlignment.center,
- children: [
- Row(
- children: [
- Checkbox(
- activeColor: AppTheme.primary,
- value: transferenciaSeleccionada,
- onChanged: _isPaymentOptionEnabled(
- transferenciaSeleccionada)
- ? (bool? value) {
- setState(() {
- transferenciaSeleccionada =
- value ?? false;
- if (!transferenciaSeleccionada) {
- transferenciaController
- .clear();
- _calcularCambio(
- setState);
- }
- });
- }
- : null,
- ),
- const Text(
- "Transferencia",
- style: TextStyle(
- fontSize: 18,
- fontWeight: FontWeight.bold),
- ),
- ],
- ),
- if (transferenciaSeleccionada)
- SizedBox(
- width: 180,
- child: Row(
- crossAxisAlignment:
- CrossAxisAlignment.start,
- children: [
- Column(
- children: [
- const Text('Exacto',
- style: TextStyle(
- fontSize: 18,
- fontWeight:
- FontWeight.bold,
- color: Colors.black)),
- const SizedBox(
- height: 17,
- ),
- Checkbox(
- activeColor:
- AppTheme.primary,
- value:
- transferenciaCompleto,
- onChanged:
- transferenciaSeleccionada
- ? (bool? value) {
- setState(() {
- transferenciaCompleto =
- value ??
- false;
- if (transferenciaCompleto) {
- transferenciaController
- .text =
- totalPedido
- .toStringAsFixed(2);
- _calcularCambio(
- setState);
- } else {
- transferenciaController
- .clear();
- _calcularCambio(
- setState);
- }
- });
- }
- : null,
- ),
- ],
- ),
- const SizedBox(
- width: 5,
- ),
- Expanded(
- child: AppTextField(
- controller:
- transferenciaController,
- etiqueta: 'Cantidad',
- hintText: '0.00',
- keyboardType:
- TextInputType.number,
- onChanged: (value) {
- _validarCantidad(setState,
- transferenciaController);
- },
- ),
- ),
- ],
- ),
- ),
- ],
- ),
- ),
- const SizedBox(height: 10),
- // Mostrar el total del pedido y la cantidad faltante
- Align(
- alignment: Alignment.centerRight,
- child: Column(
- crossAxisAlignment:
- CrossAxisAlignment.end,
- children: [
- Text(
- 'Total del pedido: \$${totalPedido.toStringAsFixed(2)}',
- style: const TextStyle(
- fontWeight: FontWeight.bold,
- fontSize: 18),
- ),
- if (faltante > 0)
- Text(
- 'Faltante: \$${faltante.toStringAsFixed(2)}',
- style: const TextStyle(
- color: Colors.red,
- fontSize: 18,
- fontWeight: FontWeight.bold),
- )
- else if (cambio > 0)
- Text(
- 'Cambio: \$${cambio.toStringAsFixed(2)}',
- style: const TextStyle(
- color: Colors.green,
- fontSize: 18,
- fontWeight: FontWeight.bold)),
- ]),
- ),
- ],
- ),
- ),
- ),
- // Aquí mantenemos los botones fijos
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- TextButton(
- child: const Text('Cancelar',
- style: TextStyle(fontSize: 18)),
- onPressed: () {
- Navigator.of(context).pop(false);
- },
- style: ButtonStyle(
- padding: MaterialStatePropertyAll(
- EdgeInsets.fromLTRB(30, 20, 30, 20)),
- backgroundColor:
- MaterialStatePropertyAll(Colors.red),
- foregroundColor: MaterialStatePropertyAll(
- AppTheme.secondary)),
- ),
- const SizedBox(width: 100),
- TextButton(
- child: const Text('Guardar',
- style: TextStyle(fontSize: 18)),
- onPressed: totalCompletado
- ? () {
- Navigator.of(context).pop(true);
- }
- : null,
- style: ButtonStyle(
- padding: MaterialStatePropertyAll(
- EdgeInsets.fromLTRB(30, 20, 30, 20)),
- backgroundColor: MaterialStatePropertyAll(
- totalCompletado
- ? AppTheme.tertiary
- : Colors.grey),
- foregroundColor: MaterialStatePropertyAll(
- AppTheme.quaternary)),
- ),
- ],
- ),
- ],
- ),
- ),
- ));
- },
- );
- },
- );
- if (shouldSave ?? false) {
- prepararPedidoActual(nombreController.text, comentarioController.text);
- }
- }
- void prepararPedidoActual(String nombreCliente, String comentarios) async {
- String now = DateTime.now().toUtc().toIso8601String();
- Pedido nuevoPedido = Pedido(
- peticion: now,
- nombreCliente: nombreCliente,
- comentarios: comentarios,
- estatus: "NUEVO",
- totalPedido: totalPedido,
- descuento: pedidoActual?.descuento,
- tipoPago: _obtenerTipoPago(),
- cantEfectivo:
- efectivoSeleccionado ? double.tryParse(efectivoController.text) : 0,
- cantTarjeta:
- tarjetaSeleccionada ? double.tryParse(tarjetaController.text) : 0,
- cantTransferencia: transferenciaSeleccionada
- ? double.tryParse(transferenciaController.text)
- : 0,
- );
- List<PedidoProducto> listaPedidoProducto = carrito.map((item) {
- List<PedidoProductoTopping> selectedToppings = [];
- item.selectedToppings.forEach((categoryId, selectedToppingIds) {
- for (int toppingId in selectedToppingIds) {
- selectedToppings.add(PedidoProductoTopping(
- idTopping: toppingId,
- ));
- }
- });
- return PedidoProducto(
- idProducto: item.producto.id,
- producto: item.producto,
- costoUnitario: item.producto.precio.toString(),
- cantidad: item.cantidad,
- comentario: comentarios,
- toppings: selectedToppings,
- );
- }).toList();
- nuevoPedido.productos = listaPedidoProducto;
- bool result = await Provider.of<PedidoViewModel>(context, listen: false)
- .guardarPedidoLocal(pedido: nuevoPedido);
- if (!mounted) return;
- if (result) {
- Pedido? pedidoCompleto =
- await Provider.of<PedidoViewModel>(context, listen: false)
- .fetchPedidoConProductos(nuevoPedido.id!);
- if (pedidoCompleto != null) {
- imprimirTicketsJuntos(context, pedidoCompleto);
- }
- Navigator.of(context).pop();
- } else {
- print("Error al guardar el pedido");
- }
- }
- String _obtenerTipoPago() {
- List<String> tiposPago = [];
- if (efectivoSeleccionado) tiposPago.add('Efectivo');
- if (tarjetaSeleccionada) tiposPago.add('Tarjeta');
- if (transferenciaSeleccionada) tiposPago.add('Transferencia');
- return tiposPago.join(',');
- }
- void _limpiarBusqueda() async {
- setState(() {
- _busqueda.text = '';
- _estadoBusqueda = false;
- });
- await cargarCategoriasIniciales();
- }
- Future<void> cargarProductosIniciales() async {
- setState(() => _isLoading = true);
- await Provider.of<ProductoViewModel>(context, listen: false)
- .fetchLocalAll();
- productos =
- Provider.of<ProductoViewModel>(context, listen: false).productos;
- setState(() => _isLoading = false);
- }
- @override
- void dispose() {
- _listViewController.dispose();
- _searchController.dispose();
- _categoryScrollController.dispose();
- super.dispose();
- }
- Future<void> cargarCategoriasIniciales() async {
- setState(() => _isLoading = true);
- await Provider.of<CategoriaProductoViewModel>(context, listen: false)
- .fetchLocalAll();
- categorias = Provider.of<CategoriaProductoViewModel>(context, listen: false)
- .categoriaProductos;
- if (categorias.isNotEmpty) {
- categoriaSeleccionada = categorias.first;
- cargarProductosPorCategoria(categoriaSeleccionada!.id);
- }
- setState(() => _isLoading = false);
- if (categorias.isNotEmpty) {
- categoriaSeleccionada = categorias.first;
- }
- }
- void cargarProductosPorCategoria(int categoriaId) async {
- setState(() => _isLoading = true);
- await Provider.of<ProductoViewModel>(context, listen: false)
- .fetchAllByCategory(categoriaId);
- productos =
- Provider.of<ProductoViewModel>(context, listen: false).productos;
- setState(() => _isLoading = false);
- }
- void agregarAlCarrito(Producto producto) async {
- var existente = carrito.firstWhereOrNull((item) =>
- item.producto.id == producto.id &&
- mapEquals(item.selectedToppings, {}));
- if (existente != null) {
- setState(() {
- existente.cantidad++;
- });
- } else {
- Map<int, List<Producto>> toppingsSeleccionables =
- await obtenerToppingsSeleccionables(producto);
- setState(() {
- carrito.add(ItemCarrito(
- producto: producto,
- cantidad: 1,
- selectableToppings: toppingsSeleccionables,
- ));
- });
- }
- _recalcularTotal();
- }
- Future<Map<int, List<Producto>>> obtenerToppingsSeleccionables(
- Producto producto) async {
- Map<int, List<Producto>> toppingsSeleccionables = {};
- final toppingCategories =
- await pvm.obtenerToppingsPorProducto(producto.id!);
- for (int toppingId in toppingCategories) {
- Producto? topping = await pvm.obtenerProductoPorId(toppingId);
- if (topping != null && topping.idCategoria != null) {
- toppingsSeleccionables[topping.idCategoria!] ??= [];
- toppingsSeleccionables[topping.idCategoria]!.add(topping);
- }
- }
- return toppingsSeleccionables;
- }
- void quitarDelCarrito(Producto producto) {
- setState(() {
- var indice =
- carrito.indexWhere((item) => item.producto.id == producto.id);
- if (indice != -1) {
- if (carrito[indice].cantidad > 1) {
- carrito[indice].cantidad--;
- } else {
- carrito.removeAt(indice);
- }
- }
- });
- }
- void addToCart(Producto producto) {
- var existingIndex = carrito.indexWhere((item) =>
- item.producto.id == producto.id &&
- mapEquals(item.selectedToppings, {}));
- if (existingIndex != -1) {
- setState(() {
- carrito[existingIndex].cantidad++;
- });
- } else {
- setState(() {
- carrito.add(ItemCarrito(producto: producto, cantidad: 1));
- });
- }
- }
- void finalizeCustomization() {
- if (_productoActual != null) {
- addToCart(_productoActual!);
- setState(() {
- _productoActual = null;
- });
- }
- }
- Widget _buildDiscountSection() {
- return Padding(
- padding: const EdgeInsets.symmetric(horizontal: 8.0),
- child: Row(
- crossAxisAlignment: CrossAxisAlignment.center,
- children: [
- const Text(
- 'Descuento',
- style: TextStyle(fontWeight: FontWeight.bold, fontSize: 18),
- ),
- const Spacer(),
- ConstrainedBox(
- constraints: const BoxConstraints(
- maxWidth: 150,
- ),
- child: Consumer<DescuentoViewModel>(
- builder: (context, viewModel, child) {
- return AppDropdownModel<int>(
- hint: 'Seleccionar',
- items: viewModel.descuentos
- .map(
- (descuento) => DropdownMenuItem<int>(
- value: descuento.porcentaje,
- child: Text(
- '${descuento.porcentaje}%',
- style: const TextStyle(color: Colors.black),
- ),
- ),
- )
- .toList(),
- selectedValue: selectedDescuento,
- onChanged: (value) {
- setState(() {
- selectedDescuento = value;
- _recalcularTotal();
- });
- },
- );
- },
- ),
- ),
- ],
- ),
- );
- }
- Widget _buildTotalSection() {
- String formattedsubtotal = _numberFormat.format(subtotal);
- String formattedPrecioDescuento = _numberFormat.format(precioDescuento);
- String formattedtotalPedido = _numberFormat.format(totalPedido);
- return Padding(
- padding: const EdgeInsets.symmetric(horizontal: 8.0),
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- if (precioDescuento > 0)
- Column(
- children: [
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- const Text('Subtotal',
- style: TextStyle(
- fontWeight: FontWeight.bold, fontSize: 18)),
- Text("\$$formattedsubtotal",
- style: const TextStyle(
- fontWeight: FontWeight.bold, fontSize: 18)),
- ],
- ),
- const SizedBox(height: 10),
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- const Text('Descuento',
- style: TextStyle(
- fontWeight: FontWeight.bold, fontSize: 18)),
- Text("-\$$formattedPrecioDescuento",
- style: const TextStyle(
- fontWeight: FontWeight.bold, fontSize: 18)),
- ],
- ),
- ],
- ),
- const SizedBox(height: 10),
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- const Text('Total',
- style: TextStyle(fontWeight: FontWeight.bold, fontSize: 18)),
- Text("\$$formattedtotalPedido",
- style: const TextStyle(
- fontWeight: FontWeight.bold, fontSize: 18)),
- ],
- ),
- ],
- ),
- );
- }
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(
- title:
- Text("Crear Pedido", style: TextStyle(color: AppTheme.secondary)),
- iconTheme: IconThemeData(color: AppTheme.secondary)),
- body: Row(
- children: [
- Flexible(
- flex: 3,
- child: _buildCartSection(),
- ),
- SizedBox(width: 35),
- Flexible(flex: 7, child: _buildProductsSection()),
- ],
- ),
- );
- }
- Widget _buildCartSection() {
- return Card(
- margin: const EdgeInsets.all(8.0),
- child: Column(
- children: [
- const Padding(
- padding: EdgeInsets.symmetric(horizontal: 8.0, vertical: 16.0),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Text('Producto',
- style:
- TextStyle(fontWeight: FontWeight.bold, fontSize: 18)),
- Text('Cantidad',
- style:
- TextStyle(fontWeight: FontWeight.bold, fontSize: 18)),
- ],
- ),
- ),
- Expanded(
- child: ListView.builder(
- itemCount: carrito.length,
- itemBuilder: (context, index) {
- final item = carrito[index];
- return Column(
- children: [
- ListTile(
- title: Text(item.producto.nombre!,
- style: const TextStyle(fontWeight: FontWeight.w600)),
- subtitle: Text('\$${item.producto.precio}',
- style: const TextStyle(
- fontWeight: FontWeight.bold,
- color: Color(0xFF008000))),
- trailing: Row(
- mainAxisSize: MainAxisSize.min,
- children: [
- IconButton(
- icon: const Icon(Icons.delete, color: Colors.red),
- onPressed: () =>
- eliminarProductoDelCarrito(index)),
- IconButton(
- icon: const Icon(Icons.remove),
- onPressed: () => quitarProductoDelCarrito(item)),
- const SizedBox(width: 5),
- Text('${item.cantidad}',
- style: const TextStyle(
- fontWeight: FontWeight.bold, fontSize: 14)),
- const SizedBox(width: 5),
- IconButton(
- icon: const Icon(Icons.add),
- onPressed: () => incrementarProducto(item)),
- ],
- ),
- ),
- if (item.selectableToppings.isNotEmpty)
- ExpansionTile(
- title: Text('Toppings',
- style: const TextStyle(
- fontWeight: FontWeight.bold, fontSize: 16)),
- children: item.selectableToppings.entries.map((entry) {
- final categoryId = entry.key;
- final availableToppings = entry.value;
- final categoria =
- categorias.firstWhere((c) => c.id == categoryId);
- return Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Padding(
- padding: const EdgeInsets.only(left: 16.0),
- child: Text(
- categoria.descripcion!,
- style: const TextStyle(
- fontWeight: FontWeight.bold,
- fontSize: 16),
- ),
- ),
- ...availableToppings.map((topping) {
- ValueNotifier<bool> isSelectedNotifier =
- ValueNotifier<bool>(
- item.selectedToppings[categoryId]
- ?.contains(topping.id) ??
- false,
- );
- return ValueListenableBuilder<bool>(
- valueListenable: isSelectedNotifier,
- builder: (context, isSelected, _) {
- return CheckboxListTile(
- activeColor: AppTheme.primary,
- title: Row(
- mainAxisAlignment:
- MainAxisAlignment.spaceBetween,
- children: [
- Text(topping.nombre!),
- if (topping.precio != 0.0)
- Text(
- '+\$${topping.precio}',
- style: TextStyle(
- color: Colors.black,
- fontSize: 13,
- ),
- ),
- ],
- ),
- value: isSelected,
- onChanged: (bool? value) {
- final maximoToppings =
- categoria.maximo ?? 0;
- if (value == true) {
- if ((item.selectedToppings[categoryId]
- ?.length ??
- 0) >=
- maximoToppings) {
- item.selectedToppings[categoryId]!
- .remove(item
- .selectedToppings[
- categoryId]!
- .first);
- }
- item.selectedToppings[categoryId] ??=
- <int>{};
- item.selectedToppings[categoryId]!
- .add(topping.id!);
- } else {
- item.selectedToppings[categoryId]
- ?.remove(topping.id!);
- if (item.selectedToppings[categoryId]
- ?.isEmpty ??
- false) {
- item.selectedToppings
- .remove(categoryId);
- }
- }
- setState(() {});
- _recalcularTotal();
- },
- );
- },
- );
- }).toList(),
- ],
- );
- }).toList(),
- ),
- Divider(),
- ],
- );
- },
- ),
- ),
- _buildDiscountSection(),
- const Divider(thickness: 5),
- _buildTotalSection(),
- const SizedBox(height: 25),
- Padding(
- padding: const EdgeInsets.all(8.0),
- child: ElevatedButton(
- onPressed: _finalizeOrder,
- style: ElevatedButton.styleFrom(
- primary: AppTheme.tertiary,
- textStyle: const TextStyle(fontSize: 22),
- fixedSize: const Size(250, 50),
- ),
- child: Text('Finalizar Pedido',
- style: TextStyle(color: AppTheme.quaternary)),
- ),
- ),
- ],
- ),
- );
- }
- void eliminarProductoDelCarrito(int index) {
- setState(() {
- carrito.removeAt(index);
- });
- _recalcularTotal();
- }
- void incrementarProducto(ItemCarrito item) {
- setState(() {
- item.cantidad++;
- });
- _recalcularTotal();
- }
- void quitarProductoDelCarrito(ItemCarrito item) {
- setState(() {
- if (item.cantidad > 1) {
- item.cantidad--;
- } else {
- carrito.remove(item);
- }
- });
- _recalcularTotal();
- }
- Widget _buildProductsSection() {
- return Column(
- children: [
- const SizedBox(height: 5),
- _buildSearchBar(),
- const SizedBox(height: 10),
- _buildCategoryButtons(),
- const SizedBox(height: 15),
- Expanded(
- child: Consumer<ProductoViewModel>(builder: (context, model, child) {
- productos = model.productos;
- return Scrollbar(
- controller: _listViewController,
- thumbVisibility: true,
- trackVisibility: true,
- child: ListView.builder(
- controller: _listViewController,
- itemCount: productos.length,
- itemBuilder: (context, index) {
- final producto = productos[index];
- return Card(
- child: ListTile(
- title: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Text(
- producto.nombre ?? '',
- style: const TextStyle(
- fontSize: 16,
- fontWeight: FontWeight.bold,
- ),
- textAlign: TextAlign.left,
- ),
- Text(
- '\$${producto.precio}',
- style: const TextStyle(
- fontSize: 16,
- fontWeight: FontWeight.bold,
- color: Colors.green,
- ),
- textAlign: TextAlign.right,
- ),
- ],
- ),
- onTap: () => agregarAlCarrito(producto),
- ),
- );
- },
- ),
- );
- }),
- ),
- ],
- );
- }
- Widget _buildCategoryButtons() {
- List<CategoriaProducto> categoriasFiltradas =
- categorias.where((categoria) => categoria.esToping == 0).toList();
- return Column(
- children: [
- Container(
- height: 50,
- child: Stack(
- children: [
- ListView.builder(
- controller: _categoryScrollController,
- scrollDirection: Axis.horizontal,
- itemCount: categoriasFiltradas.length,
- itemBuilder: (context, index) {
- final categoria = categoriasFiltradas[index];
- bool isSelected = categoriaSeleccionada?.id == categoria.id;
- return Padding(
- padding: const EdgeInsets.symmetric(horizontal: 4.0),
- child: ElevatedButton(
- onPressed: () {
- cargarProductosPorCategoria(categoria.id);
- setState(() {
- categoriaSeleccionada = categoria;
- });
- },
- style: ElevatedButton.styleFrom(
- backgroundColor:
- isSelected ? AppTheme.tertiary : Colors.grey,
- foregroundColor: isSelected
- ? AppTheme.quaternary
- : AppTheme.secondary,
- ),
- child: Text(categoria.nombre!),
- ),
- );
- },
- ),
- ],
- ),
- ),
- ],
- );
- }
- Widget _buildSearchBar() {
- return Padding(
- padding: const EdgeInsets.all(8.0),
- child: TextField(
- controller: _searchController,
- decoration: InputDecoration(
- hintText: 'Buscar producto...',
- prefixIcon: const Icon(Icons.search),
- suffixIcon: IconButton(
- icon: Icon(Icons.clear),
- onPressed: () {
- _searchController.clear();
- _onSearchChanged('');
- },
- ),
- border: OutlineInputBorder(
- borderRadius: BorderRadius.circular(12.0),
- ),
- enabledBorder: OutlineInputBorder(
- borderRadius: BorderRadius.circular(12.0),
- borderSide: BorderSide(width: 1.5)),
- focusedBorder: OutlineInputBorder(
- borderSide: BorderSide(color: Colors.black),
- borderRadius: BorderRadius.circular(12.0),
- ),
- ),
- onChanged: _onSearchChanged,
- ),
- );
- }
- }
|