Exemple #1
0
        /// <summary>
        /// Delete a ParametroVendedor
        /// </summary>
        /// <param name="ParametroVendedorTarget"></param>
        public void DeletePresupuestoVentas(CSS_PRESUPUESTO_TIENDAS ParametroVendedorTarget)
        {
            try
            {
                using (var ctx = new MHERPEntities())
                {
                    //verify if the school exists
                    CSS_PRESUPUESTO_TIENDAS oPresupuesto = getPresupuestoVentas(ParametroVendedorTarget);

                    if (oPresupuesto != null)
                    {
                        // if exists then edit
                        ctx.CSS_PRESUPUESTO_TIENDAS.Attach(oPresupuesto);
                        ctx.CSS_PRESUPUESTO_TIENDAS.Remove(oPresupuesto);
                        ctx.SaveChanges();
                    }
                }
            }
            catch (DbUpdateException ex)
            {
                if (ex.InnerException.InnerException.Message.Contains("REFERENCE constraint"))
                {
                    throw new Exception("No se puede eliminar este parámetro porque existe información asociada a este.");
                }
            }
            catch (Exception ex) { throw ex; }
        }
Exemple #2
0
        public CSS_PRESUPUESTO_TIENDAS getPresupuestoVentas(CSS_PRESUPUESTO_TIENDAS presupuestoTarget)
        {
            CSS_PRESUPUESTO_TIENDAS Presupuesto = new CSS_PRESUPUESTO_TIENDAS();

            try
            {
                using (var ctx = new MHERPEntities())
                {
                    ctx.Configuration.ProxyCreationEnabled = false;
                    Presupuesto = ctx.CSS_PRESUPUESTO_TIENDAS.Where(x =>
                                                                    x.tienda == presupuestoTarget.tienda && x.mes.Equals(presupuestoTarget.mes) && x.ano.Equals(presupuestoTarget.ano)).FirstOrDefault();
                }
            }
            catch (Exception ex) { throw ex; }

            return(Presupuesto);
        }
Exemple #3
0
        public void SavePresupuestoVentas(CSS_PRESUPUESTO_TIENDAS presupuestoVentasTarget)
        {
            try
            {
                using (var ctx = new MHERPEntities())
                {
                    //verify if the ParametroVendedor exists
                    CSS_PRESUPUESTO_TIENDAS oPresupuestoVentas = getPresupuestoVentas(presupuestoVentasTarget);

                    if (oPresupuestoVentas != null)
                    {
                        // if exists then edit
                        ctx.CSS_PRESUPUESTO_TIENDAS.Attach(oPresupuestoVentas);
                        _GenericEntityValidation.EnumeratePropertyDifferences(oPresupuestoVentas, presupuestoVentasTarget);
                        ctx.SaveChanges();
                    }
                    else
                    {
                        // else create
                        ctx.CSS_PRESUPUESTO_TIENDAS.Add(presupuestoVentasTarget);
                        ctx.SaveChanges();
                    }
                }
            }
            catch (DbEntityValidationException e)
            {
                StringBuilder oError = new StringBuilder();
                foreach (var eve in e.EntityValidationErrors)
                {
                    oError.AppendLine(string.Format("Entity of type \"{0}\" in state \"{1}\" has the following validation errors:",
                                                    eve.Entry.Entity.GetType().Name, eve.Entry.State));

                    foreach (var ve in eve.ValidationErrors)
                    {
                        oError.AppendLine(string.Format("- Property: \"{0}\", Error: \"{1}\"",
                                                        ve.PropertyName, ve.ErrorMessage));
                    }
                }
                string msg = oError.ToString();
                throw new Exception(msg);
            }
            catch (Exception ex) { throw ex; }
        }