importe en venta hecho

This commit is contained in:
carlos
2024-06-09 16:55:52 -06:00
parent 91d1661d9a
commit 7569ef0f5a
27 changed files with 987 additions and 74 deletions
+2 -2
View File
@@ -108,7 +108,7 @@ namespace compabetov2
int numeroContador = int.Parse(txtStockAgregar.Text);
txtStockAgregar.Text = (numeroContador - 1).ToString();
}
catch (Exception ex)
catch (Exception)
{
txtStockAgregar.Text = "0";
}
@@ -130,7 +130,7 @@ namespace compabetov2
{
int numeroContador = int.Parse(txtStockAgregar.Text);
txtStockAgregar.Text = (numeroContador + 1).ToString();
}catch (Exception ex)
}catch (Exception)
{
txtStockAgregar.Text = "0";
}