예제 #1
0
 public bool Guardar_DB(ro_empleado_x_zona_Info info)
 {
     try
     {
         if (!si_Existe(info.IdEmpresa, info.IdNomina_Tipo, info.IdEmpleado))
         {
             using (EntityRoles_FJ db = new EntityRoles_FJ())
             {
                 ro_empleado_x_zona add = new ro_empleado_x_zona();
                 add.IdEmpresa         = info.IdEmpresa;
                 add.IdNomina_Tipo     = info.IdNomina_Tipo;;
                 add.IdEmpleado        = info.IdEmpleado;
                 add.IdUsuario         = info.IdUsuario;
                 add.Fecha_Transaccion = DateTime.Now;
                 add.Estado            = true;
                 db.ro_empleado_x_zona.Add(add);
                 db.SaveChanges();
             }
         }
         return(true);
     }
     catch (Exception ex)
     {
         string arreglo = ToString();
         tb_sis_Log_Error_Vzen_Data oDataLog      = new tb_sis_Log_Error_Vzen_Data();
         tb_sis_Log_Error_Vzen_Info Log_Error_sis = new tb_sis_Log_Error_Vzen_Info(ex.ToString(), "", arreglo, "", "", "", "", "", DateTime.Now);
         oDataLog.Guardar_Log_Error(Log_Error_sis, ref MensajeError);
         MensajeError = ex.ToString();
         throw new Exception(ex.ToString());
     }
 }
예제 #2
0
        public bool Guardar_DB(ro_empleado_x_zona_Info info)
        {
            bool bandera = true;

            try
            {
                if (data.Guardar_DB(info))
                {
                    foreach (var item in info.detalle)
                    {
                        item.IdEmpresa     = info.IdEmpresa;
                        item.IdNomina_Tipo = info.IdNomina_Tipo;
                        item.IdEmpleado    = info.IdEmpleado;
                    }
                    bandera = data_detalle.Guardar_DB(info.detalle);
                }

                return(bandera);
            }
            catch (Exception ex)
            {
                mensaje = ex.ToString();
                tb_sis_Log_Error_Vzen_Data oDataLog      = new tb_sis_Log_Error_Vzen_Data();
                tb_sis_Log_Error_Vzen_Info Log_Error_sis = new tb_sis_Log_Error_Vzen_Info(ex.ToString(), "", mensaje, "", "", "", "", "", DateTime.Now);
                oDataLog.Guardar_Log_Error(Log_Error_sis, ref mensaje);
                throw new Exception(mensaje);
            }
        }
예제 #3
0
 public bool Anular_DB(ro_empleado_x_zona_Info info)
 {
     try
     {
         return(data.Anular_DB(info));
     }
     catch (Exception ex)
     {
         mensaje = ex.ToString();
         tb_sis_Log_Error_Vzen_Data oDataLog      = new tb_sis_Log_Error_Vzen_Data();
         tb_sis_Log_Error_Vzen_Info Log_Error_sis = new tb_sis_Log_Error_Vzen_Info(ex.ToString(), "", mensaje, "", "", "", "", "", DateTime.Now);
         oDataLog.Guardar_Log_Error(Log_Error_sis, ref mensaje);
         throw new Exception(mensaje);
     }
 }
예제 #4
0
        public bool Anular_DB(ro_empleado_x_zona_Info info)
        {
            try
            {
                using (EntityRoles_FJ db = new EntityRoles_FJ())
                {
                    db.Database.ExecuteSqlCommand("delete Fj_servindustrias.ro_empleado_x_zona_Det where IdEmpresa='" + info.IdEmpresa + "' and IdNomina_Tipo= '" + info.IdNomina_Tipo + "' and IdEmpleado='" + info.IdEmpleado + "'");

                    db.Database.ExecuteSqlCommand("delete Fj_servindustrias.ro_empleado_x_zona where IdEmpresa='" + info.IdEmpresa + "' and IdNomina_Tipo= '" + info.IdNomina_Tipo + "' and IdEmpleado='" + info.IdEmpleado + "'");
                    return(true);
                }
            }
            catch (Exception ex)
            {
                string arreglo = ToString();
                tb_sis_Log_Error_Vzen_Data oDataLog      = new tb_sis_Log_Error_Vzen_Data();
                tb_sis_Log_Error_Vzen_Info Log_Error_sis = new tb_sis_Log_Error_Vzen_Info(ex.ToString(), "", arreglo, "", "", "", "", "", DateTime.Now);
                oDataLog.Guardar_Log_Error(Log_Error_sis, ref MensajeError);
                MensajeError = ex.ToString();
                throw new Exception(ex.ToString());
            }
        }
예제 #5
0
        public List <ro_empleado_x_zona_Info> listado_empleado_x_parametro_variables(int IdEmpresa)
        {
            try
            {
                List <ro_empleado_x_zona_Info> lista = new List <ro_empleado_x_zona_Info>();
                using (EntityRoles_FJ db = new EntityRoles_FJ())
                {
                    var query = from q in db.ro_empleado_x_zona
                                where
                                q.IdEmpresa == IdEmpresa
                                select q;

                    foreach (var item in query)
                    {
                        ro_empleado_x_zona_Info info = new ro_empleado_x_zona_Info();

                        info.IdEmpresa      = item.IdEmpresa;
                        info.IdNomina_Tipo  = item.IdNomina_Tipo;;
                        info.IdEmpleado     = item.IdEmpleado;
                        info.icono_eliminar = true;
                        lista.Add(info);
                    }
                }

                return(lista);
            }
            catch (Exception ex)
            {
                string arreglo = ToString();
                tb_sis_Log_Error_Vzen_Data oDataLog      = new tb_sis_Log_Error_Vzen_Data();
                tb_sis_Log_Error_Vzen_Info Log_Error_sis = new tb_sis_Log_Error_Vzen_Info(ex.ToString(), "", arreglo, "", "", "", "", "", DateTime.Now);
                oDataLog.Guardar_Log_Error(Log_Error_sis, ref MensajeError);
                MensajeError = ex.ToString();
                throw new Exception(ex.ToString());
            }
        }