private void btngrabar_Click(object sender, EventArgs e) { if (U_Validacion()) { if (u_n_opsel == 1) { var BL = new tb_plla_ccostogenBL(); var BE = new tb_plla_ccostogen(); BE.codigo = txtcodigo.Text.Trim(); tmptabla = BL.GetAll_CONSULTACAB(VariablesPublicas.EmpresaID, BE).Tables[0]; if (tmptabla.Rows.Count > 0) { var BLMX = new tb_plla_ccostogenBL(); var BEMX = new tb_plla_ccostogen(); txtcodigo.Text = BLMX.GetAll_MaxCCosto(VariablesPublicas.EmpresaID.ToString(), BEMX).Tables[0].Rows[0]["maximo_codigo"].ToString(); } tmptabla.Rows.Add(VariablesPublicas.InsertIntoTable(tmptabla)); tmptabla.Rows[0]["codigo"] = txtcodigo.Text.Trim(); } else { var BL = new tb_plla_ccostogenBL(); var BE = new tb_plla_ccostogen(); BE.codigo = txtcodigo.Text.Trim(); tmptabla = BL.GetAll_CONSULTACAB(VariablesPublicas.EmpresaID, BE).Tables[0]; } for (lc_contador = 0; lc_contador <= tabladetprestamos.Rows.Count - 1; lc_contador++) { tabladetprestamos.Rows[lc_contador]["codigo"] = txtcodigo.Text.Trim(); } tmptabla.Rows[0]["descripcion"] = txtdescripcion.Text; tmptabla.AcceptChanges(); tabladetprestamos.AcceptChanges(); var BLIU = new tb_plla_ccostogenBL(); var BEIU = new tb_plla_ccostogen(); if (BLIU.Insert_Update(VariablesPublicas.EmpresaID, BEIU, tmptabla, tabladetprestamos)) { seguridadlog(); U_CancelarEdicion(0); } else { Frm_Class.ShowError(BLIU.Sql_Error, this); } } }
private void CargaDatos() { var xcodactual = string.Empty; if (Examinar.CurrentRow != null) { xcodactual = Examinar.Rows[Examinar.CurrentRow.Index].Cells["codigo"].Value.ToString(); } var nposcolumnasortear = 0; var PrvSotOrder = default(SortOrder); var zordenado = false; var xcodcliente = ".."; var xpalabra1 = string.Empty; var xpalabra2 = string.Empty; var xpalabra3 = string.Empty; if (txtfiltronombre.Text.Trim().Length > 0 & txtfiltronombre.Enabled) { xpalabra1 = VariablesPublicas.Palabras(txtfiltronombre.Text, 1); xpalabra2 = VariablesPublicas.Palabras(txtfiltronombre.Text, 2); xpalabra3 = VariablesPublicas.Palabras(txtfiltronombre.Text, 3); } var xvmcodigo = string.Empty; if (Examinar.CurrentRow != null) { xcodcliente = Examinar.Rows[Examinar.CurrentRow.Index].Cells["codigo"].Value.ToString(); } if (Examinar.SortedColumn != null) { nposcolumnasortear = Examinar.SortedColumn.Index; PrvSotOrder = Examinar.SortOrder; zordenado = true; } var BL = new tb_plla_ccostogenBL(); var BE = new tb_plla_ccostogen(); BE.codigo = xvmcodigo; BE.nomlike1 = xpalabra1; BE.nomlike2 = xpalabra2; BE.nomlike3 = xpalabra3; tablacabprestamos = BL.GetAll_CONSULTACAB(VariablesPublicas.EmpresaID, BE).Tables[0]; if (BL.Sql_Error.Length > 0) { Frm_Class.ShowError(BL.Sql_Error, this); return; } lbltotaltrab.Text = "Sin Registros"; if (BL.Sql_Error.Length == 0) { lbltotaltrab.Text = "Total Registros " + tablacabprestamos.Rows.Count.ToString(); } Examinar.AutoGenerateColumns = false; Examinar.DataSource = tablacabprestamos; VariablesPublicas.PintaEncabezados(Examinar); if (zordenado) { if (PrvSotOrder == SortOrder.Ascending) { Examinar.Sort(Examinar.Columns[nposcolumnasortear], System.ComponentModel.ListSortDirection.Ascending); } else { Examinar.Sort(Examinar.Columns[nposcolumnasortear], System.ComponentModel.ListSortDirection.Descending); } } else { Examinar.Sort(Examinar.Columns["codigo"], System.ComponentModel.ListSortDirection.Ascending); } if (Examinar.CurrentRow == null) { if (Examinar.RowCount > 0) { Examinar.CurrentCell = Examinar.Rows[0].Cells["descripcion"]; } } for (lc_contador = 0; lc_contador <= Examinar.Rows.Count - 1; lc_contador++) { if (Examinar.Rows[lc_contador].Cells["codigo"].Value.ToString() == xcodactual) { Examinar.CurrentCell = Examinar.Rows[lc_contador].Cells["descripcion"]; break; } } U_RefrescaControles(); }
private void btneliminar_Click(object sender, EventArgs e) { if (Examinar.CurrentRow != null) { var xnomcampo = string.Empty; if (xnomcampo.Length == 0) { var BL = new tb_plla_ccostogenBL(); var BE = new tb_plla_ccostogen(); BE.codigo = Examinar.Rows[Examinar.CurrentRow.Index].Cells["codigo"].Value.ToString(); tmptabla = BL.GetAll_CONSULTACAB(VariablesPublicas.EmpresaID, BE).Tables[0]; if (BL.Sql_Error.Length == 0) { var message = "Desea eliminar Código " + tmptabla.Rows[0]["codigo"].ToString().Trim() + " - " + tmptabla.Rows[0]["descripcion"].ToString().Trim() + " ...?"; var caption = "Mensaje del Sistema"; var buttons = MessageBoxButtons.YesNo; DialogResult result; result = MessageBox.Show(this, message, caption, buttons, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2); if (result == DialogResult.Yes) { if (BL.Eliminar(VariablesPublicas.EmpresaID, tmptabla)) { var BLL = new tb_co_seguridadlogBL(); var BEL = new tb_co_seguridadlog(); BEL.moduloid = Name; BEL.clave = VariablesPublicas.EmpresaID + Examinar.Rows[Examinar.CurrentRow.Index].Cells["codigo"].Value.ToString(); BEL.cuser = VariablesPublicas.Usuar; BEL.fecha = DateTime.Now; BEL.pc = VariablesPublicas.userip; BEL.accion = "B"; BEL.detalle = "DESCRIPCION : BORRADO - ELIMINADO"; BLL.Insert(VariablesPublicas.EmpresaID.ToString(), BEL); Examinar.Rows.Remove(Examinar.CurrentRow); Examinar.Refresh(); } else { Frm_Class.ShowError(BL.Sql_Error, this); } } } else { Frm_Class.ShowError(BL.Sql_Error, this); } } else { MessageBox.Show(xnomcampo, "IMPOSIBLE ELIMINAR REGISTRO"); } } U_RefrescaControles(); }