public static ShipZoneCollection LoadForCountry2(String countryCode)
        {
            ShipZoneCollection ShipZones = new ShipZoneCollection();
            //CREATE THE DYNAMIC SQL TO LOAD OBJECT
            StringBuilder selectQuery = new StringBuilder();

            selectQuery.Append("SELECT " + ShipZone.GetColumnNames("ac_ShipZones"));
            selectQuery.Append(" FROM ac_ShipZones LEFT JOIN ac_ShipZoneCountries ON ac_ShipZones.ShipZoneId = ac_ShipZoneCountries.ShipZoneId");
            selectQuery.Append(" WHERE StoreId = @storeId");
            selectQuery.Append(" AND (ac_ShipZoneCountries.CountryCode IS NULL OR ac_ShipZoneCountries.CountryCode = @CountryCode)");
            Database  database      = Token.Instance.Database;
            DbCommand selectCommand = database.GetSqlStringCommand(selectQuery.ToString());

            database.AddInParameter(selectCommand, "@countryCode", System.Data.DbType.String, countryCode);
            database.AddInParameter(selectCommand, "@storeId", System.Data.DbType.Int32, Token.Instance.StoreId);
            //EXECUTE THE COMMAND
            using (IDataReader dr = database.ExecuteReader(selectCommand))
            {
                while (dr.Read())
                {
                    ShipZone shipZone = new ShipZone();
                    ShipZone.LoadDataReader(shipZone, dr);
                    ShipZones.Add(shipZone);
                }
                dr.Close();
            }
            return(ShipZones);
        }
Exemplo n.º 2
0
        public static ShipZoneCollection LoadForTaxRule(Int32 taxRuleId, int maximumRows, int startRowIndex, string sortExpression)
        {
            //CREATE THE DYNAMIC SQL TO LOAD OBJECT
            StringBuilder selectQuery = new StringBuilder();

            selectQuery.Append("SELECT");
            if (maximumRows > 0)
            {
                selectQuery.Append(" TOP " + (startRowIndex + maximumRows).ToString());
            }
            selectQuery.Append(" " + ShipZone.GetColumnNames("ac_ShipZones"));
            selectQuery.Append(" FROM ac_ShipZones, ac_TaxRuleShipZones");
            selectQuery.Append(" WHERE ac_ShipZones.ShipZoneId = ac_TaxRuleShipZones.ShipZoneId");
            selectQuery.Append(" AND ac_TaxRuleShipZones.TaxRuleId = @taxRuleId");
            selectQuery.Append(" AND StoreId = @storeId");
            if (!string.IsNullOrEmpty(sortExpression))
            {
                selectQuery.Append(" ORDER BY " + sortExpression);
            }
            Database  database      = Token.Instance.Database;
            DbCommand selectCommand = database.GetSqlStringCommand(selectQuery.ToString());

            database.AddInParameter(selectCommand, "@taxRuleId", System.Data.DbType.Int32, taxRuleId);
            database.AddInParameter(selectCommand, "@storeId", System.Data.DbType.Int32, Token.Instance.StoreId);
            //EXECUTE THE COMMAND
            ShipZoneCollection results = new ShipZoneCollection();
            int thisIndex = 0;
            int rowCount  = 0;

            using (IDataReader dr = database.ExecuteReader(selectCommand))
            {
                while (dr.Read() && ((maximumRows < 1) || (rowCount < maximumRows)))
                {
                    if (thisIndex >= startRowIndex)
                    {
                        ShipZone shipZone = new ShipZone();
                        ShipZone.LoadDataReader(shipZone, dr);
                        results.Add(shipZone);
                        rowCount++;
                    }
                    thisIndex++;
                }
                dr.Close();
            }
            return(results);
        }
