Exemplo n.º 1
0
        //TODO:Invoice Stuff
        public decimal GetStopAmout()
        {
            decimal discounts = 0;
            decimal total     = 0;

            using (var db = new pileEntities())
            {
                discounts = Discount;
                total    += Invoice.GetWeeklyAmount(Service.Freq, Price);

                if (QtyPrice > 0)
                {
                    total += Invoice.GetWeeklyAmount(Service.Freq, QtyPrice, Qty - 1);
                }

                if (Discount != 0)
                {
                    total -= Invoice.GetWeeklyAmount(Service.Freq, Discount);
                }

                if (AdditAmount != 0)
                {
                    total += Invoice.GetWeeklyAmount(Service.Freq, AdditAmount);
                }
            }

            return(total);
        }
Exemplo n.º 2
0
 public static void UpdateEstNums(int ServiceDayId)
 {
     using (var db = new pileEntities())
     {
         var serviceDay = db.ServiceDays.SingleOrDefault(x => x.Id == ServiceDayId);
         //var serviceDaysToUpdate = db.ServiceDays.Where(x => x.Day == serviceDay.d)
     }
 }
Exemplo n.º 3
0
        public async Task RecordChangeHistory(List <PropertyInfo> changes, ChangeType changeType = ChangeType.Change)
        {
            using (var db = new pileEntities())
            {
                var old       = db.Customers.Single(x => x.Id == Id);
                var histories = new List <CustomerHistory>();
                foreach (var change in changes)
                {
                    string oldval = (change.GetValue(old) ?? "<null>").ToString(); // : change.GetValue(old).ToString();
                    string newval = change.GetValue(this) == null ? "<null>" : change.GetValue(this).ToString();

                    var hist = new CustomerHistory
                    {
                        CustomerId = this.Id,
                        Date       = DateTime.Now,
                        EmployeeId = ApplicationUserManager.GetCurrentUserEmployeeId(),
                        Field      = change.Name,
                        Type       = 33,
                        Notes      = string.Format("Old value: {0} - New value: {1}", oldval, newval)
                    };


                    switch (changeType)
                    {
                    case ChangeType.Change:
                        hist.Type = change.GetValue(this) as string == "A" ? 32 : 31;
                        break;

                    case ChangeType.New:
                        hist.Type = 30;
                        break;
                    }

                    histories.Add(hist);
                }

                if (histories.Count() > 0)
                {
                    db.CustomerHistories.AddRange(histories);
                }

                await db.SaveChangesAsync();
            }
        }
Exemplo n.º 4
0
        private async static Task DeleteRoutes(Customer cust, DateTime afterDate, DateTime?throughDate = null)
        {
            using (var db = new pileEntities())
            {
                if (throughDate == null || !throughDate.HasValue)
                {
                    throughDate = DateTime.MaxValue;
                }

                var routes = db.Routes.Where(
                    x => x.CustomerID == cust.Id &&
                    x.Date >= DateTime.Today &&
                    x.Date >= afterDate &&
                    x.Date < throughDate);

                db.Routes.RemoveRange(routes);
                await db.SaveChangesAsync();
            }
        }
Exemplo n.º 5
0
        public static string GenerateRoutes(DateTime startWeekDate)
        {
            using (var db = new pileEntities())
            {
                var endWeekDate        = startWeekDate.AddDays(7);
                var existingRouteCount = db.Routes.Count(x => x.Date >= startWeekDate && x.Date < endWeekDate);
                if (existingRouteCount > 0)
                {
                    return($"{existingRouteCount} routes already exist for {startWeekDate.ToShortDateString()}");
                }

                var activeCustomers = db.Customers.Where(x => x.Status == "A");
                var serviceDetails  = db.ServiceDetails.Where(x => x.CountDown > 0).Join(activeCustomers, s => s.CustomerId, c => c.Id, (s, c) => s);
                var pauses          = db.Pauses.Where(x => x.PauseDate <= endWeekDate && x.RestartDate > startWeekDate);

                var routeList = new List <Route>();
                foreach (var serviceDetail in serviceDetails)
                {
                    var customer  = activeCustomers.Single(x => x.Id == serviceDetail.CustomerId);
                    var custRoute = GenerateCustomerRoute(customer, serviceDetail, startWeekDate);
                    //don't add 'em if paused.
                    if (IsRouteValid(custRoute, customer, pauses, serviceDetail))
                    {
                        routeList.Add(custRoute);
                    }
                }

                db.Routes.AddRange(routeList);
                var toCountDownList = serviceDetails.Where(x => x.CountDown < 999);
                foreach (var toCountDown in toCountDownList)
                {
                    if (routeList.Any(x => x.CustomerID == toCountDown.CustomerId && x.ServiceId == toCountDown.ServiceId))
                    {
                        toCountDown.CountDown -= 1;
                    }
                }

                db.SaveChanges();
            }

            return("");
        }
Exemplo n.º 6
0
        public void SaveChildObjects(pileEntities db)
        {
            foreach (var address in Addresses.Where(x => x.Id != 0))
            {
                db.Entry(address).State = EntityState.Modified;
            }
            foreach (var email in EmailAddresses.Where(x => x.Id != 0))
            {
                db.Entry(email).State = EntityState.Modified;
            }
            foreach (var note in Notes.Where(x => x.Id != 0))
            {
                db.Entry(note).State = EntityState.Modified;
            }
            foreach (var phone in Phones.Where(x => x.Id != 0))
            {
                db.Entry(phone).State = EntityState.Modified;
            }


            foreach (var address in Addresses.Where(x => x.Id == 0))
            {
                db.Addresses.Add(address);
            }
            foreach (var email in EmailAddresses.Where(x => x.Id == 0))
            {
                db.EmailAddresses.Add(email);
            }
            foreach (var note in Notes.Where(x => x.Id == 0))
            {
                db.Notes.Add(note);
            }
            foreach (var phone in Phones.Where(x => x.Id == 0))
            {
                db.Phones.Add(phone);
            }

            db.SaveChanges();
        }
