public static int GetTotalNumberOfDeliveredItems(this OrderShippingItem orderShippingItem)
        {
            if (orderShippingItem == null)
            {
                throw new ArgumentNullException("orderShippingItem");
            }

            var result    = 0;
            var shipments = orderShippingItem.OrderShipping.Shipments.ToList();

            for (int i = 0; i < shipments.Count; i++)
            {
                var shipment = shipments[i];
                if (!shipment.DeliveryDateUtc.HasValue)
                {
                    //not delivered yet
                    continue;
                }

                var si = shipment.ShipmentItems
                         .FirstOrDefault(x => x.OrderShippingItemId == orderShippingItem.Id);
                if (si != null)
                {
                    result += si.Quantity;
                }
            }

            return(result);
        }
Esempio n. 2
0
        protected virtual bool HasAccessToOrderShippingItem(OrderShippingItem orderShippingItem)
        {
            if (orderShippingItem == null)
            {
                throw new ArgumentNullException("orderShippingItem");
            }

            if (_workContext.CurrentVendor == null)
            {
                //not a vendor; has access
                return(true);
            }

            var vendorId = _workContext.CurrentVendor.Id;

            return(orderShippingItem.OrderItem.Product.VendorId == vendorId);
        }
        public static int GetTotalNumberOfItemsCanBeAddedToShipment(this OrderShippingItem orderShippingItem)
        {
            if (orderShippingItem == null)
            {
                throw new ArgumentNullException("orderShippingItem");
            }

            var totalInShipments = orderShippingItem.GetTotalNumberOfItemsInAllShipment();

            var qtyOrdered = orderShippingItem.Quantity;
            var qtyCanBeAddedToShipmentTotal = qtyOrdered - totalInShipments;

            if (qtyCanBeAddedToShipmentTotal < 0)
            {
                qtyCanBeAddedToShipmentTotal = 0;
            }

            return(qtyCanBeAddedToShipmentTotal);
        }
        public static int GetTotalNumberOfItemsInAllShipment(this OrderShippingItem orderShippingItem)
        {
            if (orderShippingItem == null)
            {
                throw new ArgumentNullException("orderShippingItem");
            }

            var totalInShipments = 0;
            var shipments        = orderShippingItem.OrderShipping.Shipments.ToList();

            for (int i = 0; i < shipments.Count; i++)
            {
                var shipment = shipments[i];
                var si       = shipment.ShipmentItems
                               .FirstOrDefault(x => x.OrderShippingItemId == orderShippingItem.Id);
                if (si != null)
                {
                    totalInShipments += si.Quantity;
                }
            }
            return(totalInShipments);
        }