Exemplo n.º 3
0
        public static ShipZoneCollection  LoadForCriteria(string sqlCriteria, int maximumRows, int startRowIndex, string sortExpression)
        {
            //CREATE THE DYNAMIC SQL TO LOAD OBJECT
            StringBuilder selectQuery = new StringBuilder();

            selectQuery.Append("SELECT");
            if (maximumRows > 0)
            {
                selectQuery.Append(" TOP " + (startRowIndex + maximumRows).ToString());
            }
            selectQuery.Append(" " + ShipZone.GetColumnNames(string.Empty));
            selectQuery.Append(" FROM ac_ShipZones");
            string whereClause = string.IsNullOrEmpty(sqlCriteria) ? string.Empty : " WHERE " + sqlCriteria;

            selectQuery.Append(whereClause);
            if (!string.IsNullOrEmpty(sortExpression))
            {
                selectQuery.Append(" ORDER BY " + sortExpression);
            }
            Database  database      = Token.Instance.Database;
            DbCommand selectCommand = database.GetSqlStringCommand(selectQuery.ToString());
            //EXECUTE THE COMMAND
            ShipZoneCollection results = new ShipZoneCollection();
            int thisIndex = 0;
            int rowCount  = 0;

            using (IDataReader dr = database.ExecuteReader(selectCommand))
            {
                while (dr.Read() && ((maximumRows < 1) || (rowCount < maximumRows)))
                {
                    if (thisIndex >= startRowIndex)
                    {
                        ShipZone shipZone = new ShipZone();
                        ShipZone.LoadDataReader(shipZone, dr);
                        results.Add(shipZone);
                        rowCount++;
                    }
                    thisIndex++;
                }
                dr.Close();
            }
            return(results);
        }
        /// <summary>
        /// Loads a collection of ShipZone objects for the given address
        /// </summary>
        /// <param name="countryCode">The country code; this value is required</param>
        /// <param name="provinceId">The ID for the province, or 0 if none</param>
        /// <param name="postalCode">The postal code or empty string if none</param>
        /// <returns>A collection of ShipZone objects for the given address</returns>
        public static ShipZoneCollection LoadForAddress(string countryCode, int provinceId, string postalCode)
        {
            // VALIDATE INPUT
            if (string.IsNullOrEmpty(countryCode))
            {
                throw new ArgumentNullException("countryCode");
            }

            // LOAD UP ANY SHIPZONES THAT MATCH THE COUNTRY AND PROVINCE FILTERS
            // BUILD THE SELECT STATEMENT
            StringBuilder selectSQL = new StringBuilder();

            selectSQL.Append("SELECT " + ShipZone.GetColumnNames(string.Empty) + @" FROM ac_ShipZones
WHERE StoreId = @storeId
AND (CountryRuleId = 0
OR (CountryRuleId = 1 AND ShipZoneId IN (SELECT ShipZoneId FROM
ac_ShipZoneCountries WHERE CountryCode = @countryCode))
OR (CountryRuleId = 2 AND ShipZoneId NOT IN (SELECT ShipZoneId FROM
ac_ShipZoneCountries WHERE CountryCode = @countryCode)))
AND (ProvinceRuleId = 0
OR (ProvinceRuleId = 1 AND ShipZoneId IN (SELECT ShipZoneId FROM
ac_ShipZoneProvinces WHERE ProvinceId = @provinceId))
OR (ProvinceRuleId = 2 AND ShipZoneId NOT IN (SELECT ShipZoneId FROM
ac_ShipZoneProvinces WHERE ProvinceId = @provinceId)))");

            // DETERMINE WHETHER A POSTAL CODE IS PROVIDED FOR THE ADDRESS
            if (string.IsNullOrEmpty(postalCode))
            {
                // NO POSTAL CODE IS PROVIDED, ELIMINATE SHIPZONES THAT CANNOT BE MATCHED
                selectSQL.Append("AND ((PostalCodeFilter IS NULL AND UsePCPM = 0) OR UsePCPM = 1)");
            }
            else
            {
                // POSTAL CODE IS PROVIDED, ONLY INCLUDE SHIPZONES THAT MAY BE MATCHED
                selectSQL.Append(@"AND (((PostalCodeFilter IS NULL OR PostalCodeFilter = @postalCode)
AND (ExcludePostalCodeFilter IS NULL OR ExcludePostalCodeFilter <> @postalCode)
AND UsePCPM = 0) OR UsePCPM = 1)");
            }

            // CREATE COMMAND AND POPULATE PARAMETERS
            Database  database      = Token.Instance.Database;
            DbCommand selectCommand = database.GetSqlStringCommand(string.Format(selectSQL.ToString(), countryCode, provinceId, postalCode));

            database.AddInParameter(selectCommand, "@storeId", DbType.Int32, Token.Instance.StoreId);
            database.AddInParameter(selectCommand, "@countryCode", DbType.String, countryCode);
            database.AddInParameter(selectCommand, "@provinceId", DbType.Int32, provinceId);
            if (!string.IsNullOrEmpty(postalCode))
            {
                database.AddInParameter(selectCommand, "@postalCode", DbType.String, postalCode);
            }

            // EXECUTE THE COMMAND
            ShipZoneCollection shipZones = new ShipZoneCollection();

            using (IDataReader dr = database.ExecuteReader(selectCommand))
            {
                // LOOP THE QUERY RESULTS
                while (dr.Read())
                {
                    // CONVERT QUERY RECORD TO SHIPZONE OBJECT
                    ShipZone shipZone = new ShipZone();
                    ShipZone.LoadDataReader(shipZone, dr);
                    // IF POSTAL CODE PATTERN MATCHING (PCPM) IS NOT REQUIRED
                    // OR IF THE POSTAL CODE MATCHES THE PATTERN, THIS SHIP ZONE APPLIES TO THE ADDRESS
                    if (!shipZone.UsePCPM || shipZone.IncludesPostalCode(postalCode))
                    {
                        shipZones.Add(shipZone);
                    }
                }
                dr.Close();
            }

            // RETURN THE SHIPZONES THAT APPLY TO THIS ADDRESS
            return(shipZones);
        }
        /// <summary>
        /// Loads a collection of ShipMethod objects for given BasketShipment
        /// </summary>
        /// <param name="shipment">BasketShipment to load the ship methods for</param>
        /// <returns>A collection of ShipMethod objects for given BasketShipment</returns>
        public static ShipMethodCollection LoadForShipment(IShipment shipment)
        {
            //GET ALL SHIP METHODS THAT CAN APPLY TO THIS SHIPMENT
            ShipMethodCollection shipMethodCollection = new ShipMethodCollection();

            //FIRST DETERMINE THE SHIP ZONE(S) FOR THE SHIPMENT
            ShipZoneCollection shipmentZoneCollection = shipment.ShipZones;
            //BUILD A LIST OF ZONEIDS FOR QUERY CRITERIA

            //NOW QUERY ANY SHIP METHODS THAT CAN SHIP FROM THIS WAREHOUSE TO ANY ZONE OR ONE OF THE ASSOCIATED ZONES
            //CREATE THE DYNAMIC SQL TO LOAD OBJECT
            StringBuilder selectQuery = new StringBuilder();

            selectQuery.Append("SELECT DISTINCT " + ShipMethod.GetColumnNames("ac_ShipMethods"));
            selectQuery.Append(" FROM ((ac_ShipMethods LEFT JOIN ac_ShipMethodWarehouses ON ac_ShipMethods.ShipMethodId = ac_ShipMethodWarehouses.ShipMethodId)");
            selectQuery.Append(" LEFT JOIN ac_ShipMethodShipZones ON ac_ShipMethods.ShipMethodId = ac_ShipMethodShipZones.ShipMethodId)");
            selectQuery.Append(" LEFT JOIN ac_ShipMethodGroups ON ac_ShipMethods.ShipMethodId = ac_ShipMethodGroups.ShipMethodId");
            selectQuery.Append(" WHERE StoreId = @storeId");
            //PROCESS MINPURCHASE EXCLUSION
            selectQuery.Append(" AND MinPurchase <= @shipmentValue");
            //PROCESS WAREHOUSE EXCLUSION
            selectQuery.Append(" AND (ac_ShipMethodWarehouses.WarehouseId IS NULL OR ac_ShipMethodWarehouses.WarehouseId = @warehouseId)");
            //PROCESS SHIPZONE EXCLUSION
            selectQuery.Append(" AND (ac_ShipMethodShipZones.ShipZoneId IS NULL");
            for (int i = 0; i < shipmentZoneCollection.Count; i++)
            {
                selectQuery.Append(" OR ac_ShipMethodShipZones.ShipZoneId = @shipZoneId" + i.ToString());
            }
            selectQuery.Append(")");

            //PROCESS GROUP EXCLUSION
            selectQuery.Append(" AND (ac_ShipMethodGroups.GroupId IS NULL");
            User user = UserDataSource.LoadForShipment(shipment);

            if (user != null)
            {
                for (int i = 0; i < user.UserGroups.Count; i++)
                {
                    selectQuery.Append(" OR ac_ShipMethodGroups.GroupId = @groupId" + i.ToString());
                }
            }
            selectQuery.Append(")");
            //ORDER ACCORDING TO MERCHANT RULES
            //selectQuery.Append(" ORDER BY ac_ShipMethods.OrderBy");


            Database  database      = Token.Instance.Database;
            DbCommand selectCommand = database.GetSqlStringCommand(selectQuery.ToString());

            database.AddInParameter(selectCommand, "@storeId", System.Data.DbType.Int32, Token.Instance.StoreId);
            //ADD IN MINPURCHASE PARAMETER
            database.AddInParameter(selectCommand, "@shipmentValue", System.Data.DbType.Decimal, shipment.GetItems().TotalProductPrice());
            //ADD IN WAREHOUSE PARAMETER
            database.AddInParameter(selectCommand, "@warehouseId", System.Data.DbType.Int32, shipment.WarehouseId);
            //ADD IN NUMBERED ZONE PARAMETERS
            for (int i = 0; i < shipmentZoneCollection.Count; i++)
            {
                database.AddInParameter(selectCommand, "@shipZoneId" + i.ToString(), System.Data.DbType.Int32, shipmentZoneCollection[i].ShipZoneId);
            }
            //ADD IN NUMBERED GROUP PARAMETERS
            for (int i = 0; i < user.UserGroups.Count; i++)
            {
                database.AddInParameter(selectCommand, "@groupId" + i.ToString(), System.Data.DbType.Int32, user.UserGroups[i].GroupId);
            }
            //EXECUTE THE COMMAND
            using (IDataReader dr = database.ExecuteReader(selectCommand))
            {
                while (dr.Read())
                {
                    ShipMethod shipMethod = new ShipMethod();
                    ShipMethod.LoadDataReader(shipMethod, dr);
                    shipMethodCollection.Add(shipMethod);
                }
                dr.Close();
            }
            //SORT THE ITEMS (NOT DONE IN QUERY BECAUSE OF DISTINCT CLAUSE)
            shipMethodCollection.Sort("OrderBy");
            return(shipMethodCollection);
        }