importe funcional sin haber hecho pruebas exaustivas

This commit is contained in:
carlos
2024-06-11 20:46:33 -06:00
25 changed files with 462 additions and 125 deletions
+25 -1
View File
@@ -156,7 +156,7 @@ namespace compabetov2.Ventas
private void modificarCantidad(int cantidad, int idImporte)
{
detalles[idImporte-1].catidad = cantidad;
detalles[idImporte-1].cantidad = cantidad;
}
private void Importe1_Load(object sender, EventArgs e)
@@ -170,5 +170,29 @@ namespace compabetov2.Ventas
ventanaPadre.actualizarImporteTotal();
this.Close();
}
private void pictureBox1_Click(object sender, EventArgs e)
{
this.Close();
}
private void pictureBox2_Click(object sender, EventArgs e)
{
ventanaPadre.importes = detalles;
ventanaPadre.actualizarImporteTotal();
this.Close();
}
private void pictureBox2_Click_1(object sender, EventArgs e)
{
ventanaPadre.importes = detalles;
ventanaPadre.actualizarImporteTotal();
this.Close();
}
private void panelImporte_Paint(object sender, PaintEventArgs e)
{
}
}
}