|
@@ -208,7 +208,7 @@ class _VentaScreenState extends State<VentaScreen> {
|
|
|
Padding(
|
|
|
padding: const EdgeInsets.all(16.0),
|
|
|
child: Text(
|
|
|
- "Total en Tarjeta: \$${formatCurrency(totalTarjetaDelDia)}",
|
|
|
+ "Tarjeta: \$${formatCurrency(totalTarjetaDelDia)}",
|
|
|
style: TextStyle(
|
|
|
fontSize: 20, fontWeight: FontWeight.bold),
|
|
|
),
|
|
@@ -217,16 +217,20 @@ class _VentaScreenState extends State<VentaScreen> {
|
|
|
Padding(
|
|
|
padding: const EdgeInsets.all(16.0),
|
|
|
child: Text(
|
|
|
- "Total en Transferencia: \$${formatCurrency(totalTransferenciaDelDia)}",
|
|
|
+ "Transferencia: \$${formatCurrency(totalTransferenciaDelDia)}",
|
|
|
style: TextStyle(
|
|
|
fontSize: 20, fontWeight: FontWeight.bold),
|
|
|
),
|
|
|
),
|
|
|
+ ],
|
|
|
+ ),
|
|
|
+ Row(
|
|
|
+ children: [
|
|
|
if (totalEfectivoDelDia > 0)
|
|
|
Padding(
|
|
|
padding: const EdgeInsets.all(16.0),
|
|
|
child: Text(
|
|
|
- "Total en Efectivo: \$${formatCurrency(totalEfectivoDelDia)}",
|
|
|
+ "Efectivo: \$${formatCurrency(totalEfectivoDelDia)}",
|
|
|
style: TextStyle(
|
|
|
fontSize: 20, fontWeight: FontWeight.bold),
|
|
|
),
|
|
@@ -235,7 +239,7 @@ class _VentaScreenState extends State<VentaScreen> {
|
|
|
Padding(
|
|
|
padding: const EdgeInsets.all(16.0),
|
|
|
child: Text(
|
|
|
- "Cambio Entregado: \$${formatCurrency(cambio)}",
|
|
|
+ "Cambio: \$${formatCurrency(cambio)}",
|
|
|
style: TextStyle(
|
|
|
fontSize: 20, fontWeight: FontWeight.bold),
|
|
|
),
|