Beispiel #1
0
        public static decimal RemainingAllocationAmount(Budgets_Allocations allocation, int endMonth = 12, int startMonth = 1)
        {
            List <Orders_OrderToAllocation> approvedAllocations =
                allocation
                .Orders_OrderToAllocation
                .Where(x => x.Order.StatusId != (int)StatusType.Declined && x.Order.StatusId != (int)StatusType.OrderCancelled)
                .ToList();

            List <Budgets_AllocationToMonth> allocationMonths =
                allocation
                .Budgets_AllocationToMonth
                .Where(x => x.MonthId >= startMonth && x.MonthId <= endMonth)
                .ToList();

            decimal?totalAmount = allocationMonths.Sum(x => (int?)x.Amount);
            decimal?usedAmount  = approvedAllocations.Where(x => x.MonthId >= startMonth && x.MonthId <= endMonth).Select(d => (decimal?)d.Amount).Sum();

            return((totalAmount.HasValue ? totalAmount.Value : 0) - (usedAmount.HasValue ? usedAmount.Value : 0));
        }
        public ActionResult Edit(Budgets_Allocations Budgets_Allocations)
        {
            return(Error(Loc.Dic.error_no_permission));

            if (Authorized(RoleType.SystemManager))
            {
                if (ModelState.IsValid)
                {
                    Budgets_Allocations allocation;
                    Budgets_Incomes     income;
                    Budgets_Expenses    expense;

                    using (BudgetsRepository budgetsRep = new BudgetsRepository(CurrentUser.CompanyId))
                        using (BudgetsIncomesRepository incomesRep = new BudgetsIncomesRepository())
                            using (BudgetsExpensesRepository expensesRep = new BudgetsExpensesRepository())
                                using (AllocationRepository allocationsRep = new AllocationRepository(CurrentUser.CompanyId))
                                    using (OrdersRepository ordersRep = new OrdersRepository(CurrentUser.CompanyId))
                                    {
                                        allocation = allocationsRep.GetEntity(Budgets_Allocations.Id);

                                        if (allocation != null)
                                        {
                                            if (allocation.CompanyId == CurrentUser.CompanyId)
                                            {
                                                income  = incomesRep.GetEntity(Budgets_Allocations.IncomeId.Value);
                                                expense = expensesRep.GetEntity(Budgets_Allocations.ExpenseId.Value);

                                                if (income != null && expense != null)
                                                {
                                                    if (income.BudgetId == allocation.BudgetId && expense.BudgetId == allocation.BudgetId)
                                                    {
                                                        decimal?totalUsed;
                                                        decimal?allocatedToExpense;
                                                        decimal?allocatedToIncome;

                                                        totalUsed = 0; //totalUsed = ordersRep.GetList()
                                                        //    .Where(order => order.BudgetAllocationId == Budgets_Allocations.Id && order.StatusId >= (int)StatusType.ApprovedPendingInvoice)
                                                        //    .Sum(x => (decimal?)x.Price);

                                                        if ((totalUsed ?? 0) > Budgets_Allocations.CompanyId)//if ((totalUsed ?? 0) > Budgets_Allocations.Amount)
                                                        {
                                                            return(Error(Loc.Dic.error_allocations_amount_is_used));
                                                        }

                                                        allocatedToIncome = allocationsRep.GetList()
                                                                            .Where(x => x.IncomeId == income.Id && x.Id != Budgets_Allocations.Id)
                                                                            .Sum(alloc => (decimal?)alloc.CompanyId);                 //.Sum(alloc => (decimal?)alloc.Amount);

                                                        if ((allocatedToIncome ?? 0) + Budgets_Allocations.CompanyId > income.Amount) //if ((allocatedToIncome ?? 0) + Budgets_Allocations.Amount > income.Amount)
                                                        {
                                                            return(Error(Loc.Dic.error_income_full_allocation));
                                                        }

                                                        allocatedToExpense = allocationsRep.GetList()
                                                                             .Where(x => x.ExpenseId == expense.Id && x.Id != Budgets_Allocations.Id)
                                                                             .Sum(alloc => (decimal?)alloc.CompanyId);                  //.Sum(alloc => (decimal?)alloc.Amount);

                                                        if ((allocatedToExpense ?? 0) + Budgets_Allocations.CompanyId > expense.Amount) //if ((allocatedToExpense ?? 0) + Budgets_Allocations.Amount > expense.Amount)
                                                        {
                                                            return(Error(Loc.Dic.error_expenses_full_allocation));
                                                        }

                                                        allocation.IncomeId  = Budgets_Allocations.IncomeId;
                                                        allocation.ExpenseId = Budgets_Allocations.ExpenseId;
                                                        allocation.CompanyId = Budgets_Allocations.CompanyId;//allocation.Amount = Budgets_Allocations.Amount;

                                                        Budgets_Allocations update = allocationsRep.Update(allocation);

                                                        if (update != null)
                                                        {
                                                            return(RedirectToAction("Index"));
                                                        }
                                                        else
                                                        {
                                                            return(Error(Loc.Dic.error_allocations_get_error));
                                                        }
                                                    }
                                                    else
                                                    {
                                                        return(Error(Loc.Dic.error_invalid_form));
                                                    }
                                                }
                                                else
                                                {
                                                    return(Error(Loc.Dic.error_database_error));
                                                }
                                            }
                                            else
                                            {
                                                return(Error(Loc.Dic.error_no_permission));
                                            }
                                        }
                                        else
                                        {
                                            return(Error(Loc.Dic.error_allocations_get_error));
                                        }
                                    }
                }
                else
                {
                    return(Error(ModelState));
                }
            }
            else
            {
                return(Error(Loc.Dic.error_no_permission));
            }
        }
        public ActionResult Create(Budgets_Allocations Budgets_Allocations, int id = 0)
        {
            return(Error(Loc.Dic.error_no_permission));

            if (Authorized(RoleType.SystemManager))
            {
                if (ModelState.IsValid)
                {
                    Budget           budget;
                    Budgets_Incomes  income;
                    Budgets_Expenses expense;

                    using (BudgetsRepository budgetsRep = new BudgetsRepository(CurrentUser.CompanyId))
                        using (BudgetsIncomesRepository incomesRep = new BudgetsIncomesRepository())
                            using (BudgetsExpensesRepository expensesRep = new BudgetsExpensesRepository())
                                using (AllocationRepository allocationsRep = new AllocationRepository(CurrentUser.CompanyId))
                                {
                                    budget = budgetsRep.GetEntity(id);

                                    if (budget != null)
                                    {
                                        if (budget.CompanyId == CurrentUser.CompanyId)
                                        {
                                            income  = incomesRep.GetEntity(Budgets_Allocations.IncomeId.Value);
                                            expense = expensesRep.GetEntity(Budgets_Allocations.ExpenseId.Value);

                                            if (income != null && expense != null)
                                            {
                                                if (income.BudgetId == budget.Id && expense.BudgetId == budget.Id)
                                                {
                                                    decimal?allocatedToExpense;
                                                    decimal?allocatedToIncome;

                                                    allocatedToIncome = allocationsRep.GetList()
                                                                        .Where(x => x.IncomeId == income.Id)
                                                                        .Sum(allocation => (decimal?)allocation.CompanyId);       //.Sum(allocation => (decimal?)allocation.Amount);

                                                    if ((allocatedToIncome ?? 0) + Budgets_Allocations.CompanyId > income.Amount) //if ((allocatedToIncome ?? 0) + Budgets_Allocations.Amount > income.Amount)
                                                    {
                                                        return(Error(Loc.Dic.error_income_full_allocation));
                                                    }

                                                    allocatedToExpense = allocationsRep.GetList()
                                                                         .Where(x => x.ExpenseId == expense.Id)
                                                                         .Sum(allocation => (decimal?)allocation.CompanyId);        //.Sum(allocation => (decimal?)allocation.Amount);

                                                    if ((allocatedToExpense ?? 0) + Budgets_Allocations.CompanyId > expense.Amount) //if ((allocatedToExpense ?? 0) + Budgets_Allocations.Amount > expense.Amount)
                                                    {
                                                        return(Error(Loc.Dic.error_expenses_full_allocation));
                                                    }

                                                    Budgets_Allocations.CompanyId = CurrentUser.CompanyId;
                                                    Budgets_Allocations.BudgetId  = budget.Id;
                                                    Budgets_Allocations.CompanyId = CurrentUser.CompanyId;

                                                    if (allocationsRep.Create(Budgets_Allocations))
                                                    {
                                                        return(RedirectToAction("Index"));
                                                    }
                                                    else
                                                    {
                                                        return(Error(Loc.Dic.error_database_error));
                                                    }
                                                }
                                                else
                                                {
                                                    return(Error(Loc.Dic.error_invalid_form));
                                                }
                                            }
                                            else
                                            {
                                                return(Error(Loc.Dic.error_database_error));
                                            }
                                        }
                                        else
                                        {
                                            return(Error(Loc.Dic.error_no_permission));
                                        }
                                    }
                                    else
                                    {
                                        return(Error(Loc.Dic.error_database_error));
                                    }
                                }
                }
                else
                {
                    return(Error(ModelState));
                }
            }
            else
            {
                return(Error(Loc.Dic.error_no_permission));
            }
        }
