Esempio n. 1
0
        public Boolean GrabarDB(prod_ChatarraTipo_CusTalme_Info Lst, ref int Id, ref string mensaje)
        {
            try
            {
                using (EntitiesProduccion Context = new EntitiesProduccion())
                {
                    prod_ChatarraTipo_CusTalme Deta = new prod_ChatarraTipo_CusTalme();

                    Deta.IdEmpresa      = Lst.IdEmpresa;
                    Deta.IdTipoChatarra = Id = GetId(Lst.IdEmpresa);
                    Deta.Precio         = Lst.Precio;
                    Deta.Descripcion    = Lst.Descripcion;
                    Deta.Estado         = Lst.Estado;

                    Context.prod_ChatarraTipo_CusTalme.Add(Deta);
                    Context.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 mensaje);
                mensaje = ex.ToString() + " " + ex.Message;
                throw new Exception(ex.ToString());
            }
        }
Esempio n. 2
0
        public List <prod_ChatarraTipo_CusTalme_Info> Get_List_ChatarraTipo_CusTalme(int IdEmpresa)
        {
            List <prod_ChatarraTipo_CusTalme_Info> Lst = new List <prod_ChatarraTipo_CusTalme_Info>();
            EntitiesProduccion oEnti = new EntitiesProduccion();

            try
            {
                var Query = from q in oEnti.prod_ChatarraTipo_CusTalme where q.IdEmpresa == IdEmpresa
                            select q;
                foreach (var item in Query)
                {
                    prod_ChatarraTipo_CusTalme_Info Obj = new prod_ChatarraTipo_CusTalme_Info();
                    Obj.IdEmpresa      = item.IdEmpresa;
                    Obj.IdTipoChatarra = item.IdTipoChatarra;
                    Obj.Descripcion    = item.Descripcion;
                    Obj.Estado         = item.Estado;
                    Obj.Precio         = Convert.ToDouble(item.Precio);
                    Lst.Add(Obj);
                }
                return(Lst);
            }
            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 mensaje);
                mensaje = ex.ToString() + " " + ex.Message;
                throw new Exception(ex.ToString());
            }
        }
Esempio n. 3
0
 public Boolean AnularDB(prod_ChatarraTipo_CusTalme_Info info)
 {
     try
     {
         using (EntitiesProduccion context = new EntitiesProduccion())
         {
             var contact = context.prod_ChatarraTipo_CusTalme.FirstOrDefault(minfo => minfo.IdEmpresa == info.IdEmpresa && minfo.IdTipoChatarra == info.IdTipoChatarra);
             if (contact != null)
             {
                 contact.Estado = "I";
                 context.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 mensaje);
         mensaje = ex.ToString() + " " + ex.Message;
         throw new Exception(ex.ToString());
     }
 }
Esempio n. 4
0
        public Boolean ModificarDB(prod_ChatarraTipo_CusTalme_Info prI, ref string mensaje)
        {
            try
            {
                using (EntitiesProduccion context = new EntitiesProduccion())
                {
                    var contact = context.prod_ChatarraTipo_CusTalme.FirstOrDefault(VProdu => VProdu.IdEmpresa == prI.IdEmpresa && VProdu.IdTipoChatarra == prI.IdTipoChatarra);
                    if (contact != null)
                    {
                        contact.Precio      = prI.Precio;
                        contact.Descripcion = prI.Descripcion;
                        contact.Estado      = prI.Estado;

                        context.SaveChanges();

                        mensaje = "Se ha procedido a actualizar los datos exitosamente...";
                    }
                }
                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 mensaje);
                mensaje = ex.ToString() + " " + ex.Message;
                throw new Exception(ex.ToString());
            }
        }
Esempio n. 5
0
 private void UltraGrid_TipoChatarra_FocusedRowChanged(object sender, DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventArgs e)
 {
     try
     {
         Info_TipoChatarra = (prod_ChatarraTipo_CusTalme_Info)GridView_TipoChatarra.GetFocusedRow();
     }
     catch (Exception ex)
     {
         Log_Error_bus.Log_Error(ex.ToString());
     }
 }
 public Boolean Anular(prod_ChatarraTipo_CusTalme_Info info)
 {
     try
     {
         return(Data.AnularDB(info));
     }
     catch (Exception ex)
     {
         Core.Erp.Info.Log_Exception.LoggingManager.Logger.Log(Core.Erp.Info.Log_Exception.LoggingCategory.Error, ex.Message);
         throw new Core.Erp.Info.Log_Exception.DalException(string.Format("", "Anular", ex.Message), ex)
               {
                   EntityType = typeof(prod_ChatarraTipo_CusTalme_Bus)
               };
     }
 }
 public Boolean ModificarDB(prod_ChatarraTipo_CusTalme_Info prI, ref string mensaje)
 {
     try
     {
         return(Data.ModificarDB(prI, ref mensaje));
     }
     catch (Exception ex)
     {
         Core.Erp.Info.Log_Exception.LoggingManager.Logger.Log(Core.Erp.Info.Log_Exception.LoggingCategory.Error, ex.Message);
         throw new Core.Erp.Info.Log_Exception.DalException(string.Format("", "ModificarDB", ex.Message), ex)
               {
                   EntityType = typeof(prod_ChatarraTipo_CusTalme_Bus)
               };
     }
 }
 public void Set_InfoTipoChatarra(prod_ChatarraTipo_CusTalme_Info info)
 {
     try
     {
         txtId.Text          = info.IdTipoChatarra.ToString();
         txtDescripcion.Text = info.Descripcion;
         txtPrecio.Text      = info.Precio.ToString();
         if (info.Estado == "A")
         {
             chkEstado.Checked = true;
             lblEstado.Visible = false;
         }
         else
         {
             chkEstado.Checked = false;
             lblEstado.Visible = true;
         }
     }
     catch (Exception ex)
     {
         Log_Error_bus.Log_Error(ex.ToString());
     }
 }