private List <SavingEvent> PostingEndOfYear(DateTime pDate, User pUser)
        {
            DateTime           lastPostingDate = GetLastPostingDate();
            List <SavingEvent> events          = new List <SavingEvent>();

            while (DateCalculationStrategy.DateCalculationYearly(lastPostingDate, pDate))
            {
                lastPostingDate = lastPostingDate.AddYears(1);

                events.AddRange(AddSavingEvent(CalculateInterest(new DateTime(lastPostingDate.Year, 01, 01,
                                                                              DateTime.Now.Hour, DateTime.Now.Minute, DateTime.Now.Second), pUser)));
                events.AddRange(AddSavingEvent(PostingInterests(new DateTime(lastPostingDate.Year, 01, 01,
                                                                             DateTime.Now.Hour, DateTime.Now.Minute, DateTime.Now.Second), pUser)));
            }

            events.AddRange(AddSavingEvent(CalculateInterest(pDate, pUser)));
            return(events);
        }
Exemple #2
0
        public List <SavingInterestsPostingEvent> PostingInterests(DateTime postingDate)
        {
            List <SavingInterestsPostingEvent> list = new List <SavingInterestsPostingEvent>();

            DateTime lastPostingDate = _saving.GetLastPostingDate();

            while (DateCalculationStrategy.DateCalculationYearly(lastPostingDate, postingDate))
            {
                DateTime currentPostingDate = new DateTime(lastPostingDate.AddYears(1).Year, 01, 01, DateTime.Now.Hour, DateTime.Now.Minute, DateTime.Now.Second);

                OCurrency interestsToPost = 0;
                foreach (SavingEvent savEvent in _saving.Events)
                {
                    if (savEvent is SavingInterestsAccrualEvent &&
                        savEvent.Date <= currentPostingDate &&
                        savEvent.Date > lastPostingDate)
                    {
                        interestsToPost += savEvent.Amount.Value;
                    }
                }

                list.Add(new SavingInterestsPostingEvent
                {
                    Date        = currentPostingDate,
                    Amount      = interestsToPost,
                    Description = string.Format("Posting interests for period : {0:d} to {1:d} : {2}", lastPostingDate, currentPostingDate, _saving.Code),
                    User        = _user,
                    Cancelable  = true,
                    ProductType = _saving.Product.GetType(),
                    Branch      = _saving.Branch,
                    Currency    = _saving.Product.Currency,
                    ContracId   = _saving.Id
                });

                lastPostingDate = lastPostingDate.AddYears(1);
            }

            return(list);
        }