本文整理汇总了C#中Nop.Admin.Models.Customers.CustomerModel类的典型用法代码示例。如果您正苦于以下问题:C# CustomerModel类的具体用法?C# CustomerModel怎么用?C# CustomerModel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CustomerModel类属于Nop.Admin.Models.Customers命名空间,在下文中一共展示了CustomerModel类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MarkVatNumberAsInvalid
public ActionResult MarkVatNumberAsInvalid(CustomerModel model)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCustomers))
return AccessDeniedView();
var customer = _customerService.GetCustomerById(model.Id);
if (customer == null)
//No customer found with the specified id
return RedirectToAction("List");
_genericAttributeService.SaveAttribute(customer,
SystemCustomerAttributeNames.VatNumberStatusId,
(int)VatNumberStatus.Invalid);
return RedirectToAction("Edit", customer.Id);
}
示例2: SendEmail
public ActionResult SendEmail(CustomerModel model)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCustomers))
return AccessDeniedView();
var customer = _customerService.GetCustomerById(model.Id);
if (customer == null)
//No customer found with the specified id
return RedirectToAction("List");
try
{
if (String.IsNullOrWhiteSpace(customer.Email))
throw new NopException("Customer email is empty");
if (!CommonHelper.IsValidEmail(customer.Email))
throw new NopException("Customer email is not valid");
if (String.IsNullOrWhiteSpace(model.SendEmail.Subject))
throw new NopException("Email subject is empty");
if (String.IsNullOrWhiteSpace(model.SendEmail.Body))
throw new NopException("Email body is empty");
var emailAccount = _emailAccountService.GetEmailAccountById(_emailAccountSettings.DefaultEmailAccountId);
if (emailAccount == null)
emailAccount = _emailAccountService.GetAllEmailAccounts().FirstOrDefault();
if (emailAccount == null)
throw new NopException("Email account can't be loaded");
var email = new QueuedEmail
{
Priority = 5,
EmailAccountId = emailAccount.Id,
FromName = emailAccount.DisplayName,
From = emailAccount.Email,
ToName = customer.GetFullName(),
To = customer.Email,
Subject = model.SendEmail.Subject,
Body = model.SendEmail.Body,
CreatedOnUtc = DateTime.UtcNow,
};
_queuedEmailService.InsertQueuedEmail(email);
SuccessNotification(_localizationService.GetResource("Admin.Customers.Customers.SendEmail.Queued"));
}
catch (Exception exc)
{
ErrorNotification(exc.Message);
}
return RedirectToAction("Edit", new { id = customer.Id });
}
示例3: Edit
public ActionResult Edit(CustomerModel model, bool continueEditing)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCustomers))
return AccessDeniedView();
var customer = _customerService.GetCustomerById(model.Id);
if (customer == null || customer.Deleted)
throw new ArgumentException("No customer found with the specified id");
if (ModelState.IsValid)
{
try
{
string prevVatNumber = customer.VatNumber;
customer.AdminComment = model.AdminComment;
customer.IsTaxExempt = model.IsTaxExempt;
customer.TimeZoneId = model.TimeZoneId;
customer.Active = model.Active;
//email
if (!String.IsNullOrWhiteSpace(model.Email))
{
_customerService.SetEmail(customer, model.Email);
}
else
{
customer.Email = model.Email;
}
//username
if (_customerSettings.UsernamesEnabled && _customerSettings.AllowUsersToChangeUsernames)
{
if (!String.IsNullOrWhiteSpace(model.Username))
{
_customerService.SetUsername(customer, model.Username);
}
else
{
customer.Username = model.Username;
}
}
//VAT number
if (_taxSettings.EuVatEnabled)
{
customer.VatNumber = model.VatNumber;
//set VAT number status
if (!String.IsNullOrEmpty(customer.VatNumber))
{
if (!customer.VatNumber.Equals(prevVatNumber, StringComparison.InvariantCultureIgnoreCase))
customer.VatNumberStatus = _taxService.GetVatNumberStatus(customer.VatNumber);
}
else
customer.VatNumberStatus = VatNumberStatus.Empty;
}
_customerService.UpdateCustomer(customer);
//form fields
if (_customerSettings.GenderEnabled)
_customerService.SaveCustomerAttribute(customer, SystemCustomerAttributeNames.Gender, model.Gender);
_customerService.SaveCustomerAttribute(customer, SystemCustomerAttributeNames.FirstName, model.FirstName);
_customerService.SaveCustomerAttribute(customer, SystemCustomerAttributeNames.LastName, model.LastName);
if (_customerSettings.DateOfBirthEnabled)
_customerService.SaveCustomerAttribute(customer, SystemCustomerAttributeNames.DateOfBirth, model.DateOfBirth);
if (_customerSettings.CompanyEnabled)
_customerService.SaveCustomerAttribute(customer, SystemCustomerAttributeNames.Company, model.Company);
if (_customerSettings.StreetAddressEnabled)
_customerService.SaveCustomerAttribute(customer, SystemCustomerAttributeNames.StreetAddress, model.StreetAddress);
if (_customerSettings.StreetAddress2Enabled)
_customerService.SaveCustomerAttribute(customer, SystemCustomerAttributeNames.StreetAddress2, model.StreetAddress2);
if (_customerSettings.ZipPostalCodeEnabled)
_customerService.SaveCustomerAttribute(customer, SystemCustomerAttributeNames.ZipPostalCode, model.ZipPostalCode);
if (_customerSettings.CityEnabled)
_customerService.SaveCustomerAttribute(customer, SystemCustomerAttributeNames.City, model.City);
if (_customerSettings.CountryEnabled)
_customerService.SaveCustomerAttribute(customer, SystemCustomerAttributeNames.CountryId, model.CountryId);
if (_customerSettings.CountryEnabled && _customerSettings.StateProvinceEnabled)
_customerService.SaveCustomerAttribute(customer, SystemCustomerAttributeNames.StateProvinceId, model.StateProvinceId);
if (_customerSettings.PhoneEnabled)
_customerService.SaveCustomerAttribute(customer, SystemCustomerAttributeNames.Phone, model.Phone);
if (_customerSettings.FaxEnabled)
_customerService.SaveCustomerAttribute(customer, SystemCustomerAttributeNames.Fax, model.Fax);
//customer roles
var allCustomerRoles = _customerService.GetAllCustomerRoles(true);
foreach (var customerRole in allCustomerRoles)
{
if (model.SelectedCustomerRoleIds != null && model.SelectedCustomerRoleIds.Contains(customerRole.Id))
{
//new role
if (customer.CustomerRoles.Where(cr => cr.Id == customerRole.Id).Count() == 0)
customer.CustomerRoles.Add(customerRole);
}
else
{
//removed role
if (customer.CustomerRoles.Where(cr => cr.Id == customerRole.Id).Count() > 0)
customer.CustomerRoles.Remove(customerRole);
}
}
//.........这里部分代码省略.........
示例4: ChangePassword
public ActionResult ChangePassword(CustomerModel model)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCustomers))
return AccessDeniedView();
var customer = _customerService.GetCustomerById(model.Id);
if (customer == null)
//No customer found with the specified id
return RedirectToAction("List");
if (ModelState.IsValid)
{
var changePassRequest = new ChangePasswordRequest(model.Email,
false, _customerSettings.DefaultPasswordFormat, model.Password);
var changePassResult = _customerRegistrationService.ChangePassword(changePassRequest);
if (changePassResult.Success)
SuccessNotification(_localizationService.GetResource("Admin.Customers.Customers.PasswordChanged"));
else
foreach (var error in changePassResult.Errors)
ErrorNotification(error);
}
return RedirectToAction("Edit", customer.Id);
}
示例5: Create
public ActionResult Create()
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCustomers))
return AccessDeniedView();
var model = new CustomerModel();
PrepareCustomerModel(model, null, false);
//default value
model.Active = true;
return View(model);
}
示例6: Edit
public ActionResult Edit(int id)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCustomers))
return AccessDeniedView();
var customer = _customerService.GetCustomerById(id);
if (customer == null || customer.Deleted)
//No customer found with the specified id
return RedirectToAction("List");
var model = new CustomerModel();
PrepareCustomerModel(model, customer, false);
return View(model);
}
示例7: ChangePassword
public ActionResult ChangePassword(CustomerModel model)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCustomers))
return AccessDeniedView();
var customer = _customerService.GetCustomerById(model.Id);
if (customer == null)
//No customer found with the specified id
return RedirectToAction("List");
//ensure that the current customer cannot change passwords of "Administrators" if he's not an admin himself
if (customer.IsAdmin() && !_workContext.CurrentCustomer.IsAdmin())
{
ErrorNotification(_localizationService.GetResource("Admin.Customers.Customers.OnlyAdminCanChangePassword"));
return RedirectToAction("Edit", new { id = customer.Id });
}
if (ModelState.IsValid)
{
var changePassRequest = new ChangePasswordRequest(model.Email,
false, _customerSettings.DefaultPasswordFormat, model.Password);
var changePassResult = _customerRegistrationService.ChangePassword(changePassRequest);
if (changePassResult.Success)
SuccessNotification(_localizationService.GetResource("Admin.Customers.Customers.PasswordChanged"));
else
foreach (var error in changePassResult.Errors)
ErrorNotification(error);
}
return RedirectToAction("Edit", new {id = customer.Id});
}
示例8: PrepareCustomerAttributeModel
protected virtual void PrepareCustomerAttributeModel(CustomerModel model, Customer customer)
{
var customerAttributes = _customerAttributeService.GetAllCustomerAttributes();
foreach (var attribute in customerAttributes)
{
var attributeModel = new CustomerModel.CustomerAttributeModel
{
Id = attribute.Id,
Name = attribute.Name,
IsRequired = attribute.IsRequired,
AttributeControlType = attribute.AttributeControlType,
};
if (attribute.ShouldHaveValues())
{
//values
var attributeValues = _customerAttributeService.GetCustomerAttributeValues(attribute.Id);
foreach (var attributeValue in attributeValues)
{
var attributeValueModel = new CustomerModel.CustomerAttributeValueModel
{
Id = attributeValue.Id,
Name = attributeValue.Name,
IsPreSelected = attributeValue.IsPreSelected
};
attributeModel.Values.Add(attributeValueModel);
}
}
//set already selected attributes
if (customer != null)
{
var selectedCustomerAttributes = customer.GetAttribute<string>(SystemCustomerAttributeNames.CustomCustomerAttributes, _genericAttributeService);
switch (attribute.AttributeControlType)
{
case AttributeControlType.DropdownList:
case AttributeControlType.RadioList:
case AttributeControlType.Checkboxes:
{
if (!String.IsNullOrEmpty(selectedCustomerAttributes))
{
//clear default selection
foreach (var item in attributeModel.Values)
item.IsPreSelected = false;
//select new values
var selectedValues = _customerAttributeParser.ParseCustomerAttributeValues(selectedCustomerAttributes);
foreach (var attributeValue in selectedValues)
foreach (var item in attributeModel.Values)
if (attributeValue.Id == item.Id)
item.IsPreSelected = true;
}
}
break;
case AttributeControlType.ReadonlyCheckboxes:
{
//do nothing
//values are already pre-set
}
break;
case AttributeControlType.TextBox:
case AttributeControlType.MultilineTextbox:
{
if (!String.IsNullOrEmpty(selectedCustomerAttributes))
{
var enteredText = _customerAttributeParser.ParseValues(selectedCustomerAttributes, attribute.Id);
if (enteredText.Count > 0)
attributeModel.DefaultValue = enteredText[0];
}
}
break;
case AttributeControlType.ColorSquares:
case AttributeControlType.Datepicker:
case AttributeControlType.FileUpload:
default:
//not supported attribute control types
break;
}
}
model.CustomerAttributes.Add(attributeModel);
}
}
示例9: Edit
public ActionResult Edit(int id)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCustomers))
return AccessDeniedView();
var customer = _customerService.GetCustomerById(id);
if (customer == null || customer.Deleted)
//No customer found with the specified id
return RedirectToAction("List");
var model = new CustomerModel();
model.Id = customer.Id;
model.Email = customer.Email;
model.Username = customer.Username;
//vendors
model.VendorId = customer.VendorId;
PrepareVendorsModel(model);
model.AdminComment = customer.AdminComment;
model.IsTaxExempt = customer.IsTaxExempt;
model.Active = customer.Active;
model.AffiliateId = customer.AffiliateId;
model.TimeZoneId = customer.GetAttribute<string>(SystemCustomerAttributeNames.TimeZoneId);
model.UsernamesEnabled = _customerSettings.UsernamesEnabled;
model.AllowUsersToChangeUsernames = _customerSettings.AllowUsersToChangeUsernames;
model.AllowCustomersToSetTimeZone = _dateTimeSettings.AllowCustomersToSetTimeZone;
foreach (var tzi in _dateTimeHelper.GetSystemTimeZones())
model.AvailableTimeZones.Add(new SelectListItem() { Text = tzi.DisplayName, Value = tzi.Id, Selected = (tzi.Id == model.TimeZoneId) });
model.DisplayVatNumber = _taxSettings.EuVatEnabled;
model.VatNumber = customer.GetAttribute<string>(SystemCustomerAttributeNames.VatNumber);
model.VatNumberStatusNote = ((VatNumberStatus)customer.GetAttribute<int>(SystemCustomerAttributeNames.VatNumberStatusId))
.GetLocalizedEnum(_localizationService, _workContext);
model.CreatedOn = _dateTimeHelper.ConvertToUserTime(customer.CreatedOnUtc, DateTimeKind.Utc);
model.LastActivityDate = _dateTimeHelper.ConvertToUserTime(customer.LastActivityDateUtc, DateTimeKind.Utc);
model.LastIpAddress = customer.LastIpAddress;
model.LastVisitedPage = customer.GetAttribute<string>(SystemCustomerAttributeNames.LastVisitedPage);
//form fields
model.FirstName = customer.GetAttribute<string>(SystemCustomerAttributeNames.FirstName);
model.LastName = customer.GetAttribute<string>(SystemCustomerAttributeNames.LastName);
model.Gender = customer.GetAttribute<string>(SystemCustomerAttributeNames.Gender);
model.DateOfBirth = customer.GetAttribute<DateTime?>(SystemCustomerAttributeNames.DateOfBirth);
model.Company = customer.GetAttribute<string>(SystemCustomerAttributeNames.Company);
model.StreetAddress = customer.GetAttribute<string>(SystemCustomerAttributeNames.StreetAddress);
model.StreetAddress2 = customer.GetAttribute<string>(SystemCustomerAttributeNames.StreetAddress2);
model.ZipPostalCode = customer.GetAttribute<string>(SystemCustomerAttributeNames.ZipPostalCode);
model.City = customer.GetAttribute<string>(SystemCustomerAttributeNames.City);
model.CountryId = customer.GetAttribute<int>(SystemCustomerAttributeNames.CountryId);
model.StateProvinceId = customer.GetAttribute<int>(SystemCustomerAttributeNames.StateProvinceId);
model.Phone = customer.GetAttribute<string>(SystemCustomerAttributeNames.Phone);
model.Fax = customer.GetAttribute<string>(SystemCustomerAttributeNames.Fax);
model.GenderEnabled = _customerSettings.GenderEnabled;
model.DateOfBirthEnabled = _customerSettings.DateOfBirthEnabled;
model.CompanyEnabled = _customerSettings.CompanyEnabled;
model.StreetAddressEnabled = _customerSettings.StreetAddressEnabled;
model.StreetAddress2Enabled = _customerSettings.StreetAddress2Enabled;
model.ZipPostalCodeEnabled = _customerSettings.ZipPostalCodeEnabled;
model.CityEnabled = _customerSettings.CityEnabled;
model.CountryEnabled = _customerSettings.CountryEnabled;
model.StateProvinceEnabled = _customerSettings.StateProvinceEnabled;
model.PhoneEnabled = _customerSettings.PhoneEnabled;
model.FaxEnabled = _customerSettings.FaxEnabled;
//countries and states
if (_customerSettings.CountryEnabled)
{
model.AvailableCountries.Add(new SelectListItem() { Text = _localizationService.GetResource("Admin.Address.SelectCountry"), Value = "0" });
foreach (var c in _countryService.GetAllCountries())
{
model.AvailableCountries.Add(new SelectListItem()
{
Text = c.Name,
Value = c.Id.ToString(),
Selected = c.Id == model.CountryId
});
}
if (_customerSettings.StateProvinceEnabled)
{
//states
var states = _stateProvinceService.GetStateProvincesByCountryId(model.CountryId).ToList();
if (states.Count > 0)
{
foreach (var s in states)
model.AvailableStates.Add(new SelectListItem() { Text = s.Name, Value = s.Id.ToString(), Selected = (s.Id == model.StateProvinceId) });
}
else
model.AvailableStates.Add(new SelectListItem() { Text = _localizationService.GetResource("Admin.Address.OtherNonUS"), Value = "0" });
}
}
//customer roles
model.AvailableCustomerRoles = _customerService
.GetAllCustomerRoles(true)
.Select(cr => cr.ToModel())
.ToList();
model.SelectedCustomerRoleIds = customer.CustomerRoles.Select(cr => cr.Id).ToArray();
model.AllowManagingCustomerRoles = _permissionService.Authorize(StandardPermissionProvider.ManageCustomerRoles);
//reward points gistory
//.........这里部分代码省略.........
示例10: Create
public ActionResult Create(CustomerModel model, bool continueEditing)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCustomers))
return AccessDeniedView();
if (!String.IsNullOrWhiteSpace(model.Email))
{
var cust2 = _customerService.GetCustomerByEmail(model.Email);
if (cust2 != null)
ModelState.AddModelError("", "Email is already registered");
}
if (!String.IsNullOrWhiteSpace(model.Username) & _customerSettings.UsernamesEnabled)
{
var cust2 = _customerService.GetCustomerByUsername(model.Username);
if (cust2 != null)
ModelState.AddModelError("", "Username is already registered");
}
//validate customer roles
var allCustomerRoles = _customerService.GetAllCustomerRoles(true);
var newCustomerRoles = new List<CustomerRole>();
foreach (var customerRole in allCustomerRoles)
if (model.SelectedCustomerRoleIds != null && model.SelectedCustomerRoleIds.Contains(customerRole.Id))
newCustomerRoles.Add(customerRole);
var customerRolesError = ValidateCustomerRoles(newCustomerRoles);
if (!String.IsNullOrEmpty(customerRolesError))
{
ModelState.AddModelError("", customerRolesError);
ErrorNotification(customerRolesError, false);
}
bool allowManagingCustomerRoles = _permissionService.Authorize(StandardPermissionProvider.ManageCustomerRoles);
if (ModelState.IsValid)
{
var customer = new Customer()
{
CustomerGuid = Guid.NewGuid(),
Email = model.Email,
Username = model.Username,
VendorId = model.VendorId,
AdminComment = model.AdminComment,
IsTaxExempt = model.IsTaxExempt,
Active = model.Active,
CreatedOnUtc = DateTime.UtcNow,
LastActivityDateUtc = DateTime.UtcNow,
};
_customerService.InsertCustomer(customer);
//form fields
if (_dateTimeSettings.AllowCustomersToSetTimeZone)
_genericAttributeService.SaveAttribute(customer, SystemCustomerAttributeNames.TimeZoneId, model.TimeZoneId);
if (_customerSettings.GenderEnabled)
_genericAttributeService.SaveAttribute(customer, SystemCustomerAttributeNames.Gender, model.Gender);
_genericAttributeService.SaveAttribute(customer, SystemCustomerAttributeNames.FirstName, model.FirstName);
_genericAttributeService.SaveAttribute(customer, SystemCustomerAttributeNames.LastName, model.LastName);
if (_customerSettings.DateOfBirthEnabled)
_genericAttributeService.SaveAttribute(customer, SystemCustomerAttributeNames.DateOfBirth, model.DateOfBirth);
if (_customerSettings.CompanyEnabled)
_genericAttributeService.SaveAttribute(customer, SystemCustomerAttributeNames.Company, model.Company);
if (_customerSettings.StreetAddressEnabled)
_genericAttributeService.SaveAttribute(customer, SystemCustomerAttributeNames.StreetAddress, model.StreetAddress);
if (_customerSettings.StreetAddress2Enabled)
_genericAttributeService.SaveAttribute(customer, SystemCustomerAttributeNames.StreetAddress2, model.StreetAddress2);
if (_customerSettings.ZipPostalCodeEnabled)
_genericAttributeService.SaveAttribute(customer, SystemCustomerAttributeNames.ZipPostalCode, model.ZipPostalCode);
if (_customerSettings.CityEnabled)
_genericAttributeService.SaveAttribute(customer, SystemCustomerAttributeNames.City, model.City);
if (_customerSettings.CountryEnabled)
_genericAttributeService.SaveAttribute(customer, SystemCustomerAttributeNames.CountryId, model.CountryId);
if (_customerSettings.CountryEnabled && _customerSettings.StateProvinceEnabled)
_genericAttributeService.SaveAttribute(customer, SystemCustomerAttributeNames.StateProvinceId, model.StateProvinceId);
if (_customerSettings.PhoneEnabled)
_genericAttributeService.SaveAttribute(customer, SystemCustomerAttributeNames.Phone, model.Phone);
if (_customerSettings.FaxEnabled)
_genericAttributeService.SaveAttribute(customer, SystemCustomerAttributeNames.Fax, model.Fax);
//password
if (!String.IsNullOrWhiteSpace(model.Password))
{
var changePassRequest = new ChangePasswordRequest(model.Email, false, _customerSettings.DefaultPasswordFormat, model.Password);
var changePassResult = _customerRegistrationService.ChangePassword(changePassRequest);
if (!changePassResult.Success)
{
foreach (var changePassError in changePassResult.Errors)
ErrorNotification(changePassError);
}
}
//customer roles
if (allowManagingCustomerRoles)
{
foreach (var customerRole in newCustomerRoles)
customer.CustomerRoles.Add(customerRole);
_customerService.UpdateCustomer(customer);
}
//ensure that a customer with a vendor associated is not in "Administrators" role
//otherwise, he won't be have access to the other functionality in admin area
if (customer.IsAdmin() && customer.VendorId > 0)
{
//.........这里部分代码省略.........
示例11: MarkVatNumberAsValid
public ActionResult MarkVatNumberAsValid(CustomerModel model)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCustomers))
return AccessDeniedView();
var customer = _customerService.GetCustomerById(model.Id);
if (customer == null)
//No customer found with the specified id
return RedirectToAction("List");
customer.VatNumberStatus = VatNumberStatus.Valid;
_customerService.UpdateCustomer(customer);
return RedirectToAction("Edit", customer.Id);
}
示例12: SendPm
public ActionResult SendPm(CustomerModel model)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCustomers))
return AccessDeniedView();
var customer = _customerService.GetCustomerById(model.Id);
if (customer == null)
//No customer found with the specified id
return RedirectToAction("List");
try
{
if (!_forumSettings.AllowPrivateMessages)
throw new NopException("Private messages are disabled");
if (customer.IsGuest())
throw new NopException("Customer should be registered");
if (String.IsNullOrWhiteSpace(model.SendPm.Subject))
throw new NopException("PM subject is empty");
if (String.IsNullOrWhiteSpace(model.SendPm.Message))
throw new NopException("PM message is empty");
var privateMessage = new PrivateMessage
{
StoreId = _storeContext.CurrentStore.Id,
ToCustomerId = customer.Id,
FromCustomerId = _workContext.CurrentCustomer.Id,
Subject = model.SendPm.Subject,
Text = model.SendPm.Message,
IsDeletedByAuthor = false,
IsDeletedByRecipient = false,
IsRead = false,
CreatedOnUtc = DateTime.UtcNow
};
_forumService.InsertPrivateMessage(privateMessage);
SuccessNotification(_localizationService.GetResource("Admin.Customers.Customers.SendPM.Sent"));
}
catch (Exception exc)
{
ErrorNotification(exc.Message);
}
return RedirectToAction("Edit", new { id = customer.Id });
}
示例13: RemoveAffiliate
public ActionResult RemoveAffiliate(CustomerModel model)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCustomers))
return AccessDeniedView();
var customer = _customerService.GetCustomerById(model.Id);
if (customer == null)
//No customer found with the specified id
return RedirectToAction("List");
customer.AffiliateId = 0;
_customerService.UpdateCustomer(customer);
return RedirectToAction("Edit", new { id = customer.Id });
}
示例14: PrepareVendorsModel
protected virtual void PrepareVendorsModel(CustomerModel model)
{
if (model == null)
throw new ArgumentNullException("model");
model.AvailableVendors.Add(new SelectListItem
{
Text = _localizationService.GetResource("Admin.Customers.Customers.Fields.Vendor.None"),
Value = "0"
});
var vendors = _vendorService.GetAllVendors(showHidden: true);
foreach (var vendor in vendors)
{
model.AvailableVendors.Add(new SelectListItem
{
Text = vendor.Name,
Value = vendor.Id.ToString()
});
}
}
示例15: SendWelcomeMessage
public ActionResult SendWelcomeMessage(CustomerModel model)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageCustomers))
return AccessDeniedView();
var customer = _customerService.GetCustomerById(model.Id);
if (customer == null)
//No customer found with the specified id
return RedirectToAction("List");
_workflowMessageService.SendCustomerWelcomeMessage(customer, _workContext.WorkingLanguage.Id);
SuccessNotification(_localizationService.GetResource("Admin.Customers.Customers.SendWelcomeMessage.Success"));
return RedirectToAction("Edit", new { id = customer.Id });
}