arreglado bug de no agregar precios en saldar cuenta y conlcuir envio

This commit is contained in:
Michael Robles
2024-07-02 14:08:39 -07:00
parent eb59d05294
commit de494fc86d
15 changed files with 45 additions and 15 deletions
+14 -6
View File
@@ -415,16 +415,24 @@ namespace compabetov2
private void btnVentasDia_Click(object sender, EventArgs e)
{
RegistroVentas ventana = new RegistroVentas(resumen["dia"],this);
ventana.Owner = this;
ventana.Show();
if(resumen != null)
{
RegistroVentas ventana = new RegistroVentas(resumen["dia"], this);
ventana.Owner = this;
ventana.Show();
}
}
private void btnVentasMes_Click(object sender, EventArgs e)
{
RegistroVentas ventana = new RegistroVentas(resumen["mes"], this);
ventana.Owner = this;
ventana.Show();
if(resumen != null)
{
RegistroVentas ventana = new RegistroVentas(resumen["mes"], this);
ventana.Owner = this;
ventana.Show();
}
}
private void lbTotalDia_Click(object sender, EventArgs e)