private void GuardarButton_Click(object sender, EventArgs e) { if (!string.IsNullOrWhiteSpace(IdtextBox.Text)) { if (CobrosDataGridView.Rows.Count > 0 && Convert.ToInt32(IdtextBox.Text) > 0) { float suma = 0; BLL.CobroDetalles detalle = new BLL.CobroDetalles(); if (Modificar) { foreach (DataGridViewRow row in CobrosDataGridView.Rows) { suma += Convert.ToSingle(row.Cells["Cantidad"].Value); detalle.IdCobroDetalle = Convert.ToInt32(row.Cells["IdDetalle"].Value); detalle.Modificar(Convert.ToSingle(row.Cells["Cantidad"].Value), 3, Convert.ToSingle(row.Cells["Cantidad"].Value) * (detalle.Interes / 100), 0); } BLL.Financiamientos fin = new BLL.Financiamientos(); BLL.Cobros cobro = new BLL.Cobros(); if (cobro.Modificar(Convert.ToSingle(BalanceTextBox.Text), suma)) { MessageBox.Show("Exito"); } fin.Buscar(Convert.ToInt32(FinanzaComboBox.SelectedValue)); fin.Balance -= suma; fin.Modificar(fin.IdPersona, fin.IdGarante, fin.IdMotor, fin.Balance, fin.IntervaloPago, fin.Inicial); Modificar = false; } else { foreach (DataGridViewRow row in CobrosDataGridView.Rows) { suma += Convert.ToSingle(row.Cells["Cantidad"].Value); detalle.IdCobro = Convert.ToInt32(row.Cells["IdCobro"].Value); detalle.Interes = 3; detalle.Quotas = 0; detalle.BalanceInteres = Convert.ToSingle(row.Cells["Cantidad"].Value) * (detalle.Interes / 100); detalle.BalanceQuota = Convert.ToSingle(row.Cells["Cantidad"].Value); detalle.Insert(); } BLL.Financiamientos fin = new BLL.Financiamientos(); BLL.Cobros cobro = new BLL.Cobros(Convert.ToSingle(BalanceTextBox.Text), suma, Convert.ToInt32(FinanzaComboBox.SelectedValue)); if (cobro.Insert()) { MessageBox.Show("Exito"); } fin.Buscar(Convert.ToInt32(FinanzaComboBox.SelectedValue)); fin.Balance -= suma; fin.Modificar(fin.IdPersona, fin.IdGarante, fin.IdMotor, fin.Balance, fin.IntervaloPago, fin.Inicial); } Util.Limpiar(this); CobrosDataGridView.Rows.Clear(); IdtextBox.Enabled = true; } } }
private void GuardarButton_Click(object sender, EventArgs e) { if (Util.ValidarVacio(this)) { BLL.Cobros cobro = new BLL.Cobros(); cobro.Buscar(Convert.ToInt32(CobroComboBox.SelectedValue)); BLL.Financiamientos fin = new BLL.Financiamientos(); fin.Buscar(cobro.IdFinanciamiento); BLL.CobroDetalles detalle = new BLL.CobroDetalles(Convert.ToSingle(QuotaTextBox.Text), Convert.ToSingle(InteresTextBox.Text), Convert.ToSingle(BalanceIntTextBox.Text), fin.IntervaloPago); detalle.Insert(); } }
private void CancelarButton_Click(object sender, EventArgs e) { BLL.Cobros cobro = new BLL.Cobros(); if (!string.IsNullOrWhiteSpace(IdtextBox.Text)) { if (cobro.Buscar(Convert.ToInt32(IdtextBox.Text))) { DialogResult Resultado = MessageBox.Show("Estas seguro que deseas elminiar estos datos?", "Aviso", MessageBoxButtons.YesNo); if (Resultado == DialogResult.Yes) { cobro.Eliminar(Convert.ToInt32(IdtextBox.Text)); BLL.CobroDetalles detalle = new BLL.CobroDetalles(); detalle.Eliminar(Convert.ToInt32(IdtextBox.Text)); Util.Limpiar(this); CobrosDataGridView.Rows.Clear(); IdtextBox.Enabled = true; } } else { MessageBox.Show("El motor no existe", "Aviso", MessageBoxButtons.OK); } } }