예제 #1
0
        public bool ModificarDB(ct_punto_cargo_FJ_Info info)
        {
            try
            {
                using (EntitiesContabilidad_FJ Context = new EntitiesContabilidad_FJ())
                {
                    ct_punto_cargo_FJ Entity = Context.ct_punto_cargo_FJ.First(q => q.IdEmpresa == info.IdEmpresa && q.IdPunto_cargo == info.IdPunto_cargo);
                    if (Entity != null)
                    {
                        Entity.IdCentroCosto = info.IdCentroCosto == "" ? null : info.IdCentroCosto;
                        Entity.IdCentroCosto_sub_centro_costo = info.IdCentroCosto_sub_centro_costo == "" ? null : info.IdCentroCosto_sub_centro_costo;
                        Context.SaveChanges();
                    }
                    else
                    {
                        GuardarDB(info);
                    }
                }

                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();
                throw new Exception(ex.ToString());
            }
        }
예제 #2
0
        public ct_punto_cargo_FJ_Info Get_info_punto_cargo(int IdEmpresa, int IdPunto_cargo)
        {
            try
            {
                ct_punto_cargo_FJ_Info info = new ct_punto_cargo_FJ_Info();

                using (EntitiesContabilidad_FJ Context = new EntitiesContabilidad_FJ())
                {
                    var lst = from q in Context.vwct_punto_cargo_x_Af_Activo_fijo
                              where q.IdEmpresa == IdEmpresa &&
                              q.IdPunto_cargo == IdPunto_cargo
                              select q;

                    foreach (var item in lst)
                    {
                        info.IdEmpresa     = item.IdEmpresa;
                        info.IdPunto_cargo = item.IdPunto_cargo;
                        info.IdCentroCosto = item.IdCentroCosto_Scc;
                        info.IdCentroCosto_sub_centro_costo = item.IdCentroCosto_sub_centro_costo_Scc;
                    }
                }

                return(info);
            }
            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();
                throw new Exception(ex.ToString());
            }
        }
예제 #3
0
 public bool ModificarDB(ct_punto_cargo_FJ_Info info)
 {
     try
     {
         return(oData.ModificarDB(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("", "Get_Info_Punto_cargo", ex.Message), ex)
               {
                   EntityType = typeof(ct_punto_cargo_FJ_Bus)
               };
     }
 }
예제 #4
0
        public bool GuardarDB(ct_punto_cargo_FJ_Info info)
        {
            try
            {
                using (EntitiesContabilidad_FJ Context = new EntitiesContabilidad_FJ())
                {
                    var lst = from q in Context.ct_punto_cargo_FJ
                              where q.IdEmpresa == info.IdEmpresa &&
                              q.IdPunto_cargo == info.IdPunto_cargo
                              select q;
                    if (lst.Count() == 0)
                    {
                        ct_punto_cargo_FJ Entity = new ct_punto_cargo_FJ();

                        Entity.IdEmpresa     = info.IdEmpresa;
                        Entity.IdPunto_cargo = info.IdPunto_cargo;
                        Entity.IdCentroCosto = info.IdCentroCosto == "" ? null : info.IdCentroCosto;
                        Entity.IdCentroCosto_sub_centro_costo = info.IdCentroCosto_sub_centro_costo == "" ? null : info.IdCentroCosto_sub_centro_costo;

                        Context.ct_punto_cargo_FJ.Add(Entity);
                        Context.SaveChanges();
                    }
                    else
                    {
                        ModificarDB(info);
                    }
                }

                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();
                throw new Exception(ex.ToString());
            }
        }
예제 #5
0
 public ct_punto_cargo_Info()
 {
     info_punto_cargo_Fj = new ct_punto_cargo_FJ_Info();
 }