154 lines
5.2 KiB
C#
154 lines
5.2 KiB
C#
using Nop.Core.Configuration;
|
|
|
|
namespace Nop.Core.Domain.Tax;
|
|
|
|
/// <summary>
|
|
/// Tax settings
|
|
/// </summary>
|
|
public partial class TaxSettings : ISettings
|
|
{
|
|
/// <summary>
|
|
/// Tax based on
|
|
/// </summary>
|
|
public TaxBasedOn TaxBasedOn { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether to use pickup point address (when pickup point is chosen) for tax calculation
|
|
/// </summary>
|
|
public bool TaxBasedOnPickupPointAddress { get; set; }
|
|
|
|
/// <summary>
|
|
/// Tax display type
|
|
/// </summary>
|
|
public TaxDisplayType TaxDisplayType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets an system name of active tax provider
|
|
/// </summary>
|
|
public string ActiveTaxProviderSystemName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets default address used for tax calculation
|
|
/// </summary>
|
|
public int DefaultTaxAddressId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether to display tax suffix
|
|
/// </summary>
|
|
public bool DisplayTaxSuffix { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether each tax rate should be displayed on separate line (shopping cart page)
|
|
/// </summary>
|
|
public bool DisplayTaxRates { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether prices include tax
|
|
/// </summary>
|
|
public bool PricesIncludeTax { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether the country of address used for tax calculation is automatically detected
|
|
/// </summary>
|
|
public bool AutomaticallyDetectCountry { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether customers are allowed to select tax display type
|
|
/// </summary>
|
|
public bool AllowCustomersToSelectTaxDisplayType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether to hide zero tax
|
|
/// </summary>
|
|
public bool HideZeroTax { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether to hide tax in order summary when prices are shown tax inclusive
|
|
/// </summary>
|
|
public bool HideTaxInOrderSummary { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether we should always exclude tax from order subtotal (no matter of selected tax display type)
|
|
/// </summary>
|
|
public bool ForceTaxExclusionFromOrderSubtotal { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a default tax category identifier for products
|
|
/// </summary>
|
|
public int DefaultTaxCategoryId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether shipping price is taxable
|
|
/// </summary>
|
|
public bool ShippingIsTaxable { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether shipping price includes tax
|
|
/// </summary>
|
|
public bool ShippingPriceIncludesTax { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating the shipping tax class identifier
|
|
/// </summary>
|
|
public int ShippingTaxClassId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether payment method additional fee is taxable
|
|
/// </summary>
|
|
public bool PaymentMethodAdditionalFeeIsTaxable { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether payment method additional fee includes tax
|
|
/// </summary>
|
|
public bool PaymentMethodAdditionalFeeIncludesTax { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating the payment method additional fee tax class identifier
|
|
/// </summary>
|
|
public int PaymentMethodAdditionalFeeTaxClassId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether EU VAT (Europe Union Value Added Tax) is enabled
|
|
/// </summary>
|
|
public bool EuVatEnabled { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether EU VAT (Europe Union Value Added Tax) is required
|
|
/// </summary>
|
|
public bool EuVatRequired { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether EU VAT (Europe Union Value Added Tax) for guest customers is enabled
|
|
/// </summary>
|
|
public bool EuVatEnabledForGuests { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a shop country identifier
|
|
/// </summary>
|
|
public int EuVatShopCountryId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether this store will exempt eligible VAT-registered customers from VAT
|
|
/// </summary>
|
|
public bool EuVatAllowVatExemption { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether we should use the EU web service to validate VAT numbers
|
|
/// </summary>
|
|
public bool EuVatUseWebService { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether VAT numbers should be automatically assumed valid
|
|
/// </summary>
|
|
public bool EuVatAssumeValid { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether we should notify a store owner when a new VAT number is submitted
|
|
/// </summary>
|
|
public bool EuVatEmailAdminWhenNewVatSubmitted { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether to log tax providers errors
|
|
/// </summary>
|
|
public bool LogErrors { get; set; }
|
|
} |