Try your search with a different keyword or use * as a wildcard.
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Mvc.Rendering;
using Nop.Plugin.Tax.Avalara.Models.ItemClassification;
using Nop.Plugin.Tax.Avalara.Models.Log;
using Nop.Web.Areas.Admin.Models.Common;
using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc;
using Nop.Web.Framework.Mvc.ModelBinding;
namespace Nop.Plugin.Tax.Avalara.Models.Configuration;
///
/// Represents a configuration model
///
public record ConfigurationModel : BaseNopModel, IAclSupportedModel
{
#region Ctor
public ConfigurationModel()
{
TestAddress = new AddressModel();
Companies = new List();
TaxOriginAddressTypes = new List();
TaxTransactionLogSearchModel = new TaxTransactionLogSearchModel();
ItemClassificationSearchModel = new ItemClassificationSearchModel();
SelectedCustomerRoleIds = new List();
AvailableCustomerRoles = new List();
SelectedCountryIds = new List();
AvailableCountries = new List();
}
#endregion
#region Properties
#region Common
public bool IsConfigured { get; set; }
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.AccountId")]
public string AccountId { get; set; }
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.LicenseKey")]
[NoTrim]
[DataType(DataType.Password)]
public string LicenseKey { get; set; }
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.Company")]
public string CompanyCode { get; set; }
public IList Companies { get; set; }
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.UseSandbox")]
public bool UseSandbox { get; set; }
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.EnableLogging")]
public bool EnableLogging { get; set; }
public AddressModel TestAddress { get; set; }
public string TestTaxResult { get; set; }
public TaxTransactionLogSearchModel TaxTransactionLogSearchModel { get; set; }
public bool HideGeneralBlock { get; set; }
public bool HideLogBlock { get; set; }
#endregion
#region Tax calculation
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.CommitTransactions")]
public bool CommitTransactions { get; set; }
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.ValidateAddress")]
public bool ValidateAddress { get; set; }
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.TaxOriginAddressType")]
public int TaxOriginAddressTypeId { get; set; }
public IList TaxOriginAddressTypes { get; set; }
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.UseTaxRateTables")]
public bool UseTaxRateTables { get; set; }
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.GetTaxRateByAddressOnly")]
public bool GetTaxRateByAddressOnly { get; set; }
#endregion
#region Certificates
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.EnableCertificates")]
public bool EnableCertificates { get; set; }
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.AutoValidateCertificate")]
public bool AutoValidateCertificate { get; set; }
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.AllowEditCustomer")]
public bool AllowEditCustomer { get; set; }
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.DisplayNoValidCertificatesMessage")]
public bool DisplayNoValidCertificatesMessage { get; set; }
//ACL (customer roles)
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.CustomerRoles")]
public IList SelectedCustomerRoleIds { get; set; }
public IList AvailableCustomerRoles { get; set; }
#endregion
#region Item Classification
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.UseItemClassification")]
public bool UseItemClassification { get; set; }
[NopResourceDisplayName("Plugins.Tax.Avalara.Fields.Countries")]
public IList SelectedCountryIds { get; set; }
public IList AvailableCountries { get; set; }
public ItemClassificationSearchModel ItemClassificationSearchModel { get; set; }
public bool HideItemClassificationBlock { get; set; }
#endregion
#endregion
}