Exemplo n.º 1
0
 public void StopProductTimer()
 {
     if (ProductTimerValue != null)
     {
         ProductTimerValue.Stop();
     }
 }
Exemplo n.º 2
0
        //Görünen fiyat
        public decimal GetVisiblePrice()
        {
            var result = Price + OrderTagValues.Where(x => x.AddTagPriceToOrderPrice).Sum(x => x.Price * x.Quantity);

            if (ProductTimerValue != null)
            {
                result = ProductTimerValue.GetPrice(result + GetOrderTagPrice());
            }
            return(result);
        }
Exemplo n.º 3
0
        //Vergi etkilememiş vergilendirilebilir fiyat
        public decimal GetTaxablePrice()
        {
            var result = Price + OrderTagValues.Where(x => !x.TaxFree).Sum(x => x.Price * x.Quantity);

            if (ProductTimerValue != null)
            {
                result = ProductTimerValue.GetPrice(result);
            }
            return(result);
        }
Exemplo n.º 4
0
 public void UpdateProductTimer(ProductTimer timer)
 {
     if (timer != null)
     {
         ProductTimerValue = new ProductTimerValue
         {
             ProductTimerId = timer.Id,
             MinTime        = timer.MinTime,
             PriceType      = timer.PriceType,
             PriceDuration  = timer.PriceDuration,
             TimeRounding   = timer.TimeRounding,
         };
         if (timer.StartTime > 0)
         {
             var now = DateTime.Today;
             ProductTimerValue.Start = new DateTime(now.Year, now.Month, now.Day, timer.StartTime, 0, 0);
             ProductTimerValue.End   = ProductTimerValue.Start;
         }
     }
     else
     {
         ProductTimerValue = null;
     }
 }