public ActionResult NewShippingAddress(CheckoutShippingAddressModel model) { //validation var cart = _workContext.CurrentCustomer.ShoppingCartItems .Where(sci => sci.ShoppingCartType == ShoppingCartType.ShoppingCart) .Where(sci => sci.StoreId == _storeContext.CurrentStore.Id) .ToList(); if (cart.Count == 0) return RedirectToRoute("ShoppingCart"); if (UseOnePageCheckout()) return RedirectToRoute("CheckoutOnePage"); if ((_workContext.CurrentCustomer.IsGuest() && !_orderSettings.AnonymousCheckoutAllowed)) return new HttpUnauthorizedResult(); if (!cart.RequiresShipping()) { _workContext.CurrentCustomer.ShippingAddress = null; _customerService.UpdateCustomer(_workContext.CurrentCustomer); return RedirectToRoute("CheckoutShippingMethod"); } if (ModelState.IsValid) { var address = model.NewAddress.ToEntity(); address.CreatedOnUtc = DateTime.UtcNow; //some validation if (address.CountryId == 0) address.CountryId = null; if (address.StateProvinceId == 0) address.StateProvinceId = null; _workContext.CurrentCustomer.Addresses.Add(address); _workContext.CurrentCustomer.ShippingAddress = address; _customerService.UpdateCustomer(_workContext.CurrentCustomer); return RedirectToRoute("CheckoutShippingMethod"); } //If we got this far, something failed, redisplay form model = PrepareShippingAddressModel(model.NewAddress.CountryId); return View(model); }
public ActionResult OpcSaveShipping(FormCollection form) { try { //validation var cart = _workContext.CurrentCustomer.ShoppingCartItems .Where(sci => sci.ShoppingCartType == ShoppingCartType.ShoppingCart) .Where(sci => sci.StoreId == _storeContext.CurrentStore.Id) .ToList(); if (cart.Count == 0) throw new Exception("Your cart is empty"); if (!UseOnePageCheckout()) throw new Exception("One page checkout is disabled"); if ((_workContext.CurrentCustomer.IsGuest() && !_orderSettings.AnonymousCheckoutAllowed)) throw new Exception("Anonymous checkout is not allowed"); if (!cart.RequiresShipping()) throw new Exception("Shipping is not required"); int shippingAddressId = 0; int.TryParse(form["shipping_address_id"], out shippingAddressId); if (shippingAddressId > 0) { //existing address var address = _workContext.CurrentCustomer.Addresses.FirstOrDefault(a => a.Id == shippingAddressId); if (address == null) throw new Exception("Address can't be loaded"); _workContext.CurrentCustomer.ShippingAddress = address; _customerService.UpdateCustomer(_workContext.CurrentCustomer); } else { //new address var model = new CheckoutShippingAddressModel(); TryUpdateModel(model.NewAddress, "ShippingNewAddress"); //validate model TryValidateModel(model.NewAddress); if (!ModelState.IsValid) { //model is not valid. redisplay the form with errors var shippingAddressModel = PrepareShippingAddressModel(model.NewAddress.CountryId); shippingAddressModel.NewAddressPreselected = true; return Json(new { update_section = new UpdateSectionJsonModel() { name = "shipping", html = this.RenderPartialViewToString("OpcShippingAddress", shippingAddressModel) } }); } //try to find an address with the same values (don't duplicate records) var address = _workContext.CurrentCustomer.Addresses.ToList().FindAddress( model.NewAddress.FirstName, model.NewAddress.LastName, model.NewAddress.PhoneNumber, model.NewAddress.Email, model.NewAddress.FaxNumber, model.NewAddress.Company, model.NewAddress.Address1, model.NewAddress.Address2, model.NewAddress.City, model.NewAddress.StateProvinceId, model.NewAddress.ZipPostalCode, model.NewAddress.CountryId); if (address == null) { address = model.NewAddress.ToEntity(); address.CreatedOnUtc = DateTime.UtcNow; //little hack here (TODO: find a better solution) //EF does not load navigation properties for newly created entities (such as this "Address"). //we have to load them manually //otherwise, "Country" property of "Address" entity will be null in shipping rate computation methods if (address.CountryId.HasValue) address.Country = _countryService.GetCountryById(address.CountryId.Value); if (address.StateProvinceId.HasValue) address.StateProvince = _stateProvinceService.GetStateProvinceById(address.StateProvinceId.Value); //other null validations if (address.CountryId == 0) address.CountryId = null; if (address.StateProvinceId == 0) address.StateProvinceId = null; _workContext.CurrentCustomer.Addresses.Add(address); } _workContext.CurrentCustomer.ShippingAddress = address; _customerService.UpdateCustomer(_workContext.CurrentCustomer); } var shippingMethodModel = PrepareShippingMethodModel(cart); return Json(new { update_section = new UpdateSectionJsonModel() { name = "shipping-method", html = this.RenderPartialViewToString("OpcShippingMethods", shippingMethodModel) }, goto_section = "shipping_method" }); } catch (Exception exc) { _logger.Warning(exc.Message, exc, _workContext.CurrentCustomer); return Json(new { error = 1, message = exc.Message }); } }
public ActionResult OpcSaveShipping(FormCollection form) { try { //validation var cart = _workContext.CurrentCustomer.ShoppingCartItems.Where(sci => sci.ShoppingCartType == ShoppingCartType.ShoppingCart).ToList(); if (cart.Count == 0) throw new Exception("Your cart is empty"); if (!_orderSettings.OnePageCheckoutEnabled) throw new Exception("One page checkout is disabled"); if ((_workContext.CurrentCustomer.IsGuest() && !_orderSettings.AnonymousCheckoutAllowed)) throw new Exception("Anonymous checkout is not allowed"); if (!cart.RequiresShipping()) throw new Exception("Shipping is not required"); int shippingAddressId = 0; int.TryParse(form["shipping_address_id"], out shippingAddressId); if (shippingAddressId > 0) { //existing address var address = _workContext.CurrentCustomer.Addresses.Where(a => a.Id == shippingAddressId).FirstOrDefault(); if (address == null) throw new Exception("Address can't be loaded"); _workContext.CurrentCustomer.SetShippingAddress(address); _customerService.UpdateCustomer(_workContext.CurrentCustomer); } else { //new address var model = new CheckoutShippingAddressModel(); TryUpdateModel(model.NewAddress, "ShippingNewAddress"); //validate model TryValidateModel(model.NewAddress); if (!ModelState.IsValid) { //model is not valid. redisplay the form with errors var shippingAddressModel = PrepareShippingAddressModel(model.NewAddress.CountryId); shippingAddressModel.NewAddressPreselected = true; return Json(new { update_section = new UpdateSectionJsonModel() { name = "shipping", html = RenderPartialViewToString("OpcShippingAddress", shippingAddressModel) } }); } //try to find an address with the same values (don't duplicate records) var address = _workContext.CurrentCustomer.Addresses.ToList().FindAddress( model.NewAddress.FirstName, model.NewAddress.LastName, model.NewAddress.PhoneNumber, model.NewAddress.Email, model.NewAddress.FaxNumber, model.NewAddress.Company, model.NewAddress.Address1, model.NewAddress.Address2, model.NewAddress.City, model.NewAddress.StateProvinceId, model.NewAddress.ZipPostalCode, model.NewAddress.CountryId); if (address == null) { address = model.NewAddress.ToEntity(); address.CreatedOnUtc = DateTime.UtcNow; //some validation if (address.CountryId == 0) address.CountryId = null; if (address.StateProvinceId == 0) address.StateProvinceId = null; _workContext.CurrentCustomer.AddAddress(address); } _workContext.CurrentCustomer.SetShippingAddress(address); _customerService.UpdateCustomer(_workContext.CurrentCustomer); } var shippingMethodModel = PrepareShippingMethodModel(cart); return Json(new { update_section = new UpdateSectionJsonModel() { name = "shipping-method", html = RenderPartialViewToString("OpcShippingMethods", shippingMethodModel) }, goto_section = "shipping_method" }); } catch (Exception exc) { _logger.Warning(exc.Message, exc, _workContext.CurrentCustomer); return Json(new { error = 1, message = exc.Message }); } }
protected CheckoutShippingAddressModel PrepareShippingAddressModel(int? selectedCountryId = null) { var model = new CheckoutShippingAddressModel(); //existing addresses var addresses = _workContext.CurrentCustomer.Addresses.Where(a => a.Country == null || a.Country.AllowsShipping).ToList(); foreach (var address in addresses) { var addressModel = new AddressModel(); addressModel.PrepareModel(address, false, _addressSettings); model.ExistingAddresses.Add(addressModel); } //new address model.NewAddress.CountryId = selectedCountryId; model.NewAddress.PrepareModel(null, false, _addressSettings, _localizationService, _stateProvinceService, () => _countryService.GetAllCountriesForShipping()); return model; }
public ActionResult NewShippingAddress(CheckoutShippingAddressModel model) { //validation var cart = _workContext.CurrentCustomer.ShoppingCartItems .Where(sci => sci.ShoppingCartType == ShoppingCartType.ShoppingCart) .Where(sci => sci.StoreId == _storeContext.CurrentStore.Id) .ToList(); if (cart.Count == 0) return RedirectToRoute("ShoppingCart"); if (UseOnePageCheckout()) return RedirectToRoute("CheckoutOnePage"); if ((_workContext.CurrentCustomer.IsGuest() && !_orderSettings.AnonymousCheckoutAllowed)) return new HttpUnauthorizedResult(); if (!cart.RequiresShipping()) { _workContext.CurrentCustomer.ShippingAddress = null; _customerService.UpdateCustomer(_workContext.CurrentCustomer); return RedirectToRoute("CheckoutShippingMethod"); } if (ModelState.IsValid) { //try to find an address with the same values (don't duplicate records) var address = _workContext.CurrentCustomer.Addresses.ToList().FindAddress( model.NewAddress.FirstName, model.NewAddress.LastName, model.NewAddress.PhoneNumber, model.NewAddress.Email, model.NewAddress.FaxNumber, model.NewAddress.Company, model.NewAddress.Address1, model.NewAddress.Address2, model.NewAddress.City, model.NewAddress.StateProvinceId, model.NewAddress.ZipPostalCode, model.NewAddress.CountryId); if (address == null) { address = model.NewAddress.ToEntity(); address.CreatedOnUtc = DateTime.UtcNow; //some validation if (address.CountryId == 0) address.CountryId = null; if (address.StateProvinceId == 0) address.StateProvinceId = null; _workContext.CurrentCustomer.Addresses.Add(address); } _workContext.CurrentCustomer.ShippingAddress = address; _customerService.UpdateCustomer(_workContext.CurrentCustomer); return RedirectToRoute("CheckoutShippingMethod"); } //If we got this far, something failed, redisplay form model = PrepareShippingAddressModel(selectedCountryId: model.NewAddress.CountryId); return View(model); }
private CheckoutShippingAddressModel PrepareShippingAddressModel(int? selectedCountryId = null) { var model = new CheckoutShippingAddressModel(); //existing addresses var addresses = _workContext.CurrentCustomer.Addresses.Where(a => a.Country == null || a.Country.AllowsShipping).ToList(); foreach (var address in addresses) model.ExistingAddresses.Add(address.ToModel()); //new address model model.NewAddress = new AddressModel(); //countries model.NewAddress.AvailableCountries.Add(new SelectListItem() { Text = _localizationService.GetResource("Address.SelectCountry"), Value = "0" }); foreach (var c in _countryService.GetAllCountriesForShipping()) model.NewAddress.AvailableCountries.Add(new SelectListItem() { Text = c.GetLocalized(x => x.Name), Value = c.Id.ToString(), Selected = (selectedCountryId.HasValue && c.Id == selectedCountryId.Value) }); //states var states = selectedCountryId.HasValue ? _stateProvinceService.GetStateProvincesByCountryId(selectedCountryId.Value).ToList() : new List<StateProvince>(); if (states.Count > 0) { foreach (var s in states) model.NewAddress.AvailableStates.Add(new SelectListItem() { Text = s.GetLocalized(x => x.Name), Value = s.Id.ToString() }); } else model.NewAddress.AvailableStates.Add(new SelectListItem() { Text = _localizationService.GetResource("Address.OtherNonUS"), Value = "0" }); return model; }
public ActionResult NewShippingAddress(CheckoutShippingAddressModel model, FormCollection form) { //validation var cart = _workContext.CurrentCustomer.ShoppingCartItems .Where(sci => sci.ShoppingCartType == ShoppingCartType.ShoppingCart) .LimitPerStore(_storeContext.CurrentStore.Id) .ToList(); if (cart.Count == 0) return RedirectToRoute("ShoppingCart"); if (_orderSettings.OnePageCheckoutEnabled) return RedirectToRoute("CheckoutOnePage"); if ((_workContext.CurrentCustomer.IsGuest() && !_orderSettings.AnonymousCheckoutAllowed)) return new HttpUnauthorizedResult(); if (!cart.RequiresShipping()) { _workContext.CurrentCustomer.ShippingAddress = null; _customerService.UpdateCustomer(_workContext.CurrentCustomer); return RedirectToRoute("CheckoutShippingMethod"); } //Pick up in store? if (_shippingSettings.AllowPickUpInStore) { if (model.PickUpInStore) { //customer decided to pick up in store //no shipping address selected _workContext.CurrentCustomer.ShippingAddress = null; _customerService.UpdateCustomer(_workContext.CurrentCustomer); //set value indicating that "pick up in store" option has been chosen _genericAttributeService.SaveAttribute(_workContext.CurrentCustomer, SystemCustomerAttributeNames.SelectedPickUpInStore, true, _storeContext.CurrentStore.Id); //save "pick up in store" shipping method var pickUpInStoreShippingOption = new ShippingOption { Name = _localizationService.GetResource("Checkout.PickUpInStore.MethodName"), Rate = _shippingSettings.PickUpInStoreFee, Description = null, ShippingRateComputationMethodSystemName = null }; _genericAttributeService.SaveAttribute(_workContext.CurrentCustomer, SystemCustomerAttributeNames.SelectedShippingOption, pickUpInStoreShippingOption, _storeContext.CurrentStore.Id); //load next step return RedirectToRoute("CheckoutShippingMethod"); } //set value indicating that "pick up in store" option has not been chosen _genericAttributeService.SaveAttribute(_workContext.CurrentCustomer, SystemCustomerAttributeNames.SelectedPickUpInStore, false, _storeContext.CurrentStore.Id); } //custom address attributes var customAttributes = form.ParseCustomAddressAttributes(_addressAttributeParser, _addressAttributeService); var customAttributeWarnings = _addressAttributeParser.GetAttributeWarnings(customAttributes); foreach (var error in customAttributeWarnings) { ModelState.AddModelError("", error); } if (ModelState.IsValid) { //try to find an address with the same values (don't duplicate records) var address = _workContext.CurrentCustomer.Addresses.ToList().FindAddress( model.NewAddress.FirstName, model.NewAddress.LastName, model.NewAddress.PhoneNumber, model.NewAddress.Email, model.NewAddress.FaxNumber, model.NewAddress.Company, model.NewAddress.Address1, model.NewAddress.Address2, model.NewAddress.City, model.NewAddress.StateProvinceId, model.NewAddress.ZipPostalCode, model.NewAddress.CountryId, customAttributes); if (address == null) { address = model.NewAddress.ToEntity(); address.CustomAttributes = customAttributes; address.CreatedOnUtc = DateTime.UtcNow; //some validation if (address.CountryId == 0) address.CountryId = null; if (address.StateProvinceId == 0) address.StateProvinceId = null; _workContext.CurrentCustomer.Addresses.Add(address); } _workContext.CurrentCustomer.ShippingAddress = address; _customerService.UpdateCustomer(_workContext.CurrentCustomer); return RedirectToRoute("CheckoutShippingMethod"); } //If we got this far, something failed, redisplay form model = PrepareShippingAddressModel(selectedCountryId: model.NewAddress.CountryId); return View(model); }
protected CheckoutShippingAddressModel PrepareShippingAddressModel(int? selectedCountryId = null, bool prePopulateNewAddressWithCustomerFields = false) { var model = new CheckoutShippingAddressModel(); //existing addresses var addresses = _workContext.CurrentCustomer.Addresses //allow shipping .Where(a => a.Country == null || a.Country.AllowsShipping) //enabled for the current store .Where(a => a.Country == null || _storeMappingService.Authorize(a.Country)) .ToList(); foreach (var address in addresses) { var addressModel = new AddressModel(); addressModel.PrepareModel(address, false, _addressSettings); model.ExistingAddresses.Add(addressModel); } //new address model.NewAddress.CountryId = selectedCountryId; model.NewAddress.PrepareModel(null, false, _addressSettings, _localizationService, _stateProvinceService, () => _countryService.GetAllCountriesForShipping(), prePopulateNewAddressWithCustomerFields, _workContext.CurrentCustomer); return model; }
protected virtual CheckoutShippingAddressModel PrepareShippingAddressModel(int? selectedCountryId = null, bool prePopulateNewAddressWithCustomerFields = false) { var model = new CheckoutShippingAddressModel(); //allow pickup in store? model.AllowPickUpInStore = _shippingSettings.AllowPickUpInStore; if (model.AllowPickUpInStore && _shippingSettings.PickUpInStoreFee > 0) { decimal shippingTotal = _shippingSettings.PickUpInStoreFee; decimal rateBase = _taxService.GetShippingPrice(shippingTotal, _workContext.CurrentCustomer); decimal rate = _currencyService.ConvertFromPrimaryStoreCurrency(rateBase, _workContext.WorkingCurrency); model.PickUpInStoreFee = _priceFormatter.FormatShippingPrice(rate, true); } //existing addresses var addresses = _workContext.CurrentCustomer.Addresses //allow shipping .Where(a => a.Country == null || a.Country.AllowsShipping) //enabled for the current store .Where(a => a.Country == null || _storeMappingService.Authorize(a.Country)) .ToList(); foreach (var address in addresses) { var addressModel = new AddressModel(); addressModel.PrepareModel( address: address, excludeProperties: false, addressSettings: _addressSettings, addressAttributeFormatter: _addressAttributeFormatter); model.ExistingAddresses.Add(addressModel); } //new address model.NewAddress.CountryId = selectedCountryId; model.NewAddress.PrepareModel( address: null, excludeProperties: false, addressSettings: _addressSettings, localizationService: _localizationService, stateProvinceService: _stateProvinceService, addressAttributeService: _addressAttributeService, addressAttributeParser: _addressAttributeParser, loadCountries: () => _countryService.GetAllCountriesForShipping(), prePopulateWithCustomerFields: prePopulateNewAddressWithCustomerFields, customer: _workContext.CurrentCustomer); return model; }
public ActionResult OpcSaveShipping(FormCollection form) { try { //validation var cart = _workContext.CurrentCustomer.ShoppingCartItems .Where(sci => sci.ShoppingCartType == ShoppingCartType.ShoppingCart) .LimitPerStore(_storeContext.CurrentStore.Id) .ToList(); if (cart.Count == 0) throw new Exception("Your cart is empty"); if (!_orderSettings.OnePageCheckoutEnabled) throw new Exception("One page checkout is disabled"); if ((_workContext.CurrentCustomer.IsGuest() && !_orderSettings.AnonymousCheckoutAllowed)) throw new Exception("Anonymous checkout is not allowed"); if (!cart.RequiresShipping()) throw new Exception("Shipping is not required"); //Pick up in store? if (_shippingSettings.AllowPickUpInStore) { var model = new CheckoutShippingAddressModel(); TryUpdateModel(model); if (model.PickUpInStore) { //customer decided to pick up in store //no shipping address selected _workContext.CurrentCustomer.ShippingAddress = null; _customerService.UpdateCustomer(_workContext.CurrentCustomer); //set value indicating that "pick up in store" option has been chosen _genericAttributeService.SaveAttribute(_workContext.CurrentCustomer, SystemCustomerAttributeNames.SelectedPickUpInStore, true, _storeContext.CurrentStore.Id); //save "pick up in store" shipping method var pickUpInStoreShippingOption = new ShippingOption { Name = _localizationService.GetResource("Checkout.PickUpInStore.MethodName"), Rate = _shippingSettings.PickUpInStoreFee, Description = null, ShippingRateComputationMethodSystemName = null }; _genericAttributeService.SaveAttribute(_workContext.CurrentCustomer, SystemCustomerAttributeNames.SelectedShippingOption, pickUpInStoreShippingOption, _storeContext.CurrentStore.Id); //load next step return OpcLoadStepAfterShippingMethod(cart); } //set value indicating that "pick up in store" option has not been chosen _genericAttributeService.SaveAttribute(_workContext.CurrentCustomer, SystemCustomerAttributeNames.SelectedPickUpInStore, false, _storeContext.CurrentStore.Id); } int shippingAddressId; int.TryParse(form["shipping_address_id"], out shippingAddressId); if (shippingAddressId > 0) { //existing address var address = _workContext.CurrentCustomer.Addresses.FirstOrDefault(a => a.Id == shippingAddressId); if (address == null) throw new Exception("Address can't be loaded"); _workContext.CurrentCustomer.ShippingAddress = address; _customerService.UpdateCustomer(_workContext.CurrentCustomer); } else { //new address var model = new CheckoutShippingAddressModel(); TryUpdateModel(model.NewAddress, "ShippingNewAddress"); //custom address attributes var customAttributes = form.ParseCustomAddressAttributes(_addressAttributeParser, _addressAttributeService); var customAttributeWarnings = _addressAttributeParser.GetAttributeWarnings(customAttributes); foreach (var error in customAttributeWarnings) { ModelState.AddModelError("", error); } //validate model TryValidateModel(model.NewAddress); if (!ModelState.IsValid) { //model is not valid. redisplay the form with errors var shippingAddressModel = PrepareShippingAddressModel(selectedCountryId: model.NewAddress.CountryId); shippingAddressModel.NewAddressPreselected = true; return Json(new { update_section = new UpdateSectionJsonModel { name = "shipping", html = this.RenderPartialViewToString("OpcShippingAddress", shippingAddressModel) } }); } //try to find an address with the same values (don't duplicate records) var address = _workContext.CurrentCustomer.Addresses.ToList().FindAddress( model.NewAddress.FirstName, model.NewAddress.LastName, model.NewAddress.PhoneNumber, model.NewAddress.Email, model.NewAddress.FaxNumber, model.NewAddress.Company, model.NewAddress.Address1, model.NewAddress.Address2, model.NewAddress.City, model.NewAddress.StateProvinceId, model.NewAddress.ZipPostalCode, model.NewAddress.CountryId, customAttributes); if (address == null) { address = model.NewAddress.ToEntity(); address.CustomAttributes = customAttributes; address.CreatedOnUtc = DateTime.UtcNow; //little hack here (TODO: find a better solution) //EF does not load navigation properties for newly created entities (such as this "Address"). //we have to load them manually //otherwise, "Country" property of "Address" entity will be null in shipping rate computation methods if (address.CountryId.HasValue) address.Country = _countryService.GetCountryById(address.CountryId.Value); if (address.StateProvinceId.HasValue) address.StateProvince = _stateProvinceService.GetStateProvinceById(address.StateProvinceId.Value); //other null validations if (address.CountryId == 0) address.CountryId = null; if (address.StateProvinceId == 0) address.StateProvinceId = null; _workContext.CurrentCustomer.Addresses.Add(address); } _workContext.CurrentCustomer.ShippingAddress = address; _customerService.UpdateCustomer(_workContext.CurrentCustomer); } var shippingMethodModel = PrepareShippingMethodModel(cart, _workContext.CurrentCustomer.ShippingAddress); if (_shippingSettings.BypassShippingMethodSelectionIfOnlyOne && shippingMethodModel.ShippingMethods.Count == 1) { //if we have only one shipping method, then a customer doesn't have to choose a shipping method _genericAttributeService.SaveAttribute(_workContext.CurrentCustomer, SystemCustomerAttributeNames.SelectedShippingOption, shippingMethodModel.ShippingMethods.First().ShippingOption, _storeContext.CurrentStore.Id); //load next step return OpcLoadStepAfterShippingMethod(cart); } return Json(new { update_section = new UpdateSectionJsonModel { name = "shipping-method", html = this.RenderPartialViewToString("OpcShippingMethods", shippingMethodModel) }, goto_section = "shipping_method" }); } catch (Exception exc) { _logger.Warning(exc.Message, exc, _workContext.CurrentCustomer); return Json(new { error = 1, message = exc.Message }); } }
public ActionResult NewShippingAddress(CheckoutShippingAddressModel model, FormCollection form) { //validation var cart = _workContext.CurrentCustomer.ShoppingCartItems .Where(sci => sci.ShoppingCartType == ShoppingCartType.ShoppingCart) .LimitPerStore(_storeContext.CurrentStore.Id) .ToList(); if (!cart.Any()) return RedirectToRoute("ShoppingCart"); if (_orderSettings.OnePageCheckoutEnabled) return RedirectToRoute("CheckoutOnePage"); if (_workContext.CurrentCustomer.IsGuest() && !_orderSettings.AnonymousCheckoutAllowed) return new HttpUnauthorizedResult(); if (!cart.RequiresShipping()) { _workContext.CurrentCustomer.ShippingAddress = null; _customerService.UpdateCustomer(_workContext.CurrentCustomer); return RedirectToRoute("CheckoutShippingMethod"); } //pickup point if (_shippingSettings.AllowPickUpInStore) { if (model.PickUpInStore) { //no shipping address selected _workContext.CurrentCustomer.ShippingAddress = null; _customerService.UpdateCustomer(_workContext.CurrentCustomer); var pickupPoint = form["pickup-points-id"].Split(new[] { "___" }, StringSplitOptions.None); var pickupPoints = _shippingService .GetPickupPoints(_workContext.CurrentCustomer.BillingAddress, pickupPoint[1], _storeContext.CurrentStore.Id).PickupPoints.ToList(); var selectedPoint = pickupPoints.FirstOrDefault(x => x.Id.Equals(pickupPoint[0])); if (selectedPoint == null) return RedirectToRoute("CheckoutShippingAddress"); var pickUpInStoreShippingOption = new ShippingOption { Name = string.Format(_localizationService.GetResource("Checkout.PickupPoints.Name"), selectedPoint.Name), Rate = selectedPoint.PickupFee, Description = selectedPoint.Description, ShippingRateComputationMethodSystemName = selectedPoint.ProviderSystemName }; _genericAttributeService.SaveAttribute(_workContext.CurrentCustomer, SystemCustomerAttributeNames.SelectedShippingOption, pickUpInStoreShippingOption, _storeContext.CurrentStore.Id); _genericAttributeService.SaveAttribute(_workContext.CurrentCustomer, SystemCustomerAttributeNames.SelectedPickupPoint, selectedPoint, _storeContext.CurrentStore.Id); return RedirectToRoute("CheckoutPaymentMethod"); } //set value indicating that "pick up in store" option has not been chosen _genericAttributeService.SaveAttribute<PickupPoint>(_workContext.CurrentCustomer, SystemCustomerAttributeNames.SelectedPickupPoint, null, _storeContext.CurrentStore.Id); } //custom address attributes var customAttributes = form.ParseCustomAddressAttributes(_addressAttributeParser, _addressAttributeService); var customAttributeWarnings = _addressAttributeParser.GetAttributeWarnings(customAttributes); foreach (var error in customAttributeWarnings) { ModelState.AddModelError("", error); } if (ModelState.IsValid) { //try to find an address with the same values (don't duplicate records) var address = _workContext.CurrentCustomer.Addresses.ToList().FindAddress( model.NewAddress.FirstName, model.NewAddress.LastName, model.NewAddress.PhoneNumber, model.NewAddress.Email, model.NewAddress.FaxNumber, model.NewAddress.Company, model.NewAddress.Address1, model.NewAddress.Address2, model.NewAddress.City, model.NewAddress.StateProvinceId, model.NewAddress.ZipPostalCode, model.NewAddress.CountryId, customAttributes); if (address == null) { address = model.NewAddress.ToEntity(); address.CustomAttributes = customAttributes; address.CreatedOnUtc = DateTime.UtcNow; //some validation if (address.CountryId == 0) address.CountryId = null; if (address.StateProvinceId == 0) address.StateProvinceId = null; _workContext.CurrentCustomer.Addresses.Add(address); } _workContext.CurrentCustomer.ShippingAddress = address; _customerService.UpdateCustomer(_workContext.CurrentCustomer); return RedirectToRoute("CheckoutShippingMethod"); } //If we got this far, something failed, redisplay form model = PrepareShippingAddressModel( selectedCountryId: model.NewAddress.CountryId, overrideAttributesXml: customAttributes); return View(model); }
protected virtual CheckoutShippingAddressModel PrepareShippingAddressModel(int? selectedCountryId = null, bool prePopulateNewAddressWithCustomerFields = false, string overrideAttributesXml = "") { var model = new CheckoutShippingAddressModel(); //allow pickup in store? model.AllowPickUpInStore = _shippingSettings.AllowPickUpInStore; if (model.AllowPickUpInStore) { model.DisplayPickupPointsOnMap = _shippingSettings.DisplayPickupPointsOnMap; model.GoogleMapsApiKey = _shippingSettings.GoogleMapsApiKey; var pickupPointProviders = _shippingService.LoadActivePickupPointProviders(_storeContext.CurrentStore.Id); if (pickupPointProviders.Any()) { var pickupPointsResponse = _shippingService.GetPickupPoints(_workContext.CurrentCustomer.BillingAddress, null, _storeContext.CurrentStore.Id); if (pickupPointsResponse.Success) model.PickupPoints = pickupPointsResponse.PickupPoints.Select(x => { var country = _countryService.GetCountryByTwoLetterIsoCode(x.CountryCode); var pickupPointModel = new CheckoutPickupPointModel { Id = x.Id, Name = x.Name, Description = x.Description, ProviderSystemName = x.ProviderSystemName, Address = x.Address, City = x.City, CountryName = country != null ? country.Name : string.Empty, ZipPostalCode = x.ZipPostalCode, Latitude = x.Latitude, Longitude = x.Longitude, OpeningHours = x.OpeningHours }; if (x.PickupFee > 0) { var amount = _taxService.GetShippingPrice(x.PickupFee, _workContext.CurrentCustomer); amount = _currencyService.ConvertFromPrimaryStoreCurrency(amount, _workContext.WorkingCurrency); pickupPointModel.PickupFee = _priceFormatter.FormatShippingPrice(amount, true); } return pickupPointModel; }).ToList(); else foreach (var error in pickupPointsResponse.Errors) model.Warnings.Add(error); } //only available pickup points if (!_shippingService.LoadActiveShippingRateComputationMethods(_storeContext.CurrentStore.Id).Any()) { if (!pickupPointProviders.Any()) { model.Warnings.Add(_localizationService.GetResource("Checkout.ShippingIsNotAllowed")); model.Warnings.Add(_localizationService.GetResource("Checkout.PickupPoints.NotAvailable")); } model.PickUpInStoreOnly = true; model.PickUpInStore = true; return model; } } //existing addresses var addresses = _workContext.CurrentCustomer.Addresses .Where(a => a.Country == null || (//published a.Country.Published && //allow shipping a.Country.AllowsShipping && //enabled for the current store _storeMappingService.Authorize(a.Country))) .ToList(); foreach (var address in addresses) { var addressModel = new AddressModel(); addressModel.PrepareModel( address: address, excludeProperties: false, addressSettings: _addressSettings, addressAttributeFormatter: _addressAttributeFormatter); model.ExistingAddresses.Add(addressModel); } //new address model.NewAddress.CountryId = selectedCountryId; model.NewAddress.PrepareModel( address: null, excludeProperties: false, addressSettings: _addressSettings, localizationService: _localizationService, stateProvinceService: _stateProvinceService, addressAttributeService: _addressAttributeService, addressAttributeParser: _addressAttributeParser, loadCountries: () => _countryService.GetAllCountriesForShipping(_workContext.WorkingLanguage.Id), prePopulateWithCustomerFields: prePopulateNewAddressWithCustomerFields, customer: _workContext.CurrentCustomer, overrideAttributesXml: overrideAttributesXml); return model; }
public ActionResult NewShippingAddress(CheckoutShippingAddressModel model, FormCollection form) { bool errors = false; string errorMessage = ""; //validation var cart = _workContext.CurrentCustomer.ShoppingCartItems .Where(sci => sci.ShoppingCartType == ShoppingCartType.ShoppingCart) .LimitPerStore(_storeContext.CurrentStore.Id) .ToList(); if (cart.Count == 0) return RedirectToRoute("ShoppingCart"); if (_orderSettings.OnePageCheckoutEnabled) return RedirectToRoute("CheckoutOnePage"); if ((_workContext.CurrentCustomer.IsGuest() && !_orderSettings.AnonymousCheckoutAllowed)) return new HttpUnauthorizedResult(); if (!cart.RequiresShipping()) { _workContext.CurrentCustomer.ShippingAddress = null; _customerService.UpdateCustomer(_workContext.CurrentCustomer); //return RedirectToRoute("CheckoutShippingMethod"); return RedirectToRoute("CheckoutConfirmAddress"); } //Pick up in store? if (_shippingSettings.AllowPickUpInStore) { if (model.PickUpInStore) { //customer decided to pick up in store //no shipping address selected _workContext.CurrentCustomer.ShippingAddress = null; _customerService.UpdateCustomer(_workContext.CurrentCustomer); //set value indicating that "pick up in store" option has been chosen _genericAttributeService.SaveAttribute(_workContext.CurrentCustomer, SystemCustomerAttributeNames.SelectedPickUpInStore, true, _storeContext.CurrentStore.Id); //save "pick up in store" shipping method var pickUpInStoreShippingOption = new ShippingOption { Name = _localizationService.GetResource("Checkout.PickUpInStore.MethodName"), Rate = _shippingSettings.PickUpInStoreFee, Description = null, ShippingRateComputationMethodSystemName = null }; _genericAttributeService.SaveAttribute(_workContext.CurrentCustomer, SystemCustomerAttributeNames.SelectedShippingOption, pickUpInStoreShippingOption, _storeContext.CurrentStore.Id); //load next step //return RedirectToRoute("CheckoutShippingMethod"); return RedirectToRoute("CheckoutConfirmAddress"); } //set value indicating that "pick up in store" option has not been chosen _genericAttributeService.SaveAttribute(_workContext.CurrentCustomer, SystemCustomerAttributeNames.SelectedPickUpInStore, false, _storeContext.CurrentStore.Id); } //custom address attributes var customAttributes = form.ParseCustomAddressAttributes(_addressAttributeParser, _addressAttributeService); var customAttributeWarnings = _addressAttributeParser.GetAttributeWarnings(customAttributes); foreach (var error in customAttributeWarnings) { ModelState.AddModelError("", error); } if (ModelState.IsValid) { if (model.NewAddress.Id > 0) { var address = _workContext.CurrentCustomer.Addresses.FirstOrDefault(a => a.Id == model.NewAddress.Id); if (address != null) { var products = _workContext.CurrentCustomer.ShoppingCartItems.Where(x => x.ShoppingCartType == ShoppingCartType.ShoppingCart).ToList(); if (products != null) { //foreach (var p in products) { for (int i = 0; i < products.Count; i++) { var p = products[i]; if (p != null) { var city = _zipcodeService.GetZipcodeByName(model.NewAddress.ZipPostalCode.Trim()); if (city != null) { ProductCities productcity = null; foreach (var item in city) { productcity = _productCitiesService.GetProductsCitiesByProductId(p.ProductId).Where(x => x.CityID == item.CityID).FirstOrDefault(); if (productcity != null) break; } if (productcity == null) { errors = true; string msg = p.Product.Name + " is not available on your zip code."; errorMessage = msg; TempData["message"] = errorMessage; return RedirectToRoute("CheckoutShippingAddress"); } } else { errors = true; string msg = "Our services are not available on your zip code."; errorMessage = msg; TempData["message"] = errorMessage; return RedirectToRoute("CheckoutShippingAddress"); } } } } if (errors == false) { address = model.NewAddress.ToEntity(address); address.CustomAttributes = customAttributes; _addressService.UpdateAddress(address); _workContext.CurrentCustomer.ShippingAddress = address; _customerService.UpdateCustomer(_workContext.CurrentCustomer); return RedirectToRoute("CheckoutConfirmAddress"); } } } else { //try to find an address with the same values (don't duplicate records) var address = _workContext.CurrentCustomer.Addresses.ToList().FindAddress( model.NewAddress.FirstName, model.NewAddress.LastName, model.NewAddress.PhoneNumber, model.NewAddress.Email, model.NewAddress.FaxNumber, model.NewAddress.Company, model.NewAddress.Address1, model.NewAddress.Address2, model.NewAddress.City, model.NewAddress.StateProvinceId, model.NewAddress.ZipPostalCode, model.NewAddress.CountryId, customAttributes); if (address == null) { var products = _workContext.CurrentCustomer.ShoppingCartItems.Where(x => x.ShoppingCartType == ShoppingCartType.ShoppingCart).ToList(); if (products != null) { //foreach (var p in products) { for (int i = 0; i < products.Count; i++) { var p = products[i]; if (p != null) { var city = _zipcodeService.GetZipcodeByName(model.NewAddress.ZipPostalCode.Trim()); if (city != null) { ProductCities productcity = null; foreach (var item in city) { productcity = _productCitiesService.GetProductsCitiesByProductId(p.ProductId).Where(x => x.CityID == item.CityID).FirstOrDefault(); if (productcity != null) break; } if (productcity == null) { errors = true; string msg = p.Product.Name + " is not available on your zip code."; errorMessage = msg; TempData["message"] = errorMessage; return RedirectToRoute("CheckoutShippingAddress"); } } else { errors = true; string msg = "Our services are not available on your zip code."; errorMessage = msg; TempData["message"] = errorMessage; return RedirectToRoute("CheckoutShippingAddress"); } } } } if (errors == false) { address = model.NewAddress.ToEntity(); address.CustomAttributes = customAttributes; address.CreatedOnUtc = DateTime.UtcNow; //some validation if (address.CountryId == 0) address.CountryId = null; if (address.StateProvinceId == 0) address.StateProvinceId = null; _workContext.CurrentCustomer.Addresses.Add(address); } } else { var products = _workContext.CurrentCustomer.ShoppingCartItems.Where(x => x.ShoppingCartType == ShoppingCartType.ShoppingCart).ToList(); if (products != null) { //foreach (var p in products) { for (int i = 0; i < products.Count; i++) { var p = products[i]; if (p != null) { var city = _zipcodeService.GetZipcodeByName(model.NewAddress.ZipPostalCode.Trim()); if (city != null) { ProductCities productcity = null; foreach (var item in city) { productcity = _productCitiesService.GetProductsCitiesByProductId(p.ProductId).Where(x => x.CityID == item.CityID).FirstOrDefault(); if (productcity != null) break; } if (productcity == null) { errors = true; string msg = p.Product.Name + " is not available on your zip code."; errorMessage = msg; TempData["message"] = errorMessage; return RedirectToRoute("CheckoutShippingAddress"); } } else { errors = true; string msg = "Our services are not available on your zip code."; errorMessage = msg; TempData["message"] = errorMessage; return RedirectToRoute("CheckoutShippingAddress"); } } } } if (errors == false) { _workContext.CurrentCustomer.ShippingAddress = address; _customerService.UpdateCustomer(_workContext.CurrentCustomer); } //return RedirectToRoute("CheckoutShippingMethod"); return RedirectToRoute("CheckoutConfirmAddress"); } } } //If we got this far, something failed, redisplay form model = PrepareShippingAddressModel(selectedCountryId: model.NewAddress.CountryId); return View(model); }