public DataSet CONSULTA_SELECCION(string empresaid, tb_plla_numeracionplla BE)
 {
     using (SqlConnection cnx = new SqlConnection(conex.empConexion(empresaid)))
     {
         using (SqlCommand cmd = new SqlCommand("gspTbPllaNumeracionplla_BapSoftPlla_CONSULTA", cnx))
         {
             DataSet ds = new DataSet();
             {
                 cmd.CommandType = CommandType.StoredProcedure;
                 cmd.Parameters.AddWithValue("@perianio", string.IsNullOrEmpty(BE.perianio) ? (object)DBNull.Value : BE.perianio);
                 cmd.Parameters.AddWithValue("@tipoplla", string.IsNullOrEmpty(BE.tipoplla) ? (object)DBNull.Value : BE.tipoplla);
                 cmd.Parameters.AddWithValue("@asiento", string.IsNullOrEmpty(BE.asiento) ? (object)DBNull.Value : BE.asiento);
                 cmd.Parameters.Add("@norden", SqlDbType.Int).Value = BE.norden;
             }
             try
             {
                 cnx.Open();
                 using (SqlDataAdapter da = new SqlDataAdapter(cmd))
                 {
                     da.Fill(ds);
                 }
                 return ds;
             }
             catch (Exception ex)
             {
                 Sql_Error = ex.Message;
                 throw new Exception(ex.Message);
             }
         }
     }
 }
 private void btnSeleccionar_Click(object sender, EventArgs e)
 {
     var xmsgerror = string.Empty;
     var BL = new tb_plla_numeracionpllaBL();
     var BE = new tb_plla_numeracionplla();
     BE.perianio = VariablesPublicas.perianio;
     BE.asiento = Examinar.Rows[Examinar.CurrentRow.Index].Cells["asiento"].Value.ToString();
     if (cboTipo.Text.ToUpper() == "NORMAL")
     {
         if (!BL.Plla_SELECCIONADA(VariablesPublicas.EmpresaID, BE))
         {
             xmsgerror = BL.Sql_Error;
         }
     }
     else
     {
         if (!BL.Plla_HESELECCIONADA(VariablesPublicas.EmpresaID, BE))
         {
             xmsgerror = BL.Sql_Error;
         }
     }
     if (xmsgerror.Trim().Length == 0)
     {
         btnCancelar_Click(sender, e);
     }
     else
     {
         Frm_Class.ShowError(xmsgerror, this);
     }
 }
 public bool Delete(string empresaid, tb_plla_numeracionplla BE)
 {
     //return tablaDA.Delete(empresaid, BE);
     bool zreturn = tablaDA.Delete(empresaid, BE);
     Sql_Error = tablaDA.Sql_Error;
     return zreturn;
 }
 public bool Delete(string empresaid, tb_plla_numeracionplla BE)
 {
     using (SqlConnection cnx = new SqlConnection(conex.empConexion(empresaid)))
     {
         using (SqlCommand cmd = new SqlCommand("gspTbPllaNumeracionplla_ELIMINAR", cnx))
         {
             {
                 cmd.CommandType = CommandType.StoredProcedure;
                 cmd.Parameters.Add("@perianio", SqlDbType.Char).Value = BE.perianio;
                 cmd.Parameters.Add("@asiento", SqlDbType.Char).Value = BE.asiento;
             }
             try
             {
                 cnx.Open();
                 if (cmd.ExecuteNonQuery() > 0)
                 {
                     return true;
                 }
                 else
                 {
                     return false;
                 }
             }
             catch (Exception ex)
             {
                 Sql_Error = ex.Message;
                 throw new Exception(ex.Message);
             }
         }
     }
 }
 public DataSet GetAll_CONSULTAIR(string empresaid, tb_plla_numeracionplla BE)
 {
     //return tablaDA.GetAll_CONSULTAIR(empresaid, BE);
     DataSet xreturn = null;
     xreturn = tablaDA.GetAll_CONSULTAIR(empresaid, BE);
     Sql_Error = tablaDA.Sql_Error;
     return xreturn;
 }
 public DataSet GetOne(string empresaid, tb_plla_numeracionplla BE)
 {
     //return tablaDA.GetOne(empresaid, tipoplla);
     DataSet xreturn = null;
     xreturn = tablaDA.GetOne(empresaid, BE);
     Sql_Error = tablaDA.Sql_Error;
     return xreturn;
 }
 public DataSet CONSULTA_SELECCION(string empresaid, tb_plla_numeracionplla BE)
 {
     //return tablaDA.CONSULTA_SELECCION(empresaid, BE);
     DataSet xreturn = null;
     xreturn = tablaDA.CONSULTA_SELECCION(empresaid, BE);
     Sql_Error = tablaDA.Sql_Error;
     return xreturn;
 }
 public DataSet GetAll_MaxCodigo(string empresaid, tb_plla_numeracionplla BE)
 {
     //return tablaDA.GetAll_MaxRubro(empresaid, BE);
     DataSet xreturn = null;
     xreturn = tablaDA.GetAll_MaxCodigo(empresaid, BE);
     Sql_Error = tablaDA.Sql_Error;
     return xreturn;
 }
 public DataSet GetAll(string empresaid, tb_plla_numeracionplla BE)
 {
     using (SqlConnection cnx = new SqlConnection(conex.empConexion(empresaid)))
     {
         using (SqlCommand cmd = new SqlCommand("gspTbPllaNumeracionplla_SEARCH", cnx))
         {
             DataSet ds = new DataSet();
             {
                 cmd.CommandType = CommandType.StoredProcedure;
                 cmd.Parameters.Add("@perianio", SqlDbType.Char).Value = BE.perianio;
                 cmd.Parameters.Add("@asiento", SqlDbType.Char).Value = BE.asiento;
                 cmd.Parameters.Add("@perimes", SqlDbType.Char).Value = BE.perimes;
                 cmd.Parameters.Add("@tipoplla", SqlDbType.Char).Value = BE.tipoplla;
                 //cmd.Parameters.Add("@planit", SqlDbType.Decimal).Value = BE.planit;
                 cmd.Parameters.Add("@glosa", SqlDbType.VarChar).Value = BE.glosa;
                 cmd.Parameters.Add("@fechaini", SqlDbType.DateTime).Value = BE.fechaini;
                 cmd.Parameters.Add("@fechafin", SqlDbType.DateTime).Value = BE.fechafin;
                 //cmd.Parameters.Add("@afect", SqlDbType.Decimal).Value = BE.afect;
                 //cmd.Parameters.Add("@tipcamb", SqlDbType.Decimal).Value = BE.tipcamb;
                 //cmd.Parameters.Add("@semana", SqlDbType.Decimal).Value = BE.semana;
                 //cmd.Parameters.Add("@nsemana", SqlDbType.Decimal).Value = BE.nsemana;
                 //cmd.Parameters.Add("@cierre", SqlDbType.Decimal).Value = BE.cierre;
                 cmd.Parameters.Add("@fechasiento", SqlDbType.DateTime).Value = BE.fechasiento;
                 //cmd.Parameters.Add("@selec", SqlDbType.Decimal).Value = BE.selec;
                 cmd.Parameters.Add("@status", SqlDbType.Char).Value = BE.status;
                 cmd.Parameters.Add("@fechpini", SqlDbType.DateTime).Value = BE.fechpini;
                 cmd.Parameters.Add("@fechpfin", SqlDbType.DateTime).Value = BE.fechpfin;
                 cmd.Parameters.Add("@fechtareo", SqlDbType.DateTime).Value = BE.fechtareo;
                 cmd.Parameters.Add("@hextra", SqlDbType.Bit).Value = BE.hextra;
                 cmd.Parameters.Add("@reintegro", SqlDbType.Bit).Value = BE.reintegro;
                 //cmd.Parameters.Add("@seleche", SqlDbType.Decimal).Value = BE.seleche;
                 cmd.Parameters.Add("@oficial", SqlDbType.Bit).Value = BE.oficial;
                 cmd.Parameters.Add("@tipoquincena", SqlDbType.Char).Value = BE.tipoquincena;
             }
             try
             {
                 cnx.Open();
                 using (SqlDataAdapter da = new SqlDataAdapter(cmd))
                 {
                     da.Fill(ds);
                 }
                 return ds;
             }
             catch (Exception ex)
             {
                 Sql_Error = ex.Message;
                 throw new Exception(ex.Message);
             }
         }
     }
 }
 public bool Plla_SELECCIONADA(string empresaid, tb_plla_numeracionplla BE)
 {
     //return tablaDA.Plla_SELECCIONADA(empresaid, BE);
     bool zreturn = tablaDA.Plla_SELECCIONADA(empresaid, BE);
     Sql_Error = tablaDA.Sql_Error;
     return zreturn;
 }
 public bool Insert_Update(string empresaid, tb_plla_numeracionplla BE, DataTable Detalle)
 {
     //return tablaDA.Insert(empresaid, BE);
     bool zreturn = tablaDA.Insert_Update(empresaid, BE, Detalle);
     Sql_Error = tablaDA.Sql_Error;
     return zreturn;
 }
        private void CargaDatos()
        {
            var xtipoplanilla = string.Empty;
            if (cmbfiltrotipoplanilla.Enabled)
            {
                if ((cmbfiltrotipoplanilla.SelectedValue != null))
                {
                    xtipoplanilla = cmbfiltrotipoplanilla.SelectedValue.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)
            {
                xpalabra1 = VariablesPublicas.Palabras(txtfiltronombre.Text, 1);
                xpalabra2 = VariablesPublicas.Palabras(txtfiltronombre.Text, 2);
                xpalabra3 = VariablesPublicas.Palabras(txtfiltronombre.Text, 3);
            }
            if ((Examinar.CurrentRow != null))
            {
                xcodcliente = Examinar.Rows[Examinar.CurrentRow.Index].Cells["asiento"].Value.ToString();
            }
            if ((Examinar.SortedColumn != null))
            {
                nposcolumnasortear = Examinar.SortedColumn.Index;
                PrvSotOrder = Examinar.SortOrder;
                zordenado = true;
            }
            var BL = new tb_plla_numeracionpllaBL();
            var BE = new tb_plla_numeracionplla();
            BE.perianio = VariablesPublicas.perianio;
            BE.tipoplla = xtipoplanilla;
            BE.nomlike1 = xpalabra1;
            BE.nomlike2 = xpalabra2;
            BE.nomlike3 = xpalabra3;
            BE.norden = 1;
            tablaclientes = BL.GetAll_CONSULTA(VariablesPublicas.EmpresaID, BE).Tables[0];
            Examinar.AutoGenerateColumns = false;
            Examinar.DataSource = tablaclientes;

            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["asiento"], System.ComponentModel.ListSortDirection.Ascending);
            }
            if (Examinar.CurrentRow == null)
            {
                if (Examinar.RowCount > 0)
                {
                    Examinar.CurrentCell = Examinar.Rows[0].Cells["asiento"];
                }
            }
            for (lc_cont = 0; lc_cont <= Examinar.Rows.Count - 1; lc_cont++)
            {
                if (Examinar.Rows[lc_cont].Cells["asiento"].Value.ToString() == xcodcliente)
                {
                    Examinar.CurrentCell = Examinar.Rows[lc_cont].Cells["asiento"];
                    break;
                }
            }
            U_RefrescaControles();
        }
        private void btngrabar_Click(object sender, EventArgs e)
        {
            if (U_Validacion())
            {
                var tmpcursor = new DataTable();
                var BL = new tb_plla_numeracionpllaBL();
                var BE = new tb_plla_numeracionplla();
                BE.perianio = VariablesPublicas.perianio;
                BE.asiento = txtcodigo.Text.Trim();
                BE.norden = 1;
                tmpcursor = BL.GetAll_CONSULTA(VariablesPublicas.EmpresaID, BE).Tables[0];
                if (u_n_opsel == 1)
                {
                    tmpcursor = BL.GetAll_CONSULTA(VariablesPublicas.EmpresaID, BE).Tables[0];
                    if (tmpcursor.Rows.Count > 0)
                    {
                        MessageBox.Show("Número de planilla ya existente", "Mensaje del Sistema");
                    }

                    tmpcursor.Rows.Add(VariablesPublicas.INSERTINTOTABLE(tmpcursor));
                    tmpcursor.Rows[0]["perianio"] = VariablesPublicas.perianio;
                    tmpcursor.Rows[0]["asiento"] = txtcodigo.Text.Trim();
                }
                tmpcursor.Rows[0]["perimes"] = cmbmes.SelectedValue;
                tmpcursor.Rows[0]["tipoplla"] = cmbtipoplanilla.SelectedValue;
                if ((cmbmodalidad.SelectedValue != null))
                {
                    tmpcursor.Rows[0]["planit"] = Convert.ToInt16(cmbmodalidad.SelectedValue);
                }
                tmpcursor.Rows[0]["glosa"] = txtdescripcion.Text.Trim();
                if (frangolabini.Checked)
                {
                    tmpcursor.Rows[0]["fechaini"] = frangolabini.Value;
                }
                else
                {
                    tmpcursor.Rows[0]["fechaini"] = DBNull.Value;
                }
                if (frangolabfin.Checked)
                {
                    tmpcursor.Rows[0]["fechafin"] = frangolabfin.Value;
                }
                else
                {
                    tmpcursor.Rows[0]["fechafin"] = DBNull.Value;
                }
                tmpcursor.Rows[0]["nsemana"] = VariablesPublicas.StringtoDecimal(txtsemana.Text);
                tmpcursor.Rows[0]["status"] = '0';
                if (frangotrabini.Checked)
                {
                    tmpcursor.Rows[0]["fechpini"] = frangotrabini.Value;
                }
                else
                {
                    tmpcursor.Rows[0]["fechpini"] = DBNull.Value;
                }
                if (frangotrabfin.Checked)
                {
                    tmpcursor.Rows[0]["fechpfin"] = frangotrabfin.Value;
                }
                else
                {
                    tmpcursor.Rows[0]["fechpfin"] = DBNull.Value;
                }
                if ((cmbtipoquincena.SelectedValue != null))
                {
                    tmpcursor.Rows[0]["tipoquincena"] = cmbtipoquincena.SelectedValue;
                }

                tmpcursor.AcceptChanges();
                if (BL.Insert_Update(VariablesPublicas.EmpresaID, BE, tmpcursor))
                {
                    seguridadlog();
                    U_CancelarEdicion(0);
                }
                else
                {
                    Frm_Class.ShowError(BL.Sql_Error, this);
                }
            }
        }
 public DataSet GetAll_MaxCodigo(string empresaid, tb_plla_numeracionplla BE)
 {
     using (SqlConnection cnx = new SqlConnection(conex.empConexion(empresaid)))
     {
         using (SqlCommand cmd = new SqlCommand("gspTbPllaNumeracionplla_MAXCODIGO", cnx))
         {
             DataSet ds = new DataSet();
             {
                 cmd.CommandType = CommandType.StoredProcedure;
             }
             try
             {
                 cnx.Open();
                 using (SqlDataAdapter da = new SqlDataAdapter(cmd))
                 {
                     da.Fill(ds);
                 }
                 return ds;
             }
             catch (Exception ex)
             {
                 Sql_Error = ex.Message;
                 throw new Exception(ex.Message);
             }
         }
     }
 }
 public bool Update(string empresaid, tb_plla_numeracionplla BE)
 {
     using (SqlConnection cnx = new SqlConnection(conex.empConexion(empresaid)))
     {
         using (SqlCommand cmd = new SqlCommand("gspTbPllaNumeracionplla_UPDATE", cnx))
         {
             {
                 cmd.CommandTimeout = 0;
                 cmd.CommandType = CommandType.StoredProcedure;
                 cmd.Parameters.Add("@perianio", SqlDbType.Char).Value = BE.perianio;
                 cmd.Parameters.Add("@asiento", SqlDbType.Char).Value = BE.asiento;
                 cmd.Parameters.Add("@perimes", SqlDbType.Char).Value = BE.perimes;
                 cmd.Parameters.Add("@tipoplla", SqlDbType.Char).Value = BE.tipoplla;
                 cmd.Parameters.Add("@planit", SqlDbType.Decimal).Value = BE.planit;
                 cmd.Parameters.Add("@glosa", SqlDbType.VarChar).Value = BE.glosa;
                 cmd.Parameters.Add("@fechaini", SqlDbType.DateTime).Value = BE.fechaini;
                 cmd.Parameters.Add("@fechafin", SqlDbType.DateTime).Value = BE.fechafin;
                 cmd.Parameters.Add("@afect", SqlDbType.Decimal).Value = BE.afect;
                 cmd.Parameters.Add("@tipcamb", SqlDbType.Decimal).Value = BE.tipcamb;
                 cmd.Parameters.Add("@semana", SqlDbType.Decimal).Value = BE.semana;
                 cmd.Parameters.Add("@nsemana", SqlDbType.Decimal).Value = BE.nsemana;
                 cmd.Parameters.Add("@cierre", SqlDbType.Decimal).Value = BE.cierre;
                 cmd.Parameters.Add("@fechasiento", SqlDbType.DateTime).Value = BE.fechasiento;
                 cmd.Parameters.Add("@selec", SqlDbType.Decimal).Value = BE.selec;
                 cmd.Parameters.Add("@status", SqlDbType.Char).Value = BE.status;
                 cmd.Parameters.Add("@fechpini", SqlDbType.DateTime).Value = BE.fechpini;
                 cmd.Parameters.Add("@fechpfin", SqlDbType.DateTime).Value = BE.fechpfin;
                 cmd.Parameters.Add("@fechtareo", SqlDbType.DateTime).Value = BE.fechtareo;
                 cmd.Parameters.Add("@hextra", SqlDbType.Bit).Value = BE.hextra;
                 cmd.Parameters.Add("@reintegro", SqlDbType.Bit).Value = BE.reintegro;
                 cmd.Parameters.Add("@seleche", SqlDbType.Decimal).Value = BE.seleche;
                 cmd.Parameters.Add("@oficial", SqlDbType.Bit).Value = BE.oficial;
                 cmd.Parameters.Add("@tipoquincena", SqlDbType.Char).Value = BE.tipoquincena;
             }
             try
             {
                 cnx.Open();
                 if (cmd.ExecuteNonQuery() > 0)
                 {
                     return true;
                 }
                 else
                 {
                     return false;
                 }
             }
             catch (Exception ex)
             {
                 Sql_Error = ex.Message;
                 throw new Exception(ex.Message);
             }
         }
     }
 }
 public bool Insert_Update(string empresaid, tb_plla_numeracionplla BE, DataTable Detalle)
 {
     using (SqlConnection cnx = new SqlConnection(conex.empConexion(empresaid)))
     {
         bool xreturn = true;
         int lcont = 0;
         for (lcont = 0; lcont <= Detalle.Rows.Count - 1; lcont++)
         {
             using (SqlCommand cmd = new SqlCommand("gspTbPllaNumeracionplla_InsertUpdate", cnx))
             {
                 cmd.CommandTimeout = 0;
                 cmd.CommandType = CommandType.StoredProcedure;
                 cmd.Parameters.Add("@perianio", SqlDbType.Char).Value = Detalle.Rows[lcont]["perianio"];
                 cmd.Parameters.Add("@asiento", SqlDbType.Char).Value = Detalle.Rows[lcont]["asiento"];
                 cmd.Parameters.Add("@perimes", SqlDbType.Char).Value = Detalle.Rows[lcont]["perimes"];
                 cmd.Parameters.Add("@tipoplla", SqlDbType.Char).Value = Detalle.Rows[lcont]["tipoplla"];
                 cmd.Parameters.Add("@planit", SqlDbType.Decimal).Value = Detalle.Rows[lcont]["planit"];
                 cmd.Parameters.Add("@glosa", SqlDbType.VarChar).Value = Detalle.Rows[lcont]["glosa"];
                 cmd.Parameters.Add("@fechaini", SqlDbType.DateTime).Value = Detalle.Rows[lcont]["fechaini"];
                 cmd.Parameters.Add("@fechafin", SqlDbType.DateTime).Value = Detalle.Rows[lcont]["fechafin"];
                 cmd.Parameters.Add("@afect", SqlDbType.Decimal).Value = Detalle.Rows[lcont]["afect"];
                 cmd.Parameters.Add("@tipcamb", SqlDbType.Decimal).Value = Detalle.Rows[lcont]["tipcamb"];
                 cmd.Parameters.Add("@semana", SqlDbType.Decimal).Value = Detalle.Rows[lcont]["semana"];
                 cmd.Parameters.Add("@nsemana", SqlDbType.Decimal).Value = Detalle.Rows[lcont]["nsemana"];
                 cmd.Parameters.Add("@cierre", SqlDbType.Decimal).Value = Detalle.Rows[lcont]["cierre"];
                 cmd.Parameters.Add("@fechasiento", SqlDbType.DateTime).Value = Detalle.Rows[lcont]["fechasiento"];
                 cmd.Parameters.Add("@selec", SqlDbType.Decimal).Value = Detalle.Rows[lcont]["selec"];
                 cmd.Parameters.Add("@status", SqlDbType.Char).Value = Detalle.Rows[lcont]["status"];
                 cmd.Parameters.Add("@fechpini", SqlDbType.DateTime).Value = Detalle.Rows[lcont]["fechpini"];
                 cmd.Parameters.Add("@fechpfin", SqlDbType.DateTime).Value = Detalle.Rows[lcont]["fechpfin"];
                 cmd.Parameters.Add("@fechtareo", SqlDbType.DateTime).Value = Detalle.Rows[lcont]["fechtareo"];
                 cmd.Parameters.Add("@hextra", SqlDbType.Bit).Value = Detalle.Rows[lcont]["hextra"];
                 cmd.Parameters.Add("@reintegro", SqlDbType.Bit).Value = Detalle.Rows[lcont]["reintegro"];
                 cmd.Parameters.Add("@seleche", SqlDbType.Decimal).Value = Detalle.Rows[lcont]["seleche"];
                 cmd.Parameters.Add("@oficial", SqlDbType.Bit).Value = Detalle.Rows[lcont]["oficial"];
                 cmd.Parameters.Add("@tipoquincena", SqlDbType.Char).Value = Detalle.Rows[lcont]["tipoquincena"];
                 try
                 {
                     cnx.Open();
                     if (cmd.ExecuteNonQuery() > 0)
                     {
                         xreturn = true;
                     }
                     else
                     {
                         xreturn = false;
                     }
                     cnx.Close();
                 }
                 catch (Exception ex)
                 {
                     Sql_Error = ex.Message;
                     //throw new Exception(ex.Message);
                     xreturn = false;
                     cnx.Close();
                 }
             }
         }
         return xreturn;
     }
 }
        public DataSet GetOne(string empresaid, tb_plla_numeracionplla BE)
        {
            using (SqlConnection cnx = new SqlConnection(conex.empConexion(empresaid)))
            {
                using (SqlCommand cmd = new SqlCommand("gspTbPllaNumeracionplla_SELECT", cnx))
                {
                    DataSet ds = new DataSet();
                    {
                        cmd.CommandType = CommandType.StoredProcedure;
                        cmd.Parameters.Add("@perianio", SqlDbType.Char).Value = BE.perianio;
                        cmd.Parameters.Add("@asiento", SqlDbType.Char).Value = BE.asiento;
                    }

                    try
                    {
                        cnx.Open();
                        using (SqlDataAdapter da = new SqlDataAdapter(cmd))
                        {
                            da.Fill(ds);
                        }
                        return ds;
                    }
                    catch (Exception ex)
                    {
                        Sql_Error = ex.Message;
                        throw new Exception(ex.Message);
                    }
                }
            }
        }
        private void btneliminar_Click(object sender, EventArgs e)
        {
            if ((Examinar.CurrentRow != null))
            {
                var xnomcampo = string.Empty;
                var BL = new tb_plla_numeracionpllaBL();
                var BE = new tb_plla_numeracionplla();
                BE.perianio = Examinar.Rows[Examinar.CurrentRow.Index].Cells["perianio"].Value.ToString();
                BE.asiento = Examinar.Rows[Examinar.CurrentRow.Index].Cells["asiento"].Value.ToString();
                tmpcursor = BL.GetAll_CONSULTAIR(VariablesPublicas.EmpresaID, BE).Tables[0];
                if (BL.Sql_Error.Length > 0)
                {
                    xnomcampo = BL.Sql_Error;
                    Frm_Class.ShowError(BL.Sql_Error, this);
                }
                else
                {
                    if (tmpcursor.Rows.Count == 0)
                    {
                    }
                    else
                    {
                        for (lc_cont = 0; lc_cont <= tmpcursor.Rows.Count - 1; lc_cont++)
                        {
                            xnomcampo = xnomcampo + tmpcursor.Rows[lc_cont]["relacion"] + "\r";
                            if (lc_cont + 1 == 10)
                            {
                                break;
                            }
                        }
                    }
                }
                if (xnomcampo.Length == 0)
                {
                    BE.norden = 1;
                    tmptabla = BL.GetAll_CONSULTA(VariablesPublicas.EmpresaID, BE).Tables[0];
                    if (BL.Sql_Error.Length == 0)
                    {
                        var message = "Desea eliminar datos de la Numeración " + tmptabla.Rows[0]["asiento"].ToString().Trim() + "-" + tmptabla.Rows[0]["glosa"].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)
                        {
                            BL.Eliminar(VariablesPublicas.EmpresaID, tmptabla);
                            if (BL.Sql_Error.Length == 0)
                            {
                                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["perianio"].Value.ToString() + Examinar.Rows[Examinar.CurrentRow.Index].Cells["asiento"].Value.ToString();
                                BEL.cuser = VariablesPublicas.Usuar;
                                BEL.fecha = DateTime.Now;
                                BEL.pc = VariablesPublicas.userip;
                                BEL.accion = "B";
                                BEL.detalle = "NUMERO DE PLANILA: " + txtcodigo.Text.Trim() + " | " + txtdescripcion.Text.Trim();
                                BLL.Insert(VariablesPublicas.EmpresaID.ToString(), BEL);

                                Examinar.Rows.Remove(Examinar.CurrentRow);
                                Examinar.Refresh();
                                u_PintaDatos();
                            }
                            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();
        }
        private void U_LoadPlanillas(int nInit)
        {
            if (nInit == 1)
            {
                cboTipo.Text = "Normal";
            }

            Examinar.AutoGenerateColumns = false;
            var BL = new tb_plla_numeracionpllaBL();
            var BE = new tb_plla_numeracionplla();
            BE.perianio = VariablesPublicas.perianio;
            BE.norden = 1;
            Examinar.DataSource = BL.CONSULTA_SELECCION(VariablesPublicas.EmpresaID, BE).Tables[0];

            VariablesPublicas.PintaEncabezados(Examinar);

            var ncol = 0;
            for (ncol = 0; ncol <= Examinar.ColumnCount - 1; ncol++)
            {
                Examinar.Columns[ncol].SortMode = DataGridViewColumnSortMode.Automatic;
            }
            if (cboTipo.Text.ToUpper() == "NORMAL")
            {
                Examinar.Columns["Column8"].DataPropertyName = "plla_sel";
            }
            else
            {
                Examinar.Columns["Column8"].DataPropertyName = "he_sel";
            }

            Examinar.Columns[6].Visible = false;
            Examinar.Columns[7].Visible = false;
            Examinar.Columns[8].Visible = true;
        }