Exemplo n.º 7
0
        public List <PropertyInfo> GetChanges()
        {
            using (var db = new pileEntities())
            {
                var old          = db.Customers.Single(x => x.Id == Id);
                var changedProps = new List <PropertyInfo>();
                var props        = this.GetType().GetProperties(BindingFlags.Public | BindingFlags.DeclaredOnly | BindingFlags.Instance);
                foreach (var prop in props)
                {
                    if (prop.Name == "LastUpdate")
                    {
                        continue;
                    }

                    object oldVal = prop.GetValue(old);
                    object newVal = prop.GetValue(this);

                    if (prop.PropertyType == typeof(string))
                    {
                        if (string.IsNullOrEmpty(oldVal as string) && string.IsNullOrEmpty(oldVal as string))
                        {
                            continue;
                        }
                    }

                    if (oldVal == null && newVal == null)
                    {
                        continue;
                    }

                    if ((oldVal == null && newVal != null) || (oldVal != null && newVal == null) || (!prop.GetValue(this).Equals(prop.GetValue(old))))
                    {
                        changedProps.Add(prop);
                    }
                }
                return(changedProps);
            }
        }
Exemplo n.º 8
0
        public static void UpdateEstNums(int customerId)
        {
            using (var db = new pileEntities())
            {
                var crewDayList = db.ServiceDays.Where(x => x.CustomerId == customerId).Select(x => new { Crew = x.Crew, Day = x.Day }).ToList();

                foreach (var crewDay in crewDayList.Distinct())
                {
                    var crew          = crewDay.Crew;
                    var day           = crewDay.Day;
                    var orderedCustId = (from sd in db.ServiceDays
                                         join c in db.Customers on sd.CustomerId equals c.Id
                                         where c.Status == "A" && sd.Day == day && sd.Crew == crew
                                         select new
                    {
                        EstNum = sd.EstNum,
                        CustomerId = sd.CustomerId
                    }).Distinct().OrderBy(x => x.EstNum).Select(x => x.CustomerId).ToList();


                    var serviceDetailsForCrewDay = db.ServiceDays.Where(x => orderedCustId.Contains(x.CustomerId) && x.Day == day && x.Crew == crew);

                    for (int i = 0; i < orderedCustId.Count(); i++)
                    {
                        var custId = orderedCustId.ElementAt(i);
                        var serviceDaysToUpdate = serviceDetailsForCrewDay.Where(x => x.CustomerId == custId).ToList();
                        foreach (var detailToUpdate in serviceDaysToUpdate)
                        {
                            detailToUpdate.EstNum = i + 1;
                        }
                    }
                }

                db.SaveChanges();
            }
        }
Exemplo n.º 9
0
        private static void InsertRoute(Customer cust, DateTime weekStart)
        {
            using (var db = new pileEntities())
            {
                if (cust.Status != "A")
                {
                    throw new Exception(string.Format("Adding a route to an inactive customer is not allowed.  CustId {0}", cust.Id));
                }
                var thisWeekend = Route.ThisWeekEnd;
                //Make sure there aren't already routes for customer & timeframe
                if (!db.Routes.Any(x => x.CustomerID == cust.Id && x.Date >= weekStart && x.Date <= thisWeekend))
                {
                    //Make sure at least one other customer has routes defined in timeframe (original logic).
                    if (!db.Routes.Any(x => x.Date >= weekStart && x.Date <= thisWeekend))
                    {
                        return;
                    }

                    var svcDetails = db.ServiceDetails.Where(x => x.CustomerId == cust.Id).ToList();
                    if (svcDetails == null || svcDetails.Count(x => x.CountDown > 0) == 0)
                    {
                        return;
                    }

                    var routesToAdd = new List <Route>();
                    foreach (var serviceDetail in svcDetails)
                    {
                        var service = db.Services.Single(x => x.Id == serviceDetail.ServiceId);
                        if (RouteQualifies(weekStart, service, serviceDetail, cust))
                        {
                            var employee = serviceDetail.ServiceDay.Crew.Employees.First(); //db.Employees.Single(x => x.Crew == serviceDetail.ServiceDay.Crew && x.Status != "I");
                            var total    = serviceDetail.GetStopAmout();

                            //these discounts are already figured into the total above.  The discount is stored on the route
                            //for reference purposes, I suppose.  I didn't write it. . . I just rewrote it.
                            var discounts      = serviceDetail.Discount;
                            var employeeAmount = service.GetEmployeeAmount(employee, total, serviceDetail.Qty);

                            routesToAdd.Add(new Route
                            {
                                Date            = weekStart.AddDays(serviceDetail.ServiceDay.Day),
                                CustomerID      = cust.Id,
                                Discount        = discounts,
                                EmpAmount       = employeeAmount.Amount,
                                EmployeeId      = employee.Id,
                                EmpPerc         = employeeAmount.Percent,
                                EstNum          = serviceDetail.ServiceDay.EstNum,
                                ServiceDetailId = serviceDetail.Id,
                                ServiceId       = service.Id,
                                Status          = "A",
                                WeeklyRate      = total
                            });

                            if (service.CountDown != 999)
                            {
                                service.CountDown -= 1;
                            }
                        }
                    }
                    db.Routes.AddRange(routesToAdd);
                    db.SaveChanges();
                }
            }
        }