Beispiel #4
0
        //public static string ImportYearBudget(Stream stream, int companyId, int budgetId)
        //{
        //    const int EXTERNALID = 0;
        //    const int NAME = 1;
        //    const int AMOUNT = 2;
        //    const int JANUARY = 1;
        //    const int FEBRUARY = 2;
        //    const int MONTHESINYEAR = 12;

        //    List<Budgets_Allocations> newAllocations = new List<Budgets_Allocations>();
        //    Dictionary<int, decimal> tempAmountList = new Dictionary<int, decimal>();

        //    byte[] fileBytes = new byte[stream.Length];
        //    stream.Read(fileBytes, 0, Convert.ToInt32(stream.Length));
        //    string fileContent = System.Text.Encoding.Default.GetString(fileBytes);
        //    string[] fileLines = fileContent.Split(new string[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries);
        //    int firstValuesLine = 0;
        //    bool noErros = true;
        //    string errorType = String.Empty;

        //    using (AllocationMonthsRepository allocationMonthRepository = new AllocationMonthsRepository())
        //    using (BudgetsRepository budgetsRepository = new BudgetsRepository())
        //    using (AllocationRepository allocationRep = new AllocationRepository())
        //    {
        //        for (int i = firstValuesLine; i < fileLines.Length; i++)
        //        {
        //            string[] lineValues = fileLines[i].Split('\t');
        //            for (int vIndex = 0; vIndex < lineValues.Length; vIndex++)
        //            {
        //                lineValues[vIndex] = lineValues[vIndex].Replace("\"", "");
        //            }
        //            if (!(int.Parse(lineValues[EXTERNALID]) > 0))
        //            {
        //                errorType = Loc.Dic.error_invalid_form;
        //                break;
        //            }
        //            if (lineValues[NAME] == null)
        //            {
        //                errorType = Loc.Dic.error_invalid_form;
        //                break;
        //            }
        //            if (!(decimal.Parse(lineValues[AMOUNT]) >= 0))
        //            {
        //                errorType = Loc.Dic.error_invalid_form;
        //                break;
        //            }

        //            Budget budget = budgetsRepository.GetList().SingleOrDefault(x => x.Id == budgetId);

        //            Budgets_Allocations newAllocation;

        //            if (lineValues[EXTERNALID].Length != 8 || lineValues[NAME].Length > 100)
        //                return Loc.Dic.Error_FileParseError;

        //            newAllocation = new Budgets_Allocations()
        //            {
        //                CompanyId = companyId,
        //                BudgetId = budget.Id,
        //                ExternalId = lineValues[EXTERNALID],
        //                Name = lineValues[NAME],
        //                CreationDate = DateTime.Now
        //            };

        //            if (allocationRep.GetList().SingleOrDefault(x => x.CompanyId == companyId && x.ExternalId == newAllocation.ExternalId && x.BudgetId == budgetId) == null)
        //            {
        //                allocationRep.Create(newAllocation);
        //                tempAmountList.Add(newAllocation.Id, decimal.Parse(lineValues[AMOUNT]));
        //            }
        //            else
        //            {
        //                Budgets_Allocations existingAllocation = allocationRep.GetList().SingleOrDefault(x => x.CompanyId == companyId && x.ExternalId == newAllocation.ExternalId && x.BudgetId == budgetId);

        //                existingAllocation.Name = newAllocation.Name;
        //                allocationRep.Update(existingAllocation);
        //                tempAmountList.Add(existingAllocation.Id, decimal.Parse(lineValues[AMOUNT]));
        //            }
        //        }

        //        List<Budgets_AllocationToMonth> toAddAllocationMonthList = new List<Budgets_AllocationToMonth>();
        //        foreach (var item in tempAmountList)
        //        {

        //            if (allocationMonthRepository.GetList().Where(x => x.AllocationId == item.Key).SingleOrDefault(x => x.MonthId == JANUARY) == null)
        //            {
        //                Budgets_AllocationToMonth toAddallocationMonth = new Budgets_AllocationToMonth();
        //                toAddallocationMonth.AllocationId = item.Key;
        //                toAddallocationMonth.MonthId = JANUARY;
        //                toAddallocationMonth.Amount = item.Value;
        //                toAddAllocationMonthList.Add(toAddallocationMonth);
        //            }
        //            else
        //            {
        //                Budgets_AllocationToMonth existingAllocationMonth = allocationMonthRepository.GetList().Where(x => x.AllocationId == item.Key).SingleOrDefault(x => x.MonthId == JANUARY);
        //                existingAllocationMonth.Amount = item.Value;
        //                allocationMonthRepository.Update(existingAllocationMonth);
        //            }
        //            for (int i = FEBRUARY; i <= MONTHESINYEAR; i++)
        //            {
        //                Budgets_AllocationToMonth toAddZeroallocationMonth = new Budgets_AllocationToMonth();
        //                toAddZeroallocationMonth.AllocationId = item.Key;
        //                toAddZeroallocationMonth.MonthId = i;
        //                toAddZeroallocationMonth.Amount = 0;
        //                toAddAllocationMonthList.Add(toAddZeroallocationMonth);
        //            }
        //        }
        //        allocationMonthRepository.AddList(toAddAllocationMonthList);
        //    }
        //    if (!noErros) return errorType;
        //    return "OK";
        //}
        public static string ImportBudget(Stream stream, int companyId, int budgetId, string budgetType)
        {
            bool   noErros   = true;
            string errorType = String.Empty;
            Budget budget;

            using (BudgetsRepository budgetsRepository = new BudgetsRepository(companyId))
            {
                budget = budgetsRepository.GetList().SingleOrDefault(x => x.Id == budgetId);
            }

            List <ImportedAllocation>        importedAllocations = new List <ImportedAllocation>();
            List <Budgets_Allocations>       newAllocations      = new List <Budgets_Allocations>();
            List <Budgets_AllocationToMonth> newAllocationMonths = new List <Budgets_AllocationToMonth>();

            byte[] fileBytes = new byte[stream.Length];
            stream.Read(fileBytes, 0, Convert.ToInt32(stream.Length));
            string fileContent = System.Text.Encoding.Default.GetString(fileBytes);

            string[] fileLines       = fileContent.Split(new string[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries);
            int      firstValuesLine = new int();

            if (!(budgetType == "Month" || budgetType == "Year"))
            {
                return(Loc.Dic.Error_no_budgetType);
            }

            if (budgetType == "Month")
            {
                firstValuesLine = 3;
            }
            else if (budgetType == "Year")
            {
                firstValuesLine = 0;
            }

            for (int i = firstValuesLine; i < fileLines.Length; i++)
            {
                string[] lineValues = fileLines[i].Split('\t');
                for (int vIndex = 0; vIndex < lineValues.Length; vIndex++)
                {
                    lineValues[vIndex] = lineValues[vIndex].Replace("\"", "");
                }

                Budgets_Allocations newAllocation;
                int sortingCode;

                if (lineValues[1].Length > 8 || lineValues[2].Length > 100)
                {
                    return(Loc.Dic.Error_FileParseError);
                }
                if (!int.TryParse(lineValues[0], out sortingCode))
                {
                    return(Loc.Dic.Error_FileParseError);
                }

                newAllocation = new Budgets_Allocations()
                {
                    SortingCode  = sortingCode,
                    ExternalId   = lineValues[1],
                    Name         = lineValues[2],
                    BudgetId     = budget.Id,
                    CompanyId    = companyId,
                    CreationDate = DateTime.Now,
                    IncomeId     = null,
                    ExpenseId    = null
                };

                List <Budgets_AllocationToMonth> allocationMonthes = new List <Budgets_AllocationToMonth>();
                for (int month = 1, valueIndex = 3; month <= 12; month++, valueIndex += 2)
                {
                    string monthAmountString = lineValues[valueIndex];
                    if (String.IsNullOrEmpty(monthAmountString))
                    {
                        monthAmountString = "0";
                    }

                    decimal amount;
                    if (!Decimal.TryParse(monthAmountString, out amount))
                    {
                        return(Loc.Dic.Error_FileParseError);
                    }

                    Budgets_AllocationToMonth newAllocationMonth = new Budgets_AllocationToMonth()
                    {
                        AllocationId = 0,
                        MonthId      = month,
                        Amount       = amount < 0 ? 0 : amount
                    };

                    allocationMonthes.Add(newAllocationMonth);
                }

                importedAllocations.Add(new ImportedAllocation()
                {
                    isExistingAllocation = false,
                    Allocation           = newAllocation,
                    AllocationMonthes    = allocationMonthes
                });
            }

            bool          amountIsInvalid = false;
            StringBuilder builder         = new StringBuilder();

            using (AllocationRepository allocationsRep = new AllocationRepository(companyId))
                using (AllocationMonthsRepository allocationMonthsRep = new AllocationMonthsRepository())
                    using (BudgetsRepository budgetsRep = new BudgetsRepository(companyId))
                    {
                        foreach (var item in importedAllocations)
                        {
                            Budgets_Allocations existingAllocation = allocationsRep.GetList().SingleOrDefault(x => x.CompanyId == companyId && x.ExternalId == item.Allocation.ExternalId && x.BudgetId == budgetId);
                            bool allocationExists = existingAllocation != null;

                            if (allocationExists)
                            {
                                item.isExistingAllocation = true;
                                existingAllocation.Name   = item.Allocation.Name;
                                item.Allocation           = existingAllocation;

                                foreach (var allocationMonth in item.AllocationMonthes)
                                {
                                    Budgets_AllocationToMonth existingMonth = existingAllocation.Budgets_AllocationToMonth.SingleOrDefault(x => x.MonthId == allocationMonth.MonthId);

                                    if (allocationMonth.Amount < existingMonth.Amount)
                                    {
                                        decimal totalUsed = existingMonth
                                                            .Budgets_Allocations
                                                            .Orders_OrderToAllocation
                                                            .Where(x => x.MonthId == existingMonth.MonthId && x.Order.StatusId >= (int)StatusType.PartiallyApproved)
                                                            .Sum(x => x.Amount);

                                        if (allocationMonth.Amount < totalUsed)
                                        {
                                            if (!amountIsInvalid)
                                            {
                                                amountIsInvalid = true;
                                                builder.AppendLine(Loc.Dic.error_imported_allocations_amount_is_used + ": ");
                                                builder.AppendLine();
                                            }
                                            builder.AppendLine(String.Format("{0} {1}-{2}: {3}: {4} > {5}: {6}", existingAllocation.DisplayName, Loc.Dic.Month, allocationMonth.MonthId, Loc.Dic.TheTotalUsed, totalUsed, Loc.Dic.TheNewAmount, allocationMonth.Amount));
                                        }
                                    }
                                }
                            }
                        }

                        if (amountIsInvalid)
                        {
                            return(builder.ToString());
                        }

                        List <Budgets_Allocations> existingAllocations;
                        List <Budgets_Allocations> allocationsToDelete = new List <Budgets_Allocations>();

                        budget = budgetsRep.GetList().SingleOrDefault(x => x.Id == budgetId);
                        existingAllocations = budget.Budgets_Allocations.ToList();

                        if (existingAllocations.Any())
                        {
                            foreach (var existingAllocation in existingAllocations)
                            {
                                if (!importedAllocations.Any(x => x.Allocation.ExternalId == existingAllocation.ExternalId))
                                {
                                    if (
                                        existingAllocation.Budgets_BasketsToAllocation.Any() ||
                                        existingAllocation.Orders_OrderToAllocation.Any()
                                        )
                                    {
                                        existingAllocation.IsCanceled = true;
                                    }
                                    else
                                    {
                                        allocationsToDelete.Add(existingAllocation);
                                    }
                                }
                            }

                            budgetsRep.Update(budget);

                            foreach (var item in allocationsToDelete)
                            {
                                allocationsRep.Delete(item.Id);
                            }
                        }

                        foreach (var item in importedAllocations)
                        {
                            if (!noErros)
                            {
                                break;
                            }

                            if (item.isExistingAllocation)
                            {
                                for (int month = 1, valueIndex = 3; month <= 12; month++, valueIndex += 2)
                                {
                                    //Budgets_AllocationToMonth UpdatedMonth = new Budgets_AllocationToMonth();
                                    Budgets_AllocationToMonth existingMonth = item.Allocation.Budgets_AllocationToMonth.SingleOrDefault(x => x.MonthId == month);
                                    Budgets_AllocationToMonth importedMonth = item.AllocationMonthes.Single(x => x.MonthId == month);

                                    existingMonth.Amount = importedMonth.Amount;

                                    //UpdatedMonth.Id = existingMonth.Id;
                                    //UpdatedMonth.AllocationId = existingMonth.AllocationId;
                                    //UpdatedMonth.MonthId = existingMonth.MonthId;
                                    //UpdatedMonth.Amount = importedMonth.Amount;

                                    //if (allocationMonthsRep.Update(UpdatedMonth) == null)
                                    //{
                                    //    noErros = false;
                                    //    errorType = Loc.Dic.error_database_error;
                                    //    break;
                                    //}
                                }

                                if (allocationsRep.Update(item.Allocation) == null)
                                {
                                    noErros   = false;
                                    errorType = Loc.Dic.error_database_error;
                                    break;
                                }
                            }
                            else
                            {
                                foreach (var allocationMonth in item.AllocationMonthes)
                                {
                                    item.Allocation.Budgets_AllocationToMonth.Add(allocationMonth);
                                }

                                if (!allocationsRep.Create(item.Allocation))
                                {
                                    noErros   = false;
                                    errorType = Loc.Dic.error_database_error;
                                    break;
                                }
                            }
                        }
                    }


            if (!noErros)
            {
                return(errorType);
            }

            return("OK");